From 20a59cb6758fbaa87b27ee79d1d210f99c606c01 Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 15:31:34 -0400 Subject: [PATCH 1/7] Fix ProfileComparison class --- lib/cspace_config_untangler/fields/field.rb | 4 + .../profile_comparison.rb | 75 ++++++++++--------- 2 files changed, 42 insertions(+), 37 deletions(-) diff --git a/lib/cspace_config_untangler/fields/field.rb b/lib/cspace_config_untangler/fields/field.rb index ce5d7e68..9d4139ed 100644 --- a/lib/cspace_config_untangler/fields/field.rb +++ b/lib/cspace_config_untangler/fields/field.rb @@ -81,6 +81,10 @@ def to_user_csv format_csv(friendly_csv_row) end + def to_h + expert_csv_row + end + private def formatted_ui_path(orig) diff --git a/lib/cspace_config_untangler/profile_comparison.rb b/lib/cspace_config_untangler/profile_comparison.rb index 1982cc72..1764dd4b 100644 --- a/lib/cspace_config_untangler/profile_comparison.rb +++ b/lib/cspace_config_untangler/profile_comparison.rb @@ -2,21 +2,29 @@ module CspaceConfigUntangler class ProfileComparison attr_reader :output def initialize(profilearray, outputdir) - profiles = profilearray.map{ |p| CCU::Profile.new(profile: p) } - @profiles = profiles.map{ |p| p.name } - @output = "#{outputdir}/compare_#{@profiles[0]}_to_#{@profiles[1]}.csv" - @fields = profiles.map{ |p| p.fields.map{ |f| f.clean} }.map{ |p| by_path(p) } + @profilenames = profilearray + @profiles = profilearray.map do |p| + CCU::Profile.new(profile: p, structured_date_treatment: :collapse) + end + @output = "#{outputdir}/compare_#{profilenames[0]}_to_#{profilenames[1]}.csv" + @fields = profiles.map { |profile| by_path(profile.fields) } @combined = combined_fields - @diff = diff_combined + @diff = { + "not in #{profilenames[0]}" => [], + "not in #{profilenames[1]}" => [], + "source differences" => [], + "ui path differences" => [], + "same" => [] + } + populate_diff end def write_csv fields = diffed_fields - headers = fields.first.csv_header - headers << 'diff info' + headers = fields.first.keys - CSV.open(@output, 'w', write_headers: true, headers: headers){ |csv| - fields.each{ |f| csv << f.to_csv } + CSV.open(@output, "w", write_headers: true, headers: headers) { |csv| + fields.each { |f| csv << f.values_at(*headers) } } end @@ -26,6 +34,8 @@ def summary private + attr_reader :profilenames, :profiles, :fields, :diff + def diffed_fields diff_fields = [] @@ -33,20 +43,18 @@ def diffed_fields if type['not in'] # val is an array of field objects val.each do |f| - f.to_csv << type - diff_fields << f + diff_fields << f.to_h.merge({"diff_info" => type}) end elsif type == 'same' # val is array of hashes of two field objects { 0 => fieldobj, 1 => fieldobj } val.each do |h| - h.each_value{ |f| diff_fields << f } + h.each_value { |f| diff_fields << f.to_h } end else # val is array of hashes of two field objects { 0 => fieldobj, 1 => fieldobj } val.each do |h| h.each_value do |f| - f.to_csv << type - diff_fields << f + diff_fields << f.to_h.merge({"diff_info" => type}) end end end @@ -55,25 +63,20 @@ def diffed_fields return diff_fields end - - def diff_combined - diff = { - "not in #{@profiles[0]}" => [], - "not in #{@profiles[1]}" => [], - 'source differences' => [], - 'ui path differences' => [], - 'same' => [] - } - - @combined.each{ |id, hash| - if hash[0].nil? - diff["not in #{@profiles[0]}"] << hash[1] - elsif hash[1].nil? - diff["not in #{@profiles[1]}"] << hash[0] + def populate_diff + @combined.each { |id, hash| + if hash[0].nil? && hash[1] + cat = "not in #{profilenames[0]}" + diff[cat] << hash[1] + elsif hash[0] && hash[1].nil? + cat = "not in #{profilenames[1]}" + diff[cat] << hash[0] elsif hash[0].value_source&.sort != hash[1].value_source&.sort - diff['source differences'] << hash + cat = "source differences" + diff[cat] << hash elsif hash[0].ui_path != hash[1].ui_path - diff['ui path differences'] << hash + cat = "ui path differences" + diff[cat] << hash else diff['same'] << hash end @@ -96,12 +99,10 @@ def combined_fields # receives field_defs hash # returns has by rectype + schema path + name def by_path(field_arr) - h = {} - field_arr.each{ |f| - path = [f.rectype, f.schema_path, f.name].flatten - h[path] = f - } - return h + field_arr.map { |f| + path = [f.rectype.name, f.schema_path, f.name].flatten + [path, f] + }.to_h end end #class ProfileComparison From 7c908d824b03b268ff0d210fc8b007eddc48b3fa Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 15:34:17 -0400 Subject: [PATCH 2/7] noblame: Rubocop safe autocorrect --- cspace_config_untangler.gemspec | 26 ++-- lib/cspace_config_untangler/fields/field.rb | 81 +++++----- .../profile_comparison.rb | 35 +++-- .../cli/profiles_cli_spec.rb | 139 +++++++++--------- spec/spec_helper.rb | 8 +- 5 files changed, 148 insertions(+), 141 deletions(-) diff --git a/cspace_config_untangler.gemspec b/cspace_config_untangler.gemspec index 94db9c1c..97bb8e41 100644 --- a/cspace_config_untangler.gemspec +++ b/cspace_config_untangler.gemspec @@ -3,14 +3,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "cspace_config_untangler/version" Gem::Specification.new do |spec| - spec.name = "cspace_config_untangler" - spec.version = CspaceConfigUntangler::VERSION - spec.authors = ["Kristina Spurgin"] - spec.email = ["kristina.spurgin@lyrasis.org"] + spec.name = "cspace_config_untangler" + spec.version = CspaceConfigUntangler::VERSION + spec.authors = ["Kristina Spurgin"] + spec.email = ["kristina.spurgin@lyrasis.org"] - spec.summary = "Generate data dictionary info from CSpace configs" - spec.homepage = "https://github.com/lyrasis/cspace_config_untangler" - spec.license = "MIT" + spec.summary = "Generate data dictionary info from CSpace configs" + spec.homepage = "https://github.com/lyrasis/cspace_config_untangler" + spec.license = "MIT" spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" @@ -20,12 +20,14 @@ Gem::Specification.new do |spec| # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. - spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do - `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do + `git ls-files -z`.split("\x0").reject { |f| + f.match(%r{^(test|spec|features)/}) + } end - spec.bindir = 'exe' - spec.executables = spec.files.grep(%r{^exe/}){ |f| File.basename(f) } - spec.require_paths = ['lib'] + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.3.9" spec.add_development_dependency "pry", "~> 0.13.0" diff --git a/lib/cspace_config_untangler/fields/field.rb b/lib/cspace_config_untangler/fields/field.rb index 9d4139ed..1456628d 100644 --- a/lib/cspace_config_untangler/fields/field.rb +++ b/lib/cspace_config_untangler/fields/field.rb @@ -23,7 +23,7 @@ def initialize(rectype_obj, form_field) @fid = "#{@profile.name} #{rectype.name} #{@ns_for_id} #{@name}" end - def csv_header(mode=:expert) + def csv_header(mode = :expert) case mode when :expert then expert_csv_row.keys.map(&:to_s) when :friendly then friendly_csv_row.keys.map(&:to_s) @@ -32,11 +32,7 @@ def csv_header(mode=:expert) end def structured_date? - if @data_type == 'structured date group' - return true - else - return false - end + @data_type == "structured date group" end def freetext? @@ -52,24 +48,24 @@ def controlled? def authority_controlled? controlled? && - value_source.any?{ |src| src.source_type == "authority" } + value_source.any? { |src| src.source_type == "authority" } end def vocabulary_controlled? controlled? && - value_source.any?{ |src| src.source_type == "vocabulary" } + value_source.any? { |src| src.source_type == "vocabulary" } end def optionlist_controlled? controlled? && - value_source.any?{ |src| src.source_type == "optionlist" } + value_source.any? { |src| src.source_type == "optionlist" } end # @param name [String] def controlled_by?(name) return false unless controlled? - value_source.map{ |src| src.name } + value_source.map { |src| src.name } .include?(name) end @@ -92,7 +88,7 @@ def formatted_ui_path(orig) return [] if orig.empty? orig.compact - .map{ |segment| lookup_display_name(segment) } + .map { |segment| lookup_display_name(segment) } .compact end @@ -107,14 +103,14 @@ def expert_csv_row ui_info_group: get_ui_info_group, ui_path: get_ui_path, ui_field_label: label, - xml_path: @schema_path.join(' > '), + xml_path: @schema_path.join(" > "), xml_field_name: @name, data_type: @data_type, required: @required, repeats: @repeats, group_repeats: @in_repeating_group, - data_source: @value_source.map(&:fields_csv_label).compact.join('; '), - option_list_values: @value_list.join(', ') + data_source: @value_source.map(&:fields_csv_label).compact.join("; "), + option_list_values: @value_list.join(", ") } end @@ -129,8 +125,8 @@ def friendly_csv_row required: @required, repeats: @repeats, group_repeats: @in_repeating_group, - data_source: @value_source.map(&:fields_csv_label).compact.join('; '), - option_list_values: @value_list.join(', '), + data_source: @value_source.map(&:fields_csv_label).compact.join("; "), + option_list_values: @value_list.join(", "), record_type_machine_name: @rectype.name, field_machine_name: @name } @@ -138,7 +134,7 @@ def friendly_csv_row def format_csv(source) source.values - .map{ |val| val.nil? ? "" : val } + .map { |val| val.nil? ? "" : val } end def get_ui_info_group @@ -161,28 +157,28 @@ def merge_field_defs def find_field_def fd = @profile.field_defs.dig(@id) if fd.nil? - return find_field_def_alt + find_field_def_alt elsif fd.length == 1 - return fd.first + fd.first else - return fd.select{ |f| f.ns == @ns }.first + fd.select { |f| f.ns == @ns }.first end end def find_field_def_alt - if @ns == 'ns2:conservation_livingplant' - try_id = @id.sub('ext.', 'conservation_') + try_id = if @ns == "ns2:conservation_livingplant" + @id.sub("ext.", "conservation_") else - try_id = "#{@ns.sub('ns2:', '')}.#{@name}" + "#{@ns.sub("ns2:", "")}.#{@name}" end fd = @profile.field_defs.dig(try_id) if fd.nil? - return nil + nil elsif fd.length == 1 - return fd.first + fd.first else - return fd.select{ |f| f.ns == @ns }.first + fd.select { |f| f.ns == @ns }.first end end @@ -202,20 +198,20 @@ def lookup_display_name(val) msgs = @profile.messages - if val.start_with?('panel.') - if msgs.dig(val, 'name') - msgs[val]['name'] + if val.start_with?("panel.") + if msgs.dig(val, "name") + msgs[val]["name"] else alt_panel_lookup(val) end - elsif val.start_with?('inputTable.') - msgs.dig(val, 'name') ? msgs[val]['name'] : val + elsif val.start_with?("inputTable.") + msgs.dig(val, "name") ? msgs[val]["name"] : val else fieldid = "field.#{val}" - if msgs.dig(fieldid, 'fullName') - msgs[fieldid]['fullName'] - elsif msgs.dig(fieldid, 'name') - msgs[fieldid]['name'] + if msgs.dig(fieldid, "fullName") + msgs[fieldid]["fullName"] + elsif msgs.dig(fieldid, "name") + msgs[fieldid]["name"] elsif val == "uoc_common.useDateHoursSpent" CCU.warn_on_upgrade(binding.source_location, "DRYD-1269") alt_fieldname_lookup(val.sub("useDateHoursSpent", "hoursSpent")) @@ -258,18 +254,19 @@ def alt_fieldname_lookup(val) def alt_panel_lookup(val) trunc_lookup = {} - @profile.messages.select{ |id, h| id.start_with?('panel.') }.each{ |id, h| - name = id.split('.').last + @profile.messages.select { |id, h| + id.start_with?("panel.") + }.each { |id, h| + name = id.split(".").last trunc_lookup[name] = h } - trunc_val = val.split('.').last + trunc_val = val.split(".").last - if trunc_lookup.dig(trunc_val, 'name') - new = trunc_lookup[trunc_val]['name'] + if trunc_lookup.dig(trunc_val, "name") + trunc_lookup[trunc_val]["name"] else - new = val + val end - return new end def fix_museum_records diff --git a/lib/cspace_config_untangler/profile_comparison.rb b/lib/cspace_config_untangler/profile_comparison.rb index 1764dd4b..6e7aa273 100644 --- a/lib/cspace_config_untangler/profile_comparison.rb +++ b/lib/cspace_config_untangler/profile_comparison.rb @@ -29,7 +29,7 @@ def write_csv end def summary - @diff.map{ |k, arr| "#{k}: #{arr.size}" }.join("\n") + @diff.map { |k, arr| "#{k}: #{arr.size}" }.join("\n") end private @@ -40,18 +40,20 @@ def diffed_fields diff_fields = [] @diff.each do |type, val| - if type['not in'] + if type["not in"] # val is an array of field objects val.each do |f| diff_fields << f.to_h.merge({"diff_info" => type}) end - elsif type == 'same' - # val is array of hashes of two field objects { 0 => fieldobj, 1 => fieldobj } + elsif type == "same" + # val is array of hashes of two field objects + # { 0 => fieldobj, 1 => fieldobj } val.each do |h| h.each_value { |f| diff_fields << f.to_h } end else - # val is array of hashes of two field objects { 0 => fieldobj, 1 => fieldobj } + # val is array of hashes of two field objects + # { 0 => fieldobj, 1 => fieldobj } val.each do |h| h.each_value do |f| diff_fields << f.to_h.merge({"diff_info" => type}) @@ -60,7 +62,7 @@ def diffed_fields end end - return diff_fields + diff_fields end def populate_diff @@ -78,22 +80,26 @@ def populate_diff cat = "ui path differences" diff[cat] << hash else - diff['same'] << hash + diff["same"] << hash end } - return diff + diff end def combined_fields h = {} - @fields.each{ |fhash| fhash.keys.each{ |k| h[k] = { 0 => nil, 1 => nil } } } - @fields.each_with_index{ |fhash, i| - fhash.each{ |path, f| + @fields.each { |fhash| + fhash.keys.each { |k| + h[k] = {0 => nil, 1 => nil} + } + } + @fields.each_with_index { |fhash, i| + fhash.each { |path, f| h[path][i] = f } } - return h + h end # receives field_defs hash @@ -104,6 +110,5 @@ def by_path(field_arr) [path, f] }.to_h end - - end #class ProfileComparison -end #module + end +end diff --git a/spec/cspace_config_untangler/cli/profiles_cli_spec.rb b/spec/cspace_config_untangler/cli/profiles_cli_spec.rb index 60396669..c8c000db 100644 --- a/spec/cspace_config_untangler/cli/profiles_cli_spec.rb +++ b/spec/cspace_config_untangler/cli/profiles_cli_spec.rb @@ -1,8 +1,8 @@ -require 'spec_helper' +require "spec_helper" RSpec.describe CCU::Cli::ProfilesCli do - before(:context){ set_profile_release('7_0') } - describe '#all' do + before(:context) { set_profile_release("7_0") } + describe "#all" do it "prints all known profiles to screen" do allow(subject.shell).to receive(:say) msg = "anthro_5-0-0\nbonsai_5-0-0\nbotgarden_3-0-0\ncore_7-0-0\nfcart_4-0-0\nherbarium_2-0-0\nlhmc_4-0-0\nmaterials_3-0-0\npublicart_3-0-0" @@ -11,20 +11,25 @@ end end - describe '#check' do + describe "#check" do it "prints given profiles to screen" do allow(subject.shell).to receive(:say) msg = "core_7-0-0\nbonsai_5-0-0" - result = subject.invoke(:check, [], {"profiles"=>"core_7-0-0,bonsai_5-0-0"}) + result = subject.invoke(:check, [], + {"profiles" => "core_7-0-0,bonsai_5-0-0"}) expect(subject.shell).to have_received(:say).with(msg).once end end - describe '#compare' do - let(:outfile){ "#{fixtures}/compare_core_7-0-0_to_bonsai_5-0-0.csv" } - context 'with expected parameters' do - after(:context){ File.delete("#{fixtures}/compare_core_7-0-0_to_bonsai_5-0-0.csv") } - let(:opts){ {'profiles'=>'core_7-0-0,bonsai_5-0-0', 'output'=>fixtures} } + describe "#compare" do + let(:outfile) { "#{fixtures}/compare_core_7-0-0_to_bonsai_5-0-0.csv" } + context "with expected parameters" do + after(:context) { + File.delete("#{fixtures}/compare_core_7-0-0_to_bonsai_5-0-0.csv") + } + let(:opts) { + {"profiles" => "core_7-0-0,bonsai_5-0-0", "output" => fixtures} + } let(:msg) do <<~MSG not in core_7-0-0: 89 @@ -33,7 +38,7 @@ ui path differences: 0 same: 1300 - Wrote detailed report to: #{outfile} + Wrote detailed report to: #{outfile} MSG end it "writes csv file to given output directory" do @@ -44,10 +49,10 @@ end end - context 'with more than two profiles specified' do - let(:opts){ {'profiles'=>'all', 'output'=>fixtures} } - let(:msg){ 'Can only compare two profiles at a time' } - it 'returns warning message' do + context "with more than two profiles specified" do + let(:opts) { {"profiles" => "all", "output" => fixtures} } + let(:msg) { "Can only compare two profiles at a time" } + it "returns warning message" do allow(subject.shell).to receive(:say) result = subject.invoke(:compare, [], opts) expect(subject.shell).to have_received(:say).with(msg.chomp).once @@ -55,10 +60,10 @@ end end - context 'with only one profile specified' do - let(:opts){ {'output'=>fixtures} } - let(:msg){ 'Needs two profiles to compare' } - it 'returns warning message' do + context "with only one profile specified" do + let(:opts) { {"output" => fixtures} } + let(:msg) { "Needs two profiles to compare" } + it "returns warning message" do allow(subject.shell).to receive(:say) result = subject.invoke(:compare, [], opts) expect(subject.shell).to have_received(:say).with(msg.chomp).once @@ -67,34 +72,32 @@ end end - describe '#by_extension' do - let(:opts){ {'profiles'=>'core_7-0-0,anthro_5-0-0'} } + describe "#by_extension" do + let(:opts) { {"profiles" => "core_7-0-0,anthro_5-0-0"} } let(:msg) do - <<~MSG address - anthro_5-0-0 - core_7-0-0 + anthro_5 + core_7 blob - anthro_5-0-0 - core_7-0-0 + anthro_5 + core_7 contact - anthro_5-0-0 - core_7-0-0 + anthro_5 + core_7 culturalcare - anthro_5-0-0 + anthro_5 dimension - anthro_5-0-0 - core_7-0-0 + anthro_5 + core_7 locality - anthro_5-0-0 + anthro_5 nagpra - anthro_5-0-0 + anthro_5 naturalhistory - anthro_5-0-0 + anthro_5 structuredDate - anthro_5-0-0 - core_7-0-0 - MSG + anthro_5 + core_7 it "prints profiles by extension report to screen" do allow(subject.shell).to receive(:say) result = subject.invoke(:by_extension, [], opts) @@ -103,52 +106,52 @@ end end - describe '#main' do + describe "#main" do it "prints name of main profile to screen" do allow(subject.shell).to receive(:say) result = subject.invoke(:main, [], {}) - expect(subject.shell).to have_received(:say).with('core_7-0-0').once + expect(subject.shell).to have_received(:say).with("core_7-0-0").once end end - describe '#readable' do + describe "#readable" do before(:context) do - @testprofile = 'test_1-1-1' - origstr = %q[ + @testprofile = "test_1-1-1" + origstr = ' {"allowDeleteHierarchyLeaves":false,"autocompleteFindDelay":500,"autocompleteMinLength":3,"basename":"/cspace/profile","className":"cspace-ui-plugin-profile-profile--common","container":"#cspace","defaultAdvancedSearchBooleanOp":"and","defaultDropdownFilter":"substring","defaultUserPrefs":{"panels":{"collectionobject":{"mediaSnapshotPanel":{"collapsed":false}}}},"index":"/search","locale":"en-US"} - ] + ' @profilepath = "#{CCU.configdir}/#{@testprofile}.json" - File.open(@profilepath, 'w') { |file| file.write(origstr) } + File.write(@profilepath, origstr) end - after(:context){ File.delete(@profilepath) } + after(:context) { File.delete(@profilepath) } - it 'reformats profiles' do + it "reformats profiles" do allow(subject.shell).to receive(:say) - result = subject.invoke(:readable, [], {'profiles'=>@testprofile}) + result = subject.invoke(:readable, [], {"profiles" => @testprofile}) newstr = File.read(@profilepath) expected = <<~EXP - { - "allowDeleteHierarchyLeaves": false, - "autocompleteFindDelay": 500, - "autocompleteMinLength": 3, - "basename": "/cspace/profile", - "className": "cspace-ui-plugin-profile-profile--common", - "container": "#cspace", - "defaultAdvancedSearchBooleanOp": "and", - "defaultDropdownFilter": "substring", - "defaultUserPrefs": { - "panels": { - "collectionobject": { - "mediaSnapshotPanel": { - "collapsed": false - } - } - } - }, - "index": "/search", - "locale": "en-US" - } + { + "allowDeleteHierarchyLeaves": false, + "autocompleteFindDelay": 500, + "autocompleteMinLength": 3, + "basename": "/cspace/profile", + "className": "cspace-ui-plugin-profile-profile--common", + "container": "#cspace", + "defaultAdvancedSearchBooleanOp": "and", + "defaultDropdownFilter": "substring", + "defaultUserPrefs": { + "panels": { + "collectionobject": { + "mediaSnapshotPanel": { + "collapsed": false + } + } + } + }, + "index": "/search", + "locale": "en-US" + } EXP msg = "Reformatting #{@testprofile} config" expect(subject.shell).to have_received(:say).with(msg).once diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 0717712b..6e2851b5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,11 +1,11 @@ -require 'bundler/setup' -require 'cspace_config_untangler' -require_relative 'helpers' +require "bundler/setup" +require "cspace_config_untangler" +require_relative "helpers" RSpec.configure do |config| config.include Helpers # Enable flags like --only-failures and --next-failure - config.example_status_persistence_file_path = '.rspec_status' + config.example_status_persistence_file_path = ".rspec_status" # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! From ba05f32d228a2b3d1fc30feb658eced6856606f2 Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 15:43:22 -0400 Subject: [PATCH 3/7] Add integration test for ProfileComparison --- Gemfile | 4 + .../compare_anthro_6-0-5_to_core_7-1-0.csv | 3374 + spec/fixtures/configs/anthro_7-0-0.json | 126389 +++++++++++++ spec/fixtures/configs/ohc_1-0-18_7-2.json | 137812 +++++++++++++++ ...compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv | 2281 + spec/integration/profile_comparison_spec.rb | 39 + spec/spec_helper.rb | 2 + 7 files changed, 269901 insertions(+) create mode 100644 spec/fixtures/compare_anthro_6-0-5_to_core_7-1-0.csv create mode 100644 spec/fixtures/configs/anthro_7-0-0.json create mode 100644 spec/fixtures/configs/ohc_1-0-18_7-2.json create mode 100644 spec/fixtures/files/7_2/compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv create mode 100644 spec/integration/profile_comparison_spec.rb diff --git a/Gemfile b/Gemfile index fb2a569d..96142b13 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,8 @@ source "https://rubygems.org" +group :test do + gem "rspec-custom", github: "kspurgin/rspec-custom", branch: "main" +end + # Specify your gem's dependencies in cspace_config_untangler.gemspec gemspec diff --git a/spec/fixtures/compare_anthro_6-0-5_to_core_7-1-0.csv b/spec/fixtures/compare_anthro_6-0-5_to_core_7-1-0.csv new file mode 100644 index 00000000..43c07680 --- /dev/null +++ b/spec/fixtures/compare_anthro_6-0-5_to_core_7-1-0.csv @@ -0,0 +1,3374 @@ +fid,profile,record_type,namespace,namespace_for_id,field_id,ui_info_group,ui_path,ui_field_label,xml_path,xml_field_name,data_type,required,repeats,group_repeats,data_source,option_list_values,diff info +core_7-1-0 acquisition ns2:acquisitions_common acquisitionReferenceNumber,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReferenceNumber,Acquisition Information,"",Reference number,"",acquisitionReferenceNumber,string,y,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionAuthorizer,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizer,Acquisition Information,Authorization,Authorizer,"",acquisitionAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionAuthorizerDate,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizerDate,Acquisition Information,Authorization,Authorization date,"",acquisitionAuthorizerDate,date,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionMethod,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionMethod,Acquisition Information,"",Acquisition method,"",acquisitionMethod,string,n,n,n/a,option list: acquisitionMethods,"exchange, gift, purchase, transfer, treasure" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionSource,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionSource,Acquisition Information,"",Acquisition source,acquisitionSources,acquisitionSource,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 acquisition ns2:acquisitions_common owner,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.owner,Acquisition Information,"",Owner,owners,owner,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 acquisition ns2:acquisitions_common transferOfTitleNumber,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.transferOfTitleNumber,Acquisition Information,"",Transfer of title number,"",transferOfTitleNumber,string,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common groupPurchasePriceCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceCurrency,Acquisition Information,Price Information > Group purchase price,Group purchase price currency,"",groupPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common groupPurchasePriceValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceValue,Acquisition Information,Price Information > Group purchase price,Group purchase price value,"",groupPurchasePriceValue,float,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common objectOfferPriceCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceCurrency,Acquisition Information,Price Information > Object offer price,Object offer price currency,"",objectOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common objectOfferPriceValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceValue,Acquisition Information,Price Information > Object offer price,Object offer price value,"",objectOfferPriceValue,float,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common objectPurchaseOfferPriceCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceCurrency,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price currency,"",objectPurchaseOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common objectPurchaseOfferPriceValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceValue,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price value,"",objectPurchaseOfferPriceValue,float,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common objectPurchasePriceCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceCurrency,Acquisition Information,Price Information > Object purchase price,Object purchase price currency,"",objectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common objectPurchasePriceValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceValue,Acquisition Information,Price Information > Object purchase price,Object purchase price value,"",objectPurchasePriceValue,float,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common originalObjectPurchasePriceCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceCurrency,Acquisition Information,Price Information > Original object purchase price,Original object purchase price currency,"",originalObjectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common originalObjectPurchasePriceValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceValue,Acquisition Information,Price Information > Original object purchase price,Original object purchase price value,"",originalObjectPurchasePriceValue,float,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionReason,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReason,Acquisition Information,"",Acquisition reason,"",acquisitionReason,string,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common approvalGroup,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalGroup,Acquisition Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +core_7-1-0 acquisition ns2:acquisitions_common approvalIndividual,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalIndividual,Acquisition Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"" +core_7-1-0 acquisition ns2:acquisitions_common approvalStatus,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalStatus,Acquisition Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +core_7-1-0 acquisition ns2:acquisitions_common approvalDate,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalDate,Acquisition Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","" +core_7-1-0 acquisition ns2:acquisitions_common approvalNote,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalNote,Acquisition Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionNote,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionNote,Acquisition Information,"",Note,"",acquisitionNote,string,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionProvisos,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionProvisos,Acquisition Information,"",Provisos,"",acquisitionProvisos,string,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionFundingCurrency,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingCurrency,Acquisition Information,Funding,Funding currency,acquisitionFundingList > acquisitionFunding,acquisitionFundingCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionFundingValue,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingValue,Acquisition Information,Funding,Funding value,acquisitionFundingList > acquisitionFunding,acquisitionFundingValue,float,n,n,y,"","" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionFundingSource,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSource,Acquisition Information,Funding,Funding source,acquisitionFundingList > acquisitionFunding,acquisitionFundingSource,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 acquisition ns2:acquisitions_common acquisitionFundingSourceProvisos,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSourceProvisos,Acquisition Information,Funding,Funding source provisos,acquisitionFundingList > acquisitionFunding,acquisitionFundingSourceProvisos,string,n,n,y,"","" +core_7-1-0 acquisition ns2:acquisitions_common creditLine,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.creditLine,Acquisition Information,"",Credit line,"",creditLine,string,n,n,n/a,"","" +core_7-1-0 acquisition ns2:acquisitions_common fieldCollectionEventName,core_7-1-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateNote,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateDisplayDate,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,datePeriod,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateAssociation,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateNote,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateNote,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestYear,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestDay,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",core_7-1-0,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termDisplayName,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termDisplayName,Citation Information,Term,Term display name,citationTermGroupList > citationTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 citation ns2:citations_common termStatus,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termStatus,Citation Information,Term,Term status,citationTermGroupList > citationTermGroup,termStatus,string,n,n,y,option list: citationTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 citation ns2:citations_common termType,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termType,Citation Information,Term,Term type,citationTermGroupList > citationTermGroup,termType,string,n,n,y,vocabulary: citationtermtype,"" +core_7-1-0 citation ns2:citations_common termFlag,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termFlag,Citation Information,Term,Term flag,citationTermGroupList > citationTermGroup,termFlag,string,n,n,y,vocabulary: citationtermflag,"" +core_7-1-0 citation ns2:citations_common termLanguage,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termLanguage,Citation Information,Term,Term language,citationTermGroupList > citationTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 citation ns2:citations_common termPrefForLang,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termPrefForLang,Citation Information,Term,Term preferred for lang,citationTermGroupList > citationTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termFullCitation,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termFullCitation,Citation Information,Term,Term full citation,citationTermGroupList > citationTermGroup,termFullCitation,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termTitle,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termTitle,Citation Information,Term,Term title,citationTermGroupList > citationTermGroup,termTitle,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termSubTitle,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSubTitle,Citation Information,Term,Term subtitle,citationTermGroupList > citationTermGroup,termSubTitle,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termSectionTitle,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSectionTitle,Citation Information,Term,Term section title,citationTermGroupList > citationTermGroup,termSectionTitle,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termVolume,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termVolume,Citation Information,Term,Term volume,citationTermGroupList > citationTermGroup,termVolume,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termIssue,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termIssue,Citation Information,Term,Term issue,citationTermGroupList > citationTermGroup,termIssue,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termSource,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSource,Citation Information,Term > Source,Term source name,citationTermGroupList > citationTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 citation ns2:citations_common termSourceDetail,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceDetail,Citation Information,Term > Source,Term source detail,citationTermGroupList > citationTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termSourceID,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceID,Citation Information,Term > Source,Term source ID,citationTermGroupList > citationTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common termSourceNote,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceNote,Citation Information,Term > Source,Term source note,citationTermGroupList > citationTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common publisher,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.publisher,Citation Information,Publication,Publisher,citationPublicationInfoGroupList > citationPublicationInfoGroup,publisher,string,n,n,y,authority: organization/local,"" +core_7-1-0 citation ns2:citations_common publicationPlace,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationPlace,Citation Information,Publication,Publication place,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationPlace,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 citation ns2:citations_common edition,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.edition,Citation Information,Publication,Publication edition,citationPublicationInfoGroupList > citationPublicationInfoGroup,edition,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common pages,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.pages,Citation Information,Publication,Publication page(s),citationPublicationInfoGroupList > citationPublicationInfoGroup,pages,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common agent,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.agent,Citation Information,Agent,Agent name,citationAgentInfoGroupList > citationAgentInfoGroup,agent,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local,"" +core_7-1-0 citation ns2:citations_common role,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.role,Citation Information,Agent,Agent role,citationAgentInfoGroupList > citationAgentInfoGroup,role,string,n,n,y,vocabulary: agentinfotype,"" +core_7-1-0 citation ns2:citations_common note,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.note,Citation Information,Agent,Agent note,citationAgentInfoGroupList > citationAgentInfoGroup,note,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common citationNote,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.citationNote,Citation Information,"",Note,"",citationNote,string,n,n,n/a,"","" +core_7-1-0 citation ns2:citations_common resourceIdent,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.resourceIdent,Citation Information,Resource identifier,Resource identifier,citationResourceIdentGroupList > citationResourceIdentGroup,resourceIdent,string,n,n,y,"","" +core_7-1-0 citation ns2:citations_common type,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.type,Citation Information,Resource identifier,Resource identifier type,citationResourceIdentGroupList > citationResourceIdentGroup,type,string,n,n,y,vocabulary: resourceidtype,"" +core_7-1-0 citation ns2:citations_common relatedTerm,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.relatedTerm,Citation Information,Related term,Related term,citationRelatedTermsGroupList > citationRelatedTermsGroup,relatedTerm,string,n,n,y,authority: concept/associated; authority: concept/activity; authority: concept/material,"" +core_7-1-0 citation ns2:citations_common relationType,core_7-1-0,citation,ns2:citations_common,ns2:citations_common,citations_common.relationType,Citation Information,Related term,Related term type,citationRelatedTermsGroupList > citationRelatedTermsGroup,relationType,string,n,n,y,vocabulary: relationtypetype,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.datePeriod,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateNote,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.datePeriod,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateNote,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNumber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNumber,Object Identification Information,"",Identification number,"",objectNumber,string,y,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common numberOfObjects,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberOfObjects,Object Identification Information,"",Number of objects,"",numberOfObjects,integer,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common numberValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberValue,Object Identification Information,Other number,Other number value,otherNumberList > otherNumber,numberValue,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common numberType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberType,Object Identification Information,Other number,Other number type,otherNumberList > otherNumber,numberType,string,n,n,y,option list: numberTypes,"associated uuid, barcode, lender, obsolete, previous, serial, unknown" +core_7-1-0 collectionobject ns2:collectionobjects_common responsibleDepartment,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.responsibleDepartment,Object Identification Information,"",Responsible department,responsibleDepartments,responsibleDepartment,string,n,y,n,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings" +core_7-1-0 collectionobject ns2:collectionobjects_common collection,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.collection,Object Identification Information,"",Collection,"",collection,string,n,n,n/a,option list: collections,"library-collection, permanent-collection, study-collection, teaching-collection" +core_7-1-0 collectionobject ns2:collectionobjects_common namedCollection,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.namedCollection,Object Identification Information,"",Named collection,namedCollections,namedCollection,string,n,y,n,authority: work/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common recordStatus,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.recordStatus,Object Identification Information,"",Record status,"",recordStatus,string,n,n,n/a,option list: recordStatuses,"approved, in-process, new, temporary" +core_7-1-0 collectionobject ns2:collectionobjects_common publishTo,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.publishTo,Object Identification Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +core_7-1-0 collectionobject ns2:collectionobjects_common inventoryStatus,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inventoryStatus,Object Identification Information,"",Inventory status,inventoryStatusList,inventoryStatus,string,n,y,n,vocabulary: inventorystatus,"" +core_7-1-0 collectionobject ns2:collectionobjects_common briefDescription,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.briefDescription,Object Identification Information,"",Brief description,briefDescriptions,briefDescription,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common distinguishingFeatures,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distinguishingFeatures,Object Identification Information,"",Distinguishing features,"",distinguishingFeatures,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common comment,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.comment,Object Identification Information,"",Comment,comments,comment,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common computedCurrentLocation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.computedCurrentLocation,Object Identification Information,"",Computed current location,"",computedCurrentLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_annotation annotationType,core_7-1-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationType,Object Identification Information,Annotation,Annotation type,annotationGroupList > annotationGroup,annotationType,string,n,n,y,vocabulary: annotationtype,"" +core_7-1-0 collectionobject ns2:collectionobjects_annotation annotationNote,core_7-1-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationNote,Object Identification Information,Annotation,Annotation note,annotationGroupList > annotationGroup,annotationNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_annotation annotationDate,core_7-1-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationDate,Object Identification Information,Annotation,Annotation date,annotationGroupList > annotationGroup,annotationDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_annotation annotationAuthor,core_7-1-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationAuthor,Object Identification Information,Annotation,Annotation author,annotationGroupList > annotationGroup,annotationAuthor,string,n,n,y,authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common title,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.title,Object Identification Information,Title,Title,titleGroupList > titleGroup,title,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common titleLanguage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleLanguage,Object Identification Information,Title,Title language,titleGroupList > titleGroup,titleLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 collectionobject ns2:collectionobjects_common titleType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleType,Object Identification Information,Title,Title type,titleGroupList > titleGroup,titleType,string,n,n,y,option list: titleTypes,"assigned-by-artist, collection, generic, popular, series, trade" +core_7-1-0 collectionobject ns2:collectionobjects_common titleTranslation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslation,Object Identification Information,Title > Title translation,Title translation,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common titleTranslationLanguage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslationLanguage,Object Identification Information,Title > Title translation,Title translation language,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslationLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 collectionobject ns2:collectionobjects_common objectName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectName,Object Identification Information,Object name,Object name,objectNameList > objectNameGroup,objectName,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameCurrency,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameCurrency,Object Identification Information,Object name,Object name currency,objectNameList > objectNameGroup,objectNameCurrency,string,n,n,y,option list: nameCurrencies,"archaic, current" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameLevel,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLevel,Object Identification Information,Object name,Object name level,objectNameList > objectNameGroup,objectNameLevel,string,n,n,y,option list: nameLevels,"group, subgroup" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameSystem,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameSystem,Object Identification Information,Object name,Object name system,objectNameList > objectNameGroup,objectNameSystem,string,n,n,y,option list: nameSystems,"art-and-architecture-thesaurus, nomenclature" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameType,Object Identification Information,Object name,Object name type,objectNameList > objectNameGroup,objectNameType,string,n,n,y,option list: nameTypes,"classified, denomination, simple, taxonomic, typological" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameLanguage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLanguage,Object Identification Information,Object name,Object name language,objectNameList > objectNameGroup,objectNameLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 collectionobject ns2:collectionobjects_common objectNameNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameNote,Object Identification Information,Object name,Object name note,objectNameList > objectNameGroup,objectNameNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common copyNumber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.copyNumber,Object Description Information,"",Copy number,"",copyNumber,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectStatus,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectStatus,Object Description Information,"",Object status,objectStatusList,objectStatus,string,n,y,n,option list: objectStatuses,"copy, forgery, holotype, paralectotype, paratype, type" +core_7-1-0 collectionobject ns2:collectionobjects_common sex,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.sex,Object Description Information,"",Sex,"",sex,string,n,n,n/a,option list: sexes,"female, male" +core_7-1-0 collectionobject ns2:collectionobjects_common phase,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.phase,Object Description Information,"",Phase,"",phase,string,n,n,n/a,option list: phases,"adult, imago, larva, nymph, pupa" +core_7-1-0 collectionobject ns2:collectionobjects_common form,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.form,Object Description Information,"",Form,forms,form,string,n,y,n,option list: forms,"dry, pinned, thin-section, wet" +core_7-1-0 collectionobject ns2:collectionobjects_common editionNumber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.editionNumber,Object Description Information,"",Edition number,"",editionNumber,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ageQualifier,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageQualifier,Object Description Information,Age,Age qualifier,"",ageQualifier,string,n,n,n/a,vocabulary: agequalifier,"" +core_7-1-0 collectionobject ns2:collectionobjects_common age,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.age,Object Description Information,Age,Age value,"",age,integer,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ageUnit,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageUnit,Object Description Information,Age,Age unit,"",ageUnit,string,n,n,n/a,option list: ageUnits,"days, months, weeks, years" +core_7-1-0 collectionobject ns2:collectionobjects_common style,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.style,Object Description Information,"",Style,styles,style,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common color,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.color,Object Description Information,"",Color,colors,color,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common material,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.material,Object Description Information,Material,Material,materialGroupList > materialGroup,material,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common materialComponent,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponent,Object Description Information,Material,Material component,materialGroupList > materialGroup,materialComponent,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common materialComponentNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponentNote,Object Description Information,Material,Material component note,materialGroupList > materialGroup,materialComponentNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common materialName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialName,Object Description Information,Material,Material name,materialGroupList > materialGroup,materialName,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common materialSource,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialSource,Object Description Information,Material,Material source,materialGroupList > materialGroup,materialSource,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common physicalDescription,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.physicalDescription,Object Description Information,"",Physical description,"",physicalDescription,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectComponentName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentName,Object Description Information,Object component,Object component name,objectComponentGroupList > objectComponentGroup,objectComponentName,string,n,n,y,option list: objectComponentNames,"blade, buttonhole, handle, sleeve" +core_7-1-0 collectionobject ns2:collectionobjects_common objectComponentInformation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentInformation,Object Description Information,Object component,Object component information,objectComponentGroupList > objectComponentGroup,objectComponentInformation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common technicalAttribute,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttribute,Object Description Information,Technical attribute,Technical attribute,technicalAttributeGroupList > technicalAttributeGroup,technicalAttribute,string,n,n,y,option list: technicalAttributes,"magnetic-tape-type, record-speed" +core_7-1-0 collectionobject ns2:collectionobjects_common technicalAttributeMeasurement,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurement,Object Description Information,Technical attribute,Technical attribute measurement,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurement,string,n,n,y,option list: technicalAttributeMeasurements,"78, metal" +core_7-1-0 collectionobject ns2:collectionobjects_common technicalAttributeMeasurementUnit,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurementUnit,Object Description Information,Technical attribute,Technical attribute measurement unit,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurementUnit,string,n,n,y,option list: technicalAttributeMeasurementUnits,rpm +core_7-1-0 collectionobject ext.dimension measuredPart,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPart,Object Description Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed" +core_7-1-0 collectionobject ext.dimension dimensionSummary,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimensionSummary,Object Description Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","" +core_7-1-0 collectionobject ext.dimension dimension,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimension,Object Description Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width" +core_7-1-0 collectionobject ext.dimension measuredBy,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredBy,Object Description Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 collectionobject ext.dimension measurementMethod,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementMethod,Object Description Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station" +core_7-1-0 collectionobject ext.dimension value,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.value,Object Description Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","" +core_7-1-0 collectionobject ext.dimension measurementUnit,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementUnit,Object Description Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons" +core_7-1-0 collectionobject ext.dimension valueQualifier,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueQualifier,Object Description Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","" +core_7-1-0 collectionobject ext.dimension valueDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueDate,Object Description Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","" +core_7-1-0 collectionobject ext.dimension measuredPartNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPartNote,Object Description Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentDescription,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDescription,Object Description Information,Content,Content description,"",contentDescription,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentLanguage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentLanguage,Object Description Information,Content,Content language,contentLanguages,contentLanguage,string,n,y,n,vocabulary: languages,"" +core_7-1-0 collectionobject ns2:collectionobjects_common contentActivity,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentActivity,Object Description Information,Content,Content activity,contentActivities,contentActivity,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentConcept,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentConcept,Object Description Information,Content,Content concept,contentConcepts,contentConcept,string,n,y,n,authority: concept/associated; authority: concept/material,"" +core_7-1-0 collectionobject ns2:collectionobjects_common contentPosition,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPosition,Object Description Information,Content,Content position,contentPositions,contentPosition,string,n,y,n,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +core_7-1-0 collectionobject ns2:collectionobjects_common contentObject,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObject,Object Description Information,Content > Content object,Content object name,contentObjectGroupList > contentObjectGroup,contentObject,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentObjectType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObjectType,Object Description Information,Content > Content object,Content object type,contentObjectGroupList > contentObjectGroup,contentObjectType,string,n,n,y,option list: contentObjectTypes,"food, furniture" +core_7-1-0 collectionobject ns2:collectionobjects_common contentPeople,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPeople,Object Description Information,Content,Content people,contentPeoples,contentPeople,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentPerson,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPerson,Object Description Information,Content,Content person,contentPersons,contentPerson,string,n,y,n,authority: person/local; authority: person/ulan,"" +core_7-1-0 collectionobject ns2:collectionobjects_common contentPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPlace,Object Description Information,Content,Content place,contentPlaces,contentPlace,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentScript,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentScript,Object Description Information,Content,Content script,contentScripts,contentScript,string,n,y,n,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals" +core_7-1-0 collectionobject ns2:collectionobjects_common contentOrganization,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOrganization,Object Description Information,Content,Content organization,contentOrganizations,contentOrganization,string,n,y,n,authority: organization/local; authority: organization/ulan,"" +core_7-1-0 collectionobject ns2:collectionobjects_common contentEventName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventName,Object Description Information,Content > Content event,Content event name,contentEventNameGroupList > contentEventNameGroup,contentEventName,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentEventNameType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventNameType,Object Description Information,Content > Content event,Content event type,contentEventNameGroupList > contentEventNameGroup,contentEventNameType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentOther,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOther,Object Description Information,Content > Content other,Content other name,contentOtherGroupList > contentOtherGroup,contentOther,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentOtherType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOtherType,Object Description Information,Content > Content other,Content other type,contentOtherGroupList > contentOtherGroup,contentOtherType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common contentNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentNote,Object Description Information,Content,Content note,"",contentNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContent,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContent,Object Description Information,Textual Inscription > Textual inscription,Textual inscription content,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContent,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentInscriber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInscriber,Object Description Information,Textual Inscription > Textual inscription,Textual inscription inscriber,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInscriber,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentLanguage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentLanguage,Object Description Information,Textual Inscription > Textual inscription,Textual inscription language,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentPosition,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentPosition,Object Description Information,Textual Inscription > Textual inscription,Textual inscription position,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentScript,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentScript,Object Description Information,Textual Inscription > Textual inscription,Textual inscription script,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentScript,string,n,n,y,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentType,Object Description Information,Textual Inscription > Textual inscription,Textual inscription type,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentMethod,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentMethod,Object Description Information,Textual Inscription > Textual inscription,Textual inscription method,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentMethod,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentInterpretation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInterpretation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription interpretation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInterpretation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentTranslation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTranslation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription translation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTranslation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionContentTransliteration,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTransliteration,Object Description Information,Textual Inscription > Textual inscription,Textual inscription transliteration,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTransliteration,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescription,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescription,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription description,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescription,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionInscriber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInscriber,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription inscriber,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInscriber,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionPosition,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionPosition,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription position,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionType,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription type,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionMethod,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionMethod,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription method,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionMethod,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionInterpretation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInterpretation,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription interpretation,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInterpretation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common technique,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technique,Object Production Information,Production technique,Production technique,techniqueGroupList > techniqueGroup,technique,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common techniqueType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.techniqueType,Object Production Information,Production technique,Production technique type,techniqueGroupList > techniqueGroup,techniqueType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlace,Object Production Information,Production place,Production place,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlace,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPlaceRole,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlaceRole,Object Production Information,Production place,Production place role,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlaceRole,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionReason,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionReason,Object Production Information,"",Production reason,objectProductionReasons,objectProductionReason,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPeople,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeople,Object Production Information,Production people,Production people,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeople,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPeopleRole,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeopleRole,Object Production Information,Production people,Production people role,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeopleRole,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPerson,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPerson,Object Production Information,Production person,Production person,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPerson,string,n,n,y,authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionPersonRole,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPersonRole,Object Production Information,Production person,Production person role,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPersonRole,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionOrganization,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganization,Object Production Information,Production organization,Production organization,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganization,string,n,n,y,authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionOrganizationRole,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganizationRole,Object Production Information,Production organization,Production organization role,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganizationRole,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectProductionNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionNote,Object Production Information,"",Production note,"",objectProductionNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocActivity,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivity,Object History and Association Information,Associations > Associated activity,Associated activity,assocActivityGroupList > assocActivityGroup,assocActivity,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocActivityType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityType,Object History and Association Information,Associations > Associated activity,Associated activity type,assocActivityGroupList > assocActivityGroup,assocActivityType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocActivityNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityNote,Object History and Association Information,Associations > Associated activity,Associated activity note,assocActivityGroupList > assocActivityGroup,assocActivityNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocObject,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObject,Object History and Association Information,Associations > Associated object,Associated object,assocObjectGroupList > assocObjectGroup,assocObject,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocObjectType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectType,Object History and Association Information,Associations > Associated object,Associated object type,assocObjectGroupList > assocObjectGroup,assocObjectType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocObjectNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectNote,Object History and Association Information,Associations > Associated object,Associated object note,assocObjectGroupList > assocObjectGroup,assocObjectNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocConcept,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConcept,Object History and Association Information,Associations > Associated concept,Associated concept,assocConceptGroupList > assocConceptGroup,assocConcept,string,n,n,y,authority: concept/associated,"" +core_7-1-0 collectionobject ns2:collectionobjects_common assocConceptType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptType,Object History and Association Information,Associations > Associated concept,Associated concept type,assocConceptGroupList > assocConceptGroup,assocConceptType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocConceptNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptNote,Object History and Association Information,Associations > Associated concept,Associated concept note,assocConceptGroupList > assocConceptGroup,assocConceptNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocCulturalContext,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContext,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContext,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocCulturalContextType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextType,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity type,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocCulturalContextNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextNote,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity note,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocOrganization,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganization,Object History and Association Information,Associations > Associated organization,Associated organization,assocOrganizationGroupList > assocOrganizationGroup,assocOrganization,string,n,n,y,authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common assocOrganizationType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationType,Object History and Association Information,Associations > Associated organization,Associated organization type,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocOrganizationNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationNote,Object History and Association Information,Associations > Associated organization,Associated organization note,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPeople,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeople,Object History and Association Information,Associations > Associated people,Associated people,assocPeopleGroupList > assocPeopleGroup,assocPeople,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPeopleType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleType,Object History and Association Information,Associations > Associated people,Associated people type,assocPeopleGroupList > assocPeopleGroup,assocPeopleType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPeopleNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleNote,Object History and Association Information,Associations > Associated people,Associated people note,assocPeopleGroupList > assocPeopleGroup,assocPeopleNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPerson,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPerson,Object History and Association Information,Associations > Associated person,Associated person,assocPersonGroupList > assocPersonGroup,assocPerson,string,n,n,y,authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPersonType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonType,Object History and Association Information,Associations > Associated person,Associated person type,assocPersonGroupList > assocPersonGroup,assocPersonType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPersonNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonNote,Object History and Association Information,Associations > Associated person,Associated person note,assocPersonGroupList > assocPersonGroup,assocPersonNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlace,Object History and Association Information,Associations > Associated place,Associated place,assocPlaceGroupList > assocPlaceGroup,assocPlace,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPlaceType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceType,Object History and Association Information,Associations > Associated place,Associated place type,assocPlaceGroupList > assocPlaceGroup,assocPlaceType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocPlaceNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceNote,Object History and Association Information,Associations > Associated place,Associated place note,assocPlaceGroupList > assocPlaceGroup,assocPlaceNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventName,Object History and Association Information,Associations > Associated event,Associated event,"",assocEventName,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventNameType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNameType,Object History and Association Information,Associations > Associated event,Associated event type,"",assocEventNameType,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventOrganization,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventOrganization,Object History and Association Information,Associations,Associated event organization,assocEventOrganizations,assocEventOrganization,string,n,y,n,authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventPeople,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPeople,Object History and Association Information,Associations,Associated event people,assocEventPeoples,assocEventPeople,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventPerson,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPerson,Object History and Association Information,Associations,Associated event person,assocEventPersons,assocEventPerson,string,n,y,n,authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPlace,Object History and Association Information,Associations,Associated event place,assocEventPlaces,assocEventPlace,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocEventNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNote,Object History and Association Information,Associations,Associated event note,"",assocEventNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocDateType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateType,Object History and Association Information,Associations > Associated date,Associated date type,assocDateGroupList > assocDateGroup,assocDateType,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assocDateNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateNote,Object History and Association Information,Associations > Associated date,Associated date note,assocDateGroupList > assocDateGroup,assocDateNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common objectHistoryNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectHistoryNote,Object History and Association Information,"",Object history note,"",objectHistoryNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common usage,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usage,Object History and Association Information,Usage,Usage,usageGroupList > usageGroup,usage,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common usageNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usageNote,Object History and Association Information,Usage,Usage note,usageGroupList > usageGroup,usageNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common owner,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.owner,Object History and Association Information,Object Owner's Contribution Information,Owner,owners,owner,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipAccess,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipAccess,Object History and Association Information,"",Ownership access,"",ownershipAccess,string,n,n,n/a,option list: ownershipAccessLevels,"limited, open, restricted" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipCategory,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipCategory,Object History and Association Information,"",Ownership category,"",ownershipCategory,string,n,n,n/a,option list: ownershipCategories,"company, private, public" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipPlace,Object History and Association Information,"",Ownership place,"",ownershipPlace,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipExchangeMethod,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipExchangeMethod,Object History and Association Information,Ownership exchange,Ownership exchange method,"",ownershipExchangeMethod,string,n,n,n/a,option list: ownershipExchangeMethods,"bequest, exchange, gift, purchase, transfer, treasure" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipExchangeNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipExchangeNote,Object History and Association Information,Ownership exchange,Ownership exchange note,"",ownershipExchangeNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipExchangePriceCurrency,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipExchangePriceCurrency,Object History and Association Information,Ownership exchange,Ownership exchange price currency,"",ownershipExchangePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 collectionobject ns2:collectionobjects_common ownershipExchangePriceValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownershipExchangePriceValue,Object History and Association Information,Ownership exchange,Ownership exchange price value,"",ownershipExchangePriceValue,float,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownersPersonalExperience,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalExperience,Object Owner's Contribution Information,"",Owner's personal experience,"",ownersPersonalExperience,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownersPersonalResponse,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalResponse,Object Owner's Contribution Information,"",Owner's personal response,"",ownersPersonalResponse,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownersReference,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersReference,Object Owner's Contribution Information,"",Owner's reference,ownersReferences,ownersReference,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ownersContributionNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersContributionNote,Object Owner's Contribution Information,"",Owner's contribution note,"",ownersContributionNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common viewersRole,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersRole,Object Viewer's Contribution Information,"",Viewer's role,"",viewersRole,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common viewersPersonalExperience,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalExperience,Object Viewer's Contribution Information,"",Viewer's personal experience,"",viewersPersonalExperience,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common viewersPersonalResponse,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalResponse,Object Viewer's Contribution Information,"",Viewer's personal response,"",viewersPersonalResponse,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common viewersReference,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersReference,Object Viewer's Contribution Information,"",Viewer's reference,viewersReferences,viewersReference,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common viewersContributionNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersContributionNote,Object Viewer's Contribution Information,"",Viewer's contribution note,"",viewersContributionNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common reference,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.reference,Reference Information,Reference > Reference Information,Reference,referenceGroupList > referenceGroup,reference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 collectionobject ns2:collectionobjects_common referenceNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.referenceNote,Reference Information,Reference,Reference note,referenceGroupList > referenceGroup,referenceNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionMethod,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionPlace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,authority: place/local; authority: place/tgn,"" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionSource,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollector,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionNumber,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldColEventName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldColEventName,Object Collection Information,"",Field collection event name,fieldColEventNames,fieldColEventName,string,n,y,n,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionFeature,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionFeature,Object Collection Information,"",Field collection feature,"",fieldCollectionFeature,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common fieldCollectionNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightType,Rights Management Information,"",Right type,rightsGroupList > rightsGroup,rightType,string,n,n,y,vocabulary: rightstype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightBeginDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightBeginDate,Rights Management Information,"",Right begin date,rightsGroupList > rightsGroup,rightBeginDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightEndDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightEndDate,Rights Management Information,"",Right end date,rightsGroupList > rightsGroup,rightEndDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightHolder,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolder,Rights Management Information,Right holder,Right holder name,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolder,string,n,n,y,authority: organization/local; authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightHolderContact,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolderContact,Rights Management Information,Right holder,Right holder contact,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolderContact,string,n,n,y,authority: organization/local; authority: person/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightJurisdiction,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightJurisdiction,Rights Management Information,"",Right jurisdiction,rightsGroupList > rightsGroup,rightJurisdiction,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +core_7-1-0 collectionobject ns2:collectionobjects_common standardizedRightStatement,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.standardizedRightStatement,Rights Management Information,"",Standardized right statement,rightsGroupList > rightsGroup,standardizedRightStatement,string,n,n,y,vocabulary: standardizedrightstatement,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightStatement,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightStatement,Rights Management Information,"",Right statement,rightsGroupList > rightsGroup,rightStatement,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightNote,Rights Management Information,"",Right note,rightsGroupList > rightsGroup,rightNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightInType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInType,Rights In Management Information,"",Right in type,rightsInGroupList > rightsInGroup > rightInTypes,rightInType,string,n,y,as part of larger repeating group,vocabulary: rightsin,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightInBeginDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInBeginDate,Rights In Management Information,"",Right in begin date,rightsInGroupList > rightsInGroup,rightInBeginDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightInEndDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInEndDate,Rights In Management Information,"",Right in end date,rightsInGroupList > rightsInGroup,rightInEndDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common agreementSent,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSent,Rights In Management Information,"",Right in agreement sent,rightsInGroupList > rightsInGroup,agreementSent,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common agreementReceived,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementReceived,Rights In Management Information,"",Right in agreement received,rightsInGroupList > rightsInGroup,agreementReceived,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common agreementSigned,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSigned,Rights In Management Information,"",Right in agreement signed,rightsInGroupList > rightsInGroup,agreementSigned,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightInRestriction,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInRestriction,Rights In Management Information,"",Right in restriction,rightsInGroupList > rightsInGroup > rightInRestrictions,rightInRestriction,string,n,y,as part of larger repeating group,vocabulary: rightsinrestriction,"" +core_7-1-0 collectionobject ns2:collectionobjects_common rightReproductionStatement,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightReproductionStatement,Rights In Management Information,"",Right statement for reproduction,rightsInGroupList > rightsInGroup,rightReproductionStatement,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common rightInNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInNote,Rights In Management Information,"",Right in note,rightsInGroupList > rightsInGroup,rightInNote,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common assignedSignificance,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assignedSignificance,Object Identification Information,Object significance,Object significance level,objectSignificanceGroupList > objectSignificanceGroup,assignedSignificance,string,n,n,y,vocabulary: assignedsignificance,"" +core_7-1-0 collectionobject ns2:collectionobjects_common significanceAssignedBy,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.significanceAssignedBy,Object Identification Information,Object significance,Object significance assigned by,objectSignificanceGroupList > objectSignificanceGroup,significanceAssignedBy,string,n,n,y,vocabulary: significanceassignedby,"" +core_7-1-0 collectionobject ns2:collectionobjects_common significanceAssignedDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.significanceAssignedDate,Object Identification Information,Object significance,Object significance assigned date,objectSignificanceGroupList > objectSignificanceGroup,significanceAssignedDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common significanceAssignedContact,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.significanceAssignedContact,Object Identification Information,Object significance,Object significance assigned contact,objectSignificanceGroupList > objectSignificanceGroup,significanceAssignedContact,string,n,n,y,authority: person/local; authority: person/ulan,"" +core_7-1-0 collectionobject ns2:collectionobjects_common objectSuppliedBy,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectSuppliedBy,Object Identification Information,"",Supplied by,"",objectSuppliedBy,string,n,n,n/a,authority: person/local; authority: person/ulan,"" +core_7-1-0 collectionobject ns2:collectionobjects_common variableMediaComponentStatus,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.variableMediaComponentStatus,Object Identification Information,"",Variable media component status,"",variableMediaComponentStatus,string,n,n,n/a,vocabulary: vmcomponentstatus,"" +core_7-1-0 collectionobject ns2:collectionobjects_common credentialType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.credentialType,Object Identification Information,Credential,Credential type,credentialGroupList > credentialGroup,credentialType,string,n,n,y,vocabulary: credentialtype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common credentialRequiredForUse,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.credentialRequiredForUse,Object Identification Information,Credential,Credential required for use,credentialGroupList > credentialGroup,credentialRequiredForUse,string,n,n,y,option list: yesNoValues,"no, yes" +core_7-1-0 collectionobject ns2:collectionobjects_common credentialLocation,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.credentialLocation,Object Identification Information,Credential,Credential location,credentialGroupList > credentialGroup,credentialLocation,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common distributedStorageLedger,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distributedStorageLedger,Object Identification Information,Distributed ledger,Distributed ledger type,distributedLedgerGroupList > distributedLedgerGroup,distributedStorageLedger,string,n,n,y,vocabulary: distributedledgertype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common distributedLedgerParentIdentifier,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distributedLedgerParentIdentifier,Object Identification Information,Distributed ledger,Distributed ledger parent identifier,distributedLedgerGroupList > distributedLedgerGroup,distributedLedgerParentIdentifier,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common distributedLedgerObjectIdentifier,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distributedLedgerObjectIdentifier,Object Identification Information,Distributed ledger,Distributed ledger object identifier,distributedLedgerGroupList > distributedLedgerGroup,distributedLedgerObjectIdentifier,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ledger,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ledger,Object Identification Information,Ledger,Ledger type,ledgerGroupList > ledgerGroup,ledger,string,n,n,y,vocabulary: ledgertype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common ledgerContractAddress,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ledgerContractAddress,Object Identification Information,Ledger,Ledger contract address,ledgerGroupList > ledgerGroup,ledgerContractAddress,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common ledgerTokenID,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ledgerTokenID,Object Identification Information,Ledger,Ledger token ID,ledgerGroupList > ledgerGroup,ledgerTokenID,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common checksumValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.checksumValue,Object Identification Information,Checksum,Checksum value,checksumGroupList > checksumGroup,checksumValue,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common checksumType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.checksumType,Object Identification Information,Checksum,Checksum type,checksumGroupList > checksumGroup,checksumType,string,n,n,y,vocabulary: checksumtypes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common checksumDate,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.checksumDate,Object Identification Information,Checksum,Checksum date,checksumGroupList > checksumGroup,checksumDate,date,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common intendedBehavior,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.intendedBehavior,Object Description Information,"",Intended behavior,"",intendedBehavior,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common formatType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.formatType,Technical Specifications: Audio/Video/Still,Format,Format type,avFormatGroupList > avFormatGroup,formatType,string,n,n,y,vocabulary: formattypenames,"" +core_7-1-0 collectionobject ns2:collectionobjects_common format,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.format,Technical Specifications: Audio/Video/Still,Format,Format name,avFormatGroupList > avFormatGroup,format,string,n,n,y,vocabulary: formats,"" +core_7-1-0 collectionobject ns2:collectionobjects_common numberOfChannels,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberOfChannels,Technical Specifications: Audio/Video/Still,AV channel,AV channel number of associated channels,avChannelGroupList > avChannelGroup,numberOfChannels,integer,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common channelType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.channelType,Technical Specifications: Audio/Video/Still,AV channel,AV channel type,avChannelGroupList > avChannelGroup,channelType,string,n,n,y,vocabulary: formattypenames,"" +core_7-1-0 collectionobject ns2:collectionobjects_common channelLayout,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.channelLayout,Technical Specifications: Audio/Video/Still,"",Channel layout,"",channelLayout,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common fileCodec,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fileCodec,Technical Specifications: Audio/Video/Still,File codec,File codec name,fileCodecGroupList > fileCodecGroup,fileCodec,string,n,n,y,vocabulary: filecodecs,"" +core_7-1-0 collectionobject ns2:collectionobjects_common compressionStandard,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.compressionStandard,Technical Specifications: Audio/Video/Still,File codec,File codec compression standard,fileCodecGroupList > fileCodecGroup,compressionStandard,string,n,n,y,vocabulary: compressionstandards,"" +core_7-1-0 collectionobject ns2:collectionobjects_common fileContainer,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fileContainer,Technical Specifications: Audio/Video/Still,File codec,File codec container,fileCodecGroupList > fileCodecGroup,fileContainer,string,n,n,y,vocabulary: filecontainers,"" +core_7-1-0 collectionobject ns2:collectionobjects_common audioType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.audioType,Technical Specifications: Audio/Video/Still,"",Audio type,"",audioType,string,n,n,n/a,vocabulary: audiotypes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common audioPreferences,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.audioPreferences,Technical Specifications: Audio/Video/Still,"",Audio preference,"",audioPreferences,string,n,n,n/a,vocabulary: audiopreferences,"" +core_7-1-0 collectionobject ns2:collectionobjects_common chromaSubsampling,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.chromaSubsampling,Technical Specifications: Audio/Video/Still,"",Chroma subsampling,"",chromaSubsampling,string,n,n,n/a,vocabulary: chromasubsampling,"" +core_7-1-0 collectionobject ns2:collectionobjects_common aspectRatio,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.aspectRatio,Technical Specifications: Audio/Video/Still,Aspect ratio,Aspect ratio width:height,aspectRatioGroupList > aspectRatioGroup,aspectRatio,string,n,n,y,vocabulary: aspectratios,"" +core_7-1-0 collectionobject ns2:collectionobjects_common aspectRatioType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.aspectRatioType,Technical Specifications: Audio/Video/Still,Aspect ratio,Aspect ratio type,aspectRatioGroupList > aspectRatioGroup,aspectRatioType,string,n,n,y,vocabulary: aspectratiotypes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common colorSpace,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.colorSpace,Technical Specifications: Audio/Video/Still,Color space,Color space name,colorSpaceGroupList > colorSpaceGroup,colorSpace,string,n,n,y,vocabulary: colorspaces,"" +core_7-1-0 collectionobject ns2:collectionobjects_common colorType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.colorType,Technical Specifications: Audio/Video/Still,Color space,Color space type,colorSpaceGroupList > colorSpaceGroup,colorType,string,n,n,y,vocabulary: colortypes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common avTechnicalAttribute,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.avTechnicalAttribute,Technical Specifications: Audio/Video/Still,AV technical attribute,AV technical attribute,avTechnicalAttributeGroupList > avTechnicalAttributeGroup,avTechnicalAttribute,string,n,n,y,vocabulary: avattributes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common avTechnicalAttributeLowValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.avTechnicalAttributeLowValue,Technical Specifications: Audio/Video/Still,AV technical attribute,AV technical attribute low/single value,avTechnicalAttributeGroupList > avTechnicalAttributeGroup,avTechnicalAttributeLowValue,integer,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common avTechnicalAttributeHighValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.avTechnicalAttributeHighValue,Technical Specifications: Audio/Video/Still,AV technical attribute,AV technical attribute high value,avTechnicalAttributeGroupList > avTechnicalAttributeGroup,avTechnicalAttributeHighValue,integer,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common avTechnicalAttributeUnit,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.avTechnicalAttributeUnit,Technical Specifications: Audio/Video/Still,AV technical attribute,AV technical attribute unit,avTechnicalAttributeGroupList > avTechnicalAttributeGroup,avTechnicalAttributeUnit,string,n,n,y,vocabulary: avattributeunits,"" +core_7-1-0 collectionobject ns2:collectionobjects_common avSpecificationNote,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.avSpecificationNote,Technical Specifications: Audio/Video/Still,"",Audio or video specification note,"",avSpecificationNote,string,n,n,n/a,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common programmingLanguageName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.programmingLanguageName,Technical Specifications: Software/Web,Programming language,Programming language name,programmingLanguageGroupList > programmingLanguageGroup,programmingLanguageName,string,n,n,y,vocabulary: programminglanguage,"" +core_7-1-0 collectionobject ns2:collectionobjects_common programmingLanguageVersion,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.programmingLanguageVersion,Technical Specifications: Software/Web,Programming language,Programming language version,programmingLanguageGroupList > programmingLanguageGroup,programmingLanguageVersion,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common software,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.software,Technical Specifications: Software/Web,Utilized software > Technical Specifications: Software/Web,Utilized software name,utilizedSoftwareGroupList > utilizedSoftwareGroup,software,string,n,n,y,vocabulary: utilizedsoftware,"" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareVersion,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareVersion,Technical Specifications: Software/Web,Utilized software,Utilized software version,utilizedSoftwareGroupList > utilizedSoftwareGroup,softwareVersion,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common intendedOperatingSystem,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.intendedOperatingSystem,Technical Specifications: Software/Web,Intended operating system,Intended operating system name,intendedOperatingSystemGroupList > intendedOperatingSystemGroup,intendedOperatingSystem,string,n,n,y,vocabulary: operatingsystems,"" +core_7-1-0 collectionobject ns2:collectionobjects_common intendedOperatingSystemVersion,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.intendedOperatingSystemVersion,Technical Specifications: Software/Web,Intended operating system,Intended operating system version,intendedOperatingSystemGroupList > intendedOperatingSystemGroup,intendedOperatingSystemVersion,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareLibrary,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareLibrary,Technical Specifications: Software/Web,"",Library,softwareLibraries,softwareLibrary,string,n,y,n,vocabulary: softwarelibraries,"" +core_7-1-0 collectionobject ns2:collectionobjects_common codeCompiler,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.codeCompiler,Technical Specifications: Software/Web,"",Compiler,codeCompilers,codeCompiler,string,n,y,n,vocabulary: compilers,"" +core_7-1-0 collectionobject ns2:collectionobjects_common networkConnectionRequired,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.networkConnectionRequired,Technical Specifications: Software/Web,Network connection,Network connection required,networkConnectionGroupList > networkConnectionGroup,networkConnectionRequired,string,n,n,y,option list: yesNoValues,"no, yes" +core_7-1-0 collectionobject ns2:collectionobjects_common networkConnectionType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.networkConnectionType,Technical Specifications: Software/Web,Network connection,Network connection type,networkConnectionGroupList > networkConnectionGroup,networkConnectionType,string,n,n,y,vocabulary: connectiontype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common intendedBrowser,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.intendedBrowser,Technical Specifications: Software/Web,Intended browser,Itended browser name,intendedBrowserGroupList > intendedBrowserGroup,intendedBrowser,string,n,n,y,vocabulary: webbrowsers,"" +core_7-1-0 collectionobject ns2:collectionobjects_common intendedBrowserVersion,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.intendedBrowserVersion,Technical Specifications: Software/Web,Intended browser,Itended browser version,intendedBrowserGroupList > intendedBrowserGroup,intendedBrowserVersion,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common domainName,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.domainName,Technical Specifications: Software/Web,Domain,Domain name,domainGroupList > domainGroup,domainName,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common domainHost,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.domainHost,Technical Specifications: Software/Web,Domain,Domain host,domainGroupList > domainGroup,domainHost,string,n,n,y,authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common domainType,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.domainType,Technical Specifications: Software/Web,Domain,Domain type,domainGroupList > domainGroup,domainType,string,n,n,y,vocabulary: domaintype,"" +core_7-1-0 collectionobject ns2:collectionobjects_common domainVersion,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.domainVersion,Technical Specifications: Software/Web,Domain,Domain version,domainGroupList > domainGroup,domainVersion,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common domainOwner,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.domainOwner,Technical Specifications: Software/Web,Domain,Domain owner,domainGroupList > domainGroup,domainOwner,string,n,n,y,authority: organization/local,"" +core_7-1-0 collectionobject ns2:collectionobjects_common applicationInteractionRequired,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.applicationInteractionRequired,Technical Specifications: Software/Web,Interacting application,Interacting application required,applicationInteractionGroupList > applicationInteractionGroup,applicationInteractionRequired,string,n,n,y,option list: yesNoValues,"no, yes" +core_7-1-0 collectionobject ns2:collectionobjects_common applicationRequired,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.applicationRequired,Technical Specifications: Software/Web,Interacting application,Interacting application name,applicationInteractionGroupList > applicationInteractionGroup,applicationRequired,string,n,n,y,vocabulary: requiredapplication,"" +core_7-1-0 collectionobject ns2:collectionobjects_common applicationRequiredFor,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.applicationRequiredFor,Technical Specifications: Software/Web,Interacting application,Interacting application required for,applicationInteractionGroupList > applicationInteractionGroup,applicationRequiredFor,string,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareTechnicalAttribute,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareTechnicalAttribute,Technical Specifications: Software/Web,Software technical attribute,Software technical attribute,softwareTechnicalAttributeGroupList > softwareTechnicalAttributeGroup,softwareTechnicalAttribute,string,n,n,y,vocabulary: softwareattributes,"" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareTechnicalAttributeLowValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareTechnicalAttributeLowValue,Technical Specifications: Software/Web,Software technical attribute,Software technical attribute low/single value,softwareTechnicalAttributeGroupList > softwareTechnicalAttributeGroup,softwareTechnicalAttributeLowValue,integer,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareTechnicalAttributeHighValue,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareTechnicalAttributeHighValue,Technical Specifications: Software/Web,Software technical attribute,Software technical attribute high value,softwareTechnicalAttributeGroupList > softwareTechnicalAttributeGroup,softwareTechnicalAttributeHighValue,integer,n,n,y,"","" +core_7-1-0 collectionobject ns2:collectionobjects_common softwareTechnicalAttributeUnit,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.softwareTechnicalAttributeUnit,Technical Specifications: Software/Web,Software technical attribute,Software technical attribute unit,softwareTechnicalAttributeGroupList > softwareTechnicalAttributeGroup,softwareTechnicalAttributeUnit,string,n,n,y,vocabulary: softwareattributeunits,"" +core_7-1-0 collectionobject ns2:collectionobjects_common apiUrl,core_7-1-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.apiUrl,Technical Specifications: Software/Web,"",API URL,apiUrls,apiUrl,string,n,y,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateDisplayDate,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,datePeriod,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateAssociation,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateNote,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestYear,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestDay,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateDisplayDate,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,datePeriod,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateAssociation,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateNote,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestYear,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestDay,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object History and Association Information,collectionobjects_common.ownershipDateGroup,"",ownershipDateGroupList > ownershipDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +core_7-1-0 concept ns2:concepts_common termDisplayName,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termDisplayName,Concept Information,Term,Term display name,conceptTermGroupList > conceptTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 concept ns2:concepts_common termName,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termName,Concept Information,Term,Term name,conceptTermGroupList > conceptTermGroup,termName,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common termQualifier,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termQualifier,Concept Information,Term,Term qualifier,conceptTermGroupList > conceptTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common termStatus,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termStatus,Concept Information,Term,Term status,conceptTermGroupList > conceptTermGroup,termStatus,string,n,n,y,option list: conceptTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 concept ns2:concepts_common termType,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termType,Concept Information,Term,Term type,conceptTermGroupList > conceptTermGroup,termType,string,n,n,y,option list: conceptTermTypes,"alternate descriptor, descriptor, used for term" +core_7-1-0 concept ns2:concepts_common termFlag,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termFlag,Concept Information,Term,Term flag,conceptTermGroupList > conceptTermGroup,termFlag,string,n,n,y,vocabulary: concepttermflag,"" +core_7-1-0 concept ns2:concepts_common historicalStatus,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.historicalStatus,Concept Information,Term,Term historical status,conceptTermGroupList > conceptTermGroup,historicalStatus,string,n,n,y,option list: conceptHistoricalStatuses,"both, current, historical, unknown" +core_7-1-0 concept ns2:concepts_common termLanguage,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termLanguage,Concept Information,Term,Term language,conceptTermGroupList > conceptTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 concept ns2:concepts_common termPrefForLang,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termPrefForLang,Concept Information,Term,Term preferred for lang,conceptTermGroupList > conceptTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common termSource,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSource,Concept Information,Term > Source,Term source name,conceptTermGroupList > conceptTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 concept ns2:concepts_common termSourceDetail,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceDetail,Concept Information,Term > Source,Term source detail,conceptTermGroupList > conceptTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common termSourceID,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceID,Concept Information,Term > Source,Term source ID,conceptTermGroupList > conceptTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common termSourceNote,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceNote,Concept Information,Term > Source,Term source note,conceptTermGroupList > conceptTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common conceptRecordType,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.conceptRecordType,Concept Information,"",Concept type,conceptRecordTypes,conceptRecordType,string,n,y,n,vocabulary: concepttype,"" +core_7-1-0 concept ns2:concepts_common scopeNote,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNote,Concept Information,Scope note,Scope note,"",scopeNote,string,n,n,n/a,"","" +core_7-1-0 concept ns2:concepts_common scopeNoteSource,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSource,Concept Information,Scope note,Scope note source,"",scopeNoteSource,string,n,n,n/a,"","" +core_7-1-0 concept ns2:concepts_common scopeNoteSourceDetail,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSourceDetail,Concept Information,Scope note,Scope note source detail,"",scopeNoteSourceDetail,string,n,n,n/a,"","" +core_7-1-0 concept ns2:concepts_common citationSource,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSource,Concept Information,Citation,Citation source,citationGroupList > citationGroup,citationSource,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common citationSourceDetail,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSourceDetail,Concept Information,Citation,Citation source detail,citationGroupList > citationGroup,citationSourceDetail,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common additionalSource,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSource,Concept Information,Additional source,Additional source,additionalSourceGroupList > additionalSourceGroup,additionalSource,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common additionalSourceDetail,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceDetail,Concept Information,Additional source,Additional source detail,additionalSourceGroupList > additionalSourceGroup,additionalSourceDetail,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common additionalSourceID,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceID,Concept Information,Additional source,Additional source ID,additionalSourceGroupList > additionalSourceGroup,additionalSourceID,string,n,n,y,"","" +core_7-1-0 concept ns2:concepts_common additionalSourceNote,core_7-1-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceNote,Concept Information,Additional source,Additional source note,additionalSourceGroupList > additionalSourceGroup,additionalSourceNote,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionCheckRefNumber,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckRefNumber,Condition Check/Technical Assessment Information,"",Reference number,"",conditionCheckRefNumber,string,y,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionCheckAssessmentDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckAssessmentDate,Condition Check/Technical Assessment Information,"",Check/assessment date,"",conditionCheckAssessmentDate,date,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionCheckMethod,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckMethod,Condition Check/Technical Assessment Information,"",Method,"",conditionCheckMethod,string,n,n,n/a,option list: conditionCheckMethods,"observed, xrayed" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionCheckReason,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckReason,Condition Check/Technical Assessment Information,"",Reason,"",conditionCheckReason,string,n,n,n/a,option list: conditionCheckReasons,"conservation, damagedintransit, exhibition, loanin, newacquisition" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionChecker,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionChecker,Condition Check/Technical Assessment Information,"",Checker/assessor,"",conditionChecker,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionCheckNote,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckNote,Condition Check/Technical Assessment Information,"",Note,"",conditionCheckNote,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common objectAuditCategory,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.objectAuditCategory,Object Condition Information,"",Object audit category,"",objectAuditCategory,string,n,n,n/a,option list: objectAuditCategories,"high, low, medium" +core_7-1-0 conditioncheck ns2:conditionchecks_common conservationTreatmentPriority,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conservationTreatmentPriority,Object Condition Information,"",Conservation treatment priority,"",conservationTreatmentPriority,string,n,n,n/a,option list: conservationTreatmentPriorities,"high, low, medium" +core_7-1-0 conditioncheck ns2:conditionchecks_common nextConditionCheckDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.nextConditionCheckDate,Object Condition Information,"",Next check/assessment date,"",nextConditionCheckDate,date,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common completeness,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completeness,Object Condition Information,Completeness,Completeness description,completenessGroupList > completenessGroup,completeness,string,n,n,y,option list: completenessLevels,"complete, fragmented, incomplete" +core_7-1-0 conditioncheck ns2:conditionchecks_common completenessDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessDate,Object Condition Information,Completeness,Completeness date,completenessGroupList > completenessGroup,completenessDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common completenessNote,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessNote,Object Condition Information,Completeness,Completeness note,completenessGroupList > completenessGroup,completenessNote,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common hazard,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazard,Object Condition Information,Hazard,Hazard description,hazardGroupList > hazardGroup,hazard,string,n,n,y,option list: hazards,"poisonous, radioactive" +core_7-1-0 conditioncheck ns2:conditionchecks_common hazardDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardDate,Object Condition Information,Hazard,Hazard date,hazardGroupList > hazardGroup,hazardDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common hazardNote,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardNote,Object Condition Information,Hazard,Hazard note,hazardGroupList > hazardGroup,hazardNote,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common techAssessment,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessment,Object Condition Information,Technical assessment,Technical assessment description,techAssessmentGroupList > techAssessmentGroup,techAssessment,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common techAssessmentDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessmentDate,Object Condition Information,Technical assessment,Technical assessment date,techAssessmentGroupList > techAssessmentGroup,techAssessmentDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common condition,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.condition,Object Condition Information,Condition,Condition description,conditionCheckGroupList > conditionCheckGroup,condition,string,n,n,y,option list: conditions,"exhibitableneedswork, injeopardy, needsnowork, notexhibitablestable" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionDate,Object Condition Information,Condition,Condition date,conditionCheckGroupList > conditionCheckGroup,conditionDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common conditionNote,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionNote,Object Condition Information,Condition,Condition note,conditionCheckGroupList > conditionCheckGroup,conditionNote,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common envConditionNote,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNote,Object Condition Information,Environmental condition,Environmental condition note,envConditionNoteGroupList > envConditionNoteGroup,envConditionNote,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common envConditionNoteDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNoteDate,Object Condition Information,Environmental condition,Environmental condition date,envConditionNoteGroupList > envConditionNoteGroup,envConditionNoteDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common displayRecommendations,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.displayRecommendations,Object Recommendation/Requirement Information,"",Display recommendation,"",displayRecommendations,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common handlingRecommendations,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.handlingRecommendations,Object Recommendation/Requirement Information,"",Handling recommendation,"",handlingRecommendations,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common securityRecommendations,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.securityRecommendations,Object Recommendation/Requirement Information,"",Security recommendation,"",securityRecommendations,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common storageRequirements,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.storageRequirements,Object Recommendation/Requirement Information,"",Storage recommendation,"",storageRequirements,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common envRecommendations,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envRecommendations,Object Recommendation/Requirement Information,"",Environmental recommendation,"",envRecommendations,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common packingRecommendations,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.packingRecommendations,Object Recommendation/Requirement Information,"",Packing recommendation,"",packingRecommendations,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common specialRequirements,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.specialRequirements,Object Recommendation/Requirement Information,"",Special requirement,"",specialRequirements,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalRequirements,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalRequirements,Object Recommendation/Requirement Information,"",Legal requirement,"",legalRequirements,string,n,n,n/a,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalReqsHeld,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeld,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held description,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeld,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalReqsHeldBeginDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldBeginDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held begin date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldBeginDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalReqsHeldEndDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldEndDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held end date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldEndDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalReqsHeldNumber,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldNumber,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held number,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldNumber,string,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common legalReqsHeldRenewDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldRenewDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held renewal date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldRenewDate,date,n,n,y,"","" +core_7-1-0 conditioncheck ns2:conditionchecks_common salvagePriorityCode,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCode,Object Recommendation/Requirement Information,Salvage priority,Salvage priority code,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCode,string,n,n,y,option list: salvagePriorityCodes,"high, low, medium" +core_7-1-0 conditioncheck ns2:conditionchecks_common salvagePriorityCodeDate,core_7-1-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCodeDate,Object Recommendation/Requirement Information,Salvage priority,Salvage priority date,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCodeDate,date,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common conservationNumber,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservationNumber,Conservation Treatment Information,"",Reference number,"",conservationNumber,string,y,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common status,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.status,Conservation Treatment Information,Procedural status,Procedural status,conservationStatusGroupList > conservationStatusGroup,status,string,n,n,y,vocabulary: conservationstatus,"" +core_7-1-0 conservation ns2:conservation_common statusDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.statusDate,Conservation Treatment Information,Procedural status,Procedural status date,conservationStatusGroupList > conservationStatusGroup,statusDate,date,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common treatmentPurpose,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentPurpose,Conservation Treatment Information,"",Treatment purpose,"",treatmentPurpose,string,n,n,n/a,vocabulary: treatmentpurpose,"" +core_7-1-0 conservation ns2:conservation_common conservator,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservator,Conservation Treatment Information,"",Conservator,conservators,conservator,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 conservation ns2:conservation_common otherParty,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherParty,Conservation Treatment Information,Other treatment party,Other treatment party name,otherPartyGroupList > otherPartyGroup,otherParty,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 conservation ns2:conservation_common otherPartyRole,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyRole,Conservation Treatment Information,Other treatment party,Other treatment party role,otherPartyGroupList > otherPartyGroup,otherPartyRole,string,n,n,y,vocabulary: otherpartyrole,"" +core_7-1-0 conservation ns2:conservation_common otherPartyNote,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyNote,Conservation Treatment Information,Other treatment party,Other treatment party note,otherPartyGroupList > otherPartyGroup,otherPartyNote,string,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common examinationStaff,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationStaff,Conservation Treatment Information,Examination,Examination staff,examinationGroupList > examinationGroup,examinationStaff,string,n,n,y,authority: person/local,"" +core_7-1-0 conservation ns2:conservation_common examinationPhase,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationPhase,Conservation Treatment Information,Examination,Examination phase of treatment,examinationGroupList > examinationGroup,examinationPhase,string,n,n,y,vocabulary: examinationphase,"" +core_7-1-0 conservation ns2:conservation_common examinationDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationDate,Conservation Treatment Information,Examination,Examination date,examinationGroupList > examinationGroup,examinationDate,date,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common examinationNote,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationNote,Conservation Treatment Information,Examination,Examination note,examinationGroupList > examinationGroup,examinationNote,string,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common fabricationNote,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.fabricationNote,Conservation Treatment Information,"",Fabrication note,"",fabricationNote,string,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common proposedTreatment,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedTreatment,Conservation Treatment Information,"",Proposed treatment,"",proposedTreatment,string,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common approvedBy,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedBy,Conservation Treatment Information,"",Approved by,"",approvedBy,string,n,n,n/a,authority: person/local,"" +core_7-1-0 conservation ns2:conservation_common approvedDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedDate,Conservation Treatment Information,"",Approval date,"",approvedDate,date,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common treatmentStartDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentStartDate,Conservation Treatment Information,"",Treatment start date,"",treatmentStartDate,date,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common treatmentEndDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentEndDate,Conservation Treatment Information,"",Treatment end date,"",treatmentEndDate,date,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common treatmentSummary,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentSummary,Conservation Treatment Information,"",Treatment summary,"",treatmentSummary,string,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common proposedAnalysis,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysis,Object Analysis Information,"",Proposed analysis,"",proposedAnalysis,string,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common researcher,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.researcher,Object Analysis Information,"",Analysis researcher,"",researcher,string,n,n,n/a,authority: person/local,"" +core_7-1-0 conservation ns2:conservation_common proposedAnalysisDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysisDate,Object Analysis Information,"",Analysis proposal date,"",proposedAnalysisDate,date,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common destAnalysisApprovedDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovedDate,Object Analysis Information,Destructive analysis,Destructive analysis approval date,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovedDate,date,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common destAnalysisApprovalNote,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovalNote,Object Analysis Information,Destructive analysis,Destructive analysis approval note,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovalNote,string,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common sampleBy,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleBy,Object Analysis Information,Destructive analysis,Destructive analysis sample taken by,destAnalysisGroupList > destAnalysisGroup,sampleBy,string,n,n,y,authority: person/local,"" +core_7-1-0 conservation ns2:conservation_common sampleDate,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDate,Object Analysis Information,Destructive analysis,Destructive analysis sample date,destAnalysisGroupList > destAnalysisGroup,sampleDate,date,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common sampleDescription,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDescription,Object Analysis Information,Destructive analysis,Destructive analysis sample description,destAnalysisGroupList > destAnalysisGroup,sampleDescription,string,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common sampleReturned,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturned,Object Analysis Information,Destructive analysis,Destructive analysis sample returned,destAnalysisGroupList > destAnalysisGroup,sampleReturned,boolean,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common sampleReturnedLocation,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturnedLocation,Object Analysis Information,Destructive analysis,Destructive analysis sample returned location,destAnalysisGroupList > destAnalysisGroup,sampleReturnedLocation,string,n,n,y,"","" +core_7-1-0 conservation ns2:conservation_common analysisMethod,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisMethod,Object Analysis Information,"",Analytical methodology,"",analysisMethod,string,n,n,n/a,"","" +core_7-1-0 conservation ns2:conservation_common analysisResults,core_7-1-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisResults,Object Analysis Information,"",Analytical result,"",analysisResults,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionNumber,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionNumber,Exhibition Information,"",Exhibition number,"",exhibitionNumber,string,y,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common type,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.type,Exhibition Information,"",Type,"",type,string,n,n,n/a,vocabulary: exhibitiontype,"" +core_7-1-0 exhibition ns2:exhibitions_common title,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.title,Exhibition Information,"",Title,"",title,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common sponsor,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.sponsor,Exhibition Information,"",Sponsor,sponsors,sponsor,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +core_7-1-0 exhibition ns2:exhibitions_common organizer,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.organizer,Exhibition Information,"",Organizer,organizers,organizer,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +core_7-1-0 exhibition ns2:exhibitions_common publishTo,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.publishTo,Exhibition Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +core_7-1-0 exhibition ns2:exhibitions_common venue,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venue,Exhibition Information,Venue,Venue name,venueGroupList > venueGroup,venue,string,n,n,y,authority: organization/local; authority: organization/ulan; authority: location/local; authority: location/offsite; authority: place/local; authority: place/tgn,"" +core_7-1-0 exhibition ns2:exhibitions_common venueOpeningDate,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueOpeningDate,Exhibition Information,Venue,Venue opening date,venueGroupList > venueGroup,venueOpeningDate,date,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common venueClosingDate,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueClosingDate,Exhibition Information,Venue,Venue closing date,venueGroupList > venueGroup,venueClosingDate,date,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common venueAttendance,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueAttendance,Exhibition Information,Venue,Venue attendance,venueGroupList > venueGroup,venueAttendance,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common venueUrl,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueUrl,Exhibition Information,Venue,Venue web address,venueGroupList > venueGroup,venueUrl,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common workingGroupTitle,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupTitle,Exhibition Information,Working group,Working group title,workingGroupList > workingGroup,workingGroupTitle,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common workingGroupNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupNote,Exhibition Information,Working group,Working group note,workingGroupList > workingGroup,workingGroupNote,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionPerson,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPerson,Exhibition Information,Working group > Working group member,Working group member name,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPerson,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionPersonRole,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPersonRole,Exhibition Information,Working group > Working group member,Working group member role,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPersonRole,string,n,n,y,vocabulary: exhibitionpersonrole,"" +core_7-1-0 exhibition ns2:exhibitions_common planningNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.planningNote,Exhibition Information,"",Planning note,"",planningNote,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common curatorialNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.curatorialNote,Exhibition Information,"",Curatorial note,"",curatorialNote,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common generalNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.generalNote,Exhibition Information,"",General note,"",generalNote,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common boilerplateText,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.boilerplateText,Exhibition Information,"",Boilerplate text,"",boilerplateText,string,n,n,n/a,"","" +core_7-1-0 exhibition ns2:exhibitions_common galleryRotationName,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationName,Exhibition Information,Gallery rotation,Gallery rotation name,galleryRotationGroupList > galleryRotationGroup,galleryRotationName,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common galleryRotationNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationNote,Exhibition Information,Gallery rotation,Gallery rotation note,galleryRotationGroupList > galleryRotationGroup,galleryRotationNote,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionReference,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReference,Exhibition Information,Bibliographic reference,Bibliographic reference,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionReferenceType,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceType,Exhibition Information,Bibliographic reference,Bibliographic reference type,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceType,string,n,n,y,vocabulary: exhibitionreferencetype,"" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionReferenceNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceNote,Exhibition Information,Bibliographic reference,Bibliographic reference note,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceNote,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionSectionName,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionName,Exhibition Planning Information,Exhibition section,Exhibition section name,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionName,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionSectionLocation,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionLocation,Exhibition Planning Information,Exhibition section,Exhibition section location,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionLocation,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionSectionObjects,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionObjects,Exhibition Planning Information,Exhibition section,Exhibition section objects,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionObjects,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionSectionNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionNote,Exhibition Planning Information,Exhibition section,Exhibition section note,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionNote,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionStatus,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatus,Exhibition Planning Information,Exhibition status,Exhibition status,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatus,string,n,n,y,vocabulary: exhibitionstatus,"" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionStatusDate,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusDate,Exhibition Planning Information,Exhibition status,Exhibition status date,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusDate,date,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionStatusNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusNote,Exhibition Planning Information,Exhibition status,Exhibition status note,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusNote,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectNumber,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNumber,Exhibited Object Information,Object checklist,Object number,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNumber,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectName,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectName,Exhibited Object Information,Object checklist,Object name,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectName,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectConsCheckDate,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsCheckDate,Exhibited Object Information,Object checklist,Object cons. check,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsCheckDate,date,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectConsTreatment,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsTreatment,Exhibited Object Information,Object checklist,Object cons. treatment,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsTreatment,string,n,n,y,option list: exhibitionConsTreatmentStatuses,"Done, Needed, Not needed" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectMount,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectMount,Exhibited Object Information,Object checklist,Object mount,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectMount,string,n,n,y,option list: exhibitionMountStatuses,"Done, Needed, Not needed" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectSection,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSection,Exhibited Object Information,Object checklist,Object section,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSection,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectCase,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectCase,Exhibited Object Information,Object checklist,Object case,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectCase,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectSeqNum,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSeqNum,Exhibited Object Information,Object checklist,Object seq. #,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSeqNum,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectRotation,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectRotation,Exhibited Object Information,Object checklist,Object rotation,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectRotation,string,n,n,y,"","" +core_7-1-0 exhibition ns2:exhibitions_common exhibitionObjectNote,core_7-1-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNote,Exhibited Object Information,Object checklist,Object note,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNote,string,n,n,y,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateNote,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateNote,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +core_7-1-0 group ns2:groups_common title,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.title,Group Information,"",Title,"",title,string,y,n,n/a,"","" +core_7-1-0 group ns2:groups_common responsibleDepartment,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.responsibleDepartment,Group Information,"",Responsible department,"",responsibleDepartment,string,n,n,n/a,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings" +core_7-1-0 group ns2:groups_common owner,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.owner,Group Information,"",Group owner,"",owner,string,n,n,n/a,authority: person/local,"" +core_7-1-0 group ns2:groups_common groupEarliestSingleDate,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.groupEarliestSingleDate,Group Information,"",Earliest/single date,"",groupEarliestSingleDate,date,n,n,n/a,"","" +core_7-1-0 group ns2:groups_common groupLatestDate,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.groupLatestDate,Group Information,"",Latest date,"",groupLatestDate,date,n,n,n/a,"","" +core_7-1-0 group ns2:groups_common scopeNote,core_7-1-0,group,ns2:groups_common,ns2:groups_common,groups_common.scopeNote,Group Information,"",Scope note,"",scopeNote,string,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityReferenceNumber,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityReferenceNumber,Insurance and Indemnity Information,"",Reference number,"",insuranceIndemnityReferenceNumber,string,y,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityType,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityType,Insurance and Indemnity Information,"",Type,"",insuranceIndemnityType,string,n,n,n/a,vocabulary: insurancetype,"" +core_7-1-0 insurance ns2:insurances_common insurerIndemnifier,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insurerIndemnifier,Insurance and Indemnity Information,"",Insurer/indemnifier,"",insurerIndemnifier,string,n,n,n/a,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityPolicyNumber,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityPolicyNumber,Insurance and Indemnity Information,"",Policy number,"",insuranceIndemnityPolicyNumber,string,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityCurrency,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityCurrency,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price currency,"",insuranceIndemnityCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityValue,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityValue,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price value,"",insuranceIndemnityValue,float,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common minimumLiabilityCurrency,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityCurrency,Insurance and Indemnity Information,Minimum liability price,Minimum liability price currency,"",minimumLiabilityCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 insurance ns2:insurances_common minimumLiabilityValue,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityValue,Insurance and Indemnity Information,Minimum liability price,Minimum liability price value,"",minimumLiabilityValue,float,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityAuthorizer,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizer,Insurance and Indemnity Information,Authorization,Authorizer,"",insuranceIndemnityAuthorizer,string,n,n,n/a,authority: person/local; authority: person/ulan,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityAuthorizationDate,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizationDate,Insurance and Indemnity Information,Authorization,Authorization date,"",insuranceIndemnityAuthorizationDate,date,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityStatus,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatus,Insurance and Indemnity Information,Status,Status type,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatus,string,n,n,y,vocabulary: insurancestatus,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityStatusDate,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusDate,Insurance and Indemnity Information,Status,Status date,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusDate,date,n,n,y,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityStatusNote,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusNote,Insurance and Indemnity Information,Status,Status note,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusNote,string,n,n,y,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityNote,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityNote,Insurance and Indemnity Information,"",Note,"",insuranceIndemnityNote,string,n,n,n/a,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityQuoteProvider,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteProvider,Insurance and Indemnity Information,Quote,Quote provider,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteProvider,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityQuoteCurrency,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteCurrency,Insurance and Indemnity Information,Quote,Quote currency,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityQuoteValue,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteValue,Insurance and Indemnity Information,Quote,Quote value,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteValue,float,n,n,y,"","" +core_7-1-0 insurance ns2:insurances_common insuranceIndemnityQuoteDate,core_7-1-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteDate,Insurance and Indemnity Information,Quote,Quote date,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteDate,date,n,n,y,"","" +core_7-1-0 intake ns2:intakes_common entryNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNumber,Object Entry Information,"",Entry number,"",entryNumber,string,y,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common entryDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryDate,Object Entry Information,"",Entry date,"",entryDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common entryReason,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryReason,Object Entry Information,"",Entry reason,"",entryReason,string,n,n,n/a,option list: entryReasons,"commission, consideration, enquiry, loan" +core_7-1-0 intake ns2:intakes_common entryMethod,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryMethod,Object Entry Information,"",Entry method,entryMethods,entryMethod,string,n,y,n,vocabulary: entrymethod,"" +core_7-1-0 intake ns2:intakes_common returnDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.returnDate,Object Entry Information,"",Return date,"",returnDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common currentOwner,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentOwner,Object Entry Information,"",Current owner,currentOwners,currentOwner,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common depositor,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositor,Object Entry Information,Depositor,Depositor name,depositorGroupList > depositorGroup,depositor,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common depositorsRequirements,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositorsRequirements,Object Entry Information,Depositor,Depositor requirements,depositorGroupList > depositorGroup,depositorsRequirements,string,n,n,y,"","" +core_7-1-0 intake ns2:intakes_common approvalGroup,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalGroup,Object Entry Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +core_7-1-0 intake ns2:intakes_common approvalIndividual,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalIndividual,Object Entry Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"" +core_7-1-0 intake ns2:intakes_common approvalStatus,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalStatus,Object Entry Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +core_7-1-0 intake ns2:intakes_common approvalDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalDate,Object Entry Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","" +core_7-1-0 intake ns2:intakes_common approvalNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalNote,Object Entry Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","" +core_7-1-0 intake ns2:intakes_common entryNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNote,Object Entry Information,"",Entry note,"",entryNote,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common packingNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.packingNote,Object Entry Information,"",Packing note,"",packingNote,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common fieldCollectionDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionDate,Object Collection Information,"",Field collection date,"",fieldCollectionDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common fieldCollectionMethod,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"" +core_7-1-0 intake ns2:intakes_common fieldCollectionNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common fieldCollectionNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common fieldCollectionPlace,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common fieldCollectionSource,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local,"" +core_7-1-0 intake ns2:intakes_common fieldCollector,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common fieldCollectionEventName,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","" +core_7-1-0 intake ns2:intakes_common valuer,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuer,Valuation Information,"",Valuer,"",valuer,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common valuationReferenceNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuationReferenceNumber,Valuation Information,"",Valuation reference number,"",valuationReferenceNumber,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common insurer,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurer,Insurance Information,"",Insurer,insurers,insurer,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common insurancePolicyNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurancePolicyNumber,Insurance Information,"",Insurance policy number,"",insurancePolicyNumber,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common insuranceRenewalDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceRenewalDate,Insurance Information,"",Insurance renewal date,"",insuranceRenewalDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common insuranceReferenceNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceReferenceNumber,Insurance Information,"",Insurance reference number,"",insuranceReferenceNumber,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common insuranceNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceNote,Insurance Information,"",Insurance note,"",insuranceNote,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common currentLocation,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocation,Location Information,Current location,Current location,currentLocationGroupList > currentLocationGroup,currentLocation,string,n,n,y,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"" +core_7-1-0 intake ns2:intakes_common currentLocationFitness,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationFitness,Location Information,Current location,Current location fitness,currentLocationGroupList > currentLocationGroup,currentLocationFitness,string,n,n,y,vocabulary: conditionfitness,"" +core_7-1-0 intake ns2:intakes_common currentLocationNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationNote,Location Information,Current location,Current location note,currentLocationGroupList > currentLocationGroup,currentLocationNote,string,n,n,y,"","" +core_7-1-0 intake ns2:intakes_common locationDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.locationDate,Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common normalLocation,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.normalLocation,Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"" +core_7-1-0 intake ns2:intakes_common conditionCheckMethod,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckMethod,Condition Check Information,"",Condition check method,conditionCheckMethods,conditionCheckMethod,string,n,y,n,vocabulary: conditioncheckmethod,"" +core_7-1-0 intake ns2:intakes_common conditionCheckReason,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReason,Condition Check Information,"",Condition check reason,conditionCheckReasons,conditionCheckReason,string,n,y,n,vocabulary: conditioncheckreason,"" +core_7-1-0 intake ns2:intakes_common conditionCheckerOrAssessor,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckerOrAssessor,Condition Check Information,"",Condition check assessor,conditionCheckersOrAssessors,conditionCheckerOrAssessor,string,n,y,n,authority: person/local; authority: organization/local,"" +core_7-1-0 intake ns2:intakes_common conditionCheckDate,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckDate,Condition Check Information,"",Condition check date,"",conditionCheckDate,date,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common conditionCheckReferenceNumber,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReferenceNumber,Condition Check Information,"",Condition check reference number,"",conditionCheckReferenceNumber,string,n,n,n/a,"","" +core_7-1-0 intake ns2:intakes_common conditionCheckNote,core_7-1-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckNote,Condition Check Information,"",Condition check note,"",conditionCheckNote,string,n,n,n/a,"","" +core_7-1-0 iterationreport ns2:iterationreports_common iterationIdentificationNumber,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationIdentificationNumber,Iteration Information,"",Iteration identification number,"",iterationIdentificationNumber,string,y,n,n/a,"","" +core_7-1-0 iterationreport ns2:iterationreports_common iterationCreator,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationCreator,Iteration Information,Iteration creator/supervisor,Iteration creator/supervisor name,iterationCreatorGroupList > iterationCreatorGroup,iterationCreator,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common iterationCreatorRole,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationCreatorRole,Iteration Information,Iteration creator/supervisor,Iteration creator/supervisor role,iterationCreatorGroupList > iterationCreatorGroup,iterationCreatorRole,string,n,n,y,vocabulary: iterationrole,"" +core_7-1-0 iterationreport ns2:iterationreports_common action,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.action,Iteration Information,Iteration action,Iteration action type,iterationActionGroupList > iterationActionGroup,action,string,n,n,y,option list: installationType,"deinstallation, exhibition, exhibition update, installation" +core_7-1-0 iterationreport ns2:iterationreports_common actionStartDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.actionStartDate,Iteration Information,Iteration action,Iteration action earliest/start date,iterationActionGroupList > iterationActionGroup,actionStartDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common actionEndDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.actionEndDate,Iteration Information,Iteration action,Iteration action end date,iterationActionGroupList > iterationActionGroup,actionEndDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installer,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installer,Iteration Information,Installer,Installer name,installerGroupList > installerGroup,installer,string,n,n,y,authority: person/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common installerRole,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installerRole,Iteration Information,Installer,Installer role/skillset,installerGroupList > installerGroup,installerRole,string,n,n,y,vocabulary: installerrole,"" +core_7-1-0 iterationreport ns2:iterationreports_common installerExtent,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installerExtent,Iteration Information,Installer,Installer time spent,installerGroupList > installerGroup,installerExtent,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installDeinstall,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installDeinstall,Iteration Information,Artist present/represented,Artist present/represented install/deinstall,presenceGroupList > presenceGroup,installDeinstall,string,n,n,y,option list: installationType,"deinstallation, exhibition, exhibition update, installation" +core_7-1-0 iterationreport ns2:iterationreports_common artistPresent,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.artistPresent,Iteration Information,Artist present/represented,Artist present/represented presence,presenceGroupList > presenceGroup,artistPresent,string,n,n,y,vocabulary: artistpresence,"" +core_7-1-0 iterationreport ns2:iterationreports_common artistOrRepresentative,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.artistOrRepresentative,Iteration Information,Artist present/represented,Artist or representative,presenceGroupList > presenceGroup,artistOrRepresentative,string,n,n,y,authority: person/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common presentExtent,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.presentExtent,Iteration Information,Artist present/represented,Artist present/represented extent,presenceGroupList > presenceGroup,presentExtent,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common iterationSuccessful,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationSuccessful,Iteration Information,Iteration Evaluation > Iteration evaluation,Iteration evaluation successful,evaluationGroupList > evaluationGroup,iterationSuccessful,string,n,n,y,option list: iterationSuccess,"no, partially, yes" +core_7-1-0 iterationreport ns2:iterationreports_common iterationEvaluator,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationEvaluator,Iteration Information,Iteration Evaluation > Iteration evaluation,Iteration evaluation evaluator,evaluationGroupList > evaluationGroup,iterationEvaluator,string,n,n,y,authority: person/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common iterationViewed,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationViewed,Iteration Information,Iteration Evaluation,Iteration viewed by artist,"",iterationViewed,string,n,n,n/a,option list: iterationSuccess,"no, partially, yes" +core_7-1-0 iterationreport ns2:iterationreports_common iterationApproved,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationApproved,Iteration Information,Iteration Evaluation,Iteration approved by artist,"",iterationApproved,string,n,n,n/a,option list: iterationSuccess,"no, partially, yes" +core_7-1-0 iterationreport ns2:iterationreports_common iterationEvaluationNotes,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.iterationEvaluationNotes,Iteration Information,Iteration Evaluation,Iteration evaluation notes,"",iterationEvaluationNotes,string,n,n,n/a,"","" +core_7-1-0 iterationreport ns2:iterationreports_common descriptionType,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.descriptionType,Space Information,"Space, as installed","Space, as installed type",spaceGroupList > spaceGroup,descriptionType,string,n,n,y,vocabulary: iterationspacetype,"" +core_7-1-0 iterationreport ns2:iterationreports_common approvalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.approvalEntity,Space Information,"Space, as installed","Space, as installed approval entity",spaceGroupList > spaceGroup,approvalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common approvalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.approvalDate,Space Information,"Space, as installed","Space, as installed approval date",spaceGroupList > spaceGroup,approvalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common spaceDescription,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.spaceDescription,Space Information,"Space, as installed","Space, as installed description",spaceGroupList > spaceGroup,spaceDescription,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common exhibitionCopyIdentificationNumber,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.exhibitionCopyIdentificationNumber,Iteration Details,Exhibition,Exhibition copy ID,exhibitionGroupList > exhibitionGroup,exhibitionCopyIdentificationNumber,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common exhibitionApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.exhibitionApprovalEntity,Iteration Details,Exhibition,Exhibition approval entity,exhibitionGroupList > exhibitionGroup,exhibitionApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common exhibitionApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.exhibitionApprovalDate,Iteration Details,Exhibition,Exhibition approval date,exhibitionGroupList > exhibitionGroup,exhibitionApprovalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installedEquipmentDescription,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installedEquipmentDescription,Iteration Details,Installed equipment,Installed equipment description,installedEquipmentGroupList > installedEquipmentGroup,installedEquipmentDescription,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installedEquipmentApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installedEquipmentApprovalEntity,Iteration Details,Installed equipment,Installed equipment approval entity,installedEquipmentGroupList > installedEquipmentGroup,installedEquipmentApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common installedEquipmentApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installedEquipmentApprovalDate,Iteration Details,Installed equipment,Installed equipment approval date,installedEquipmentGroupList > installedEquipmentGroup,installedEquipmentApprovalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common technicalSetupType,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.technicalSetupType,Iteration Details,Technical setup,Technical setup type,technicalSetupGroupList > technicalSetupGroup,technicalSetupType,string,n,n,y,vocabulary: techsetuptype,"" +core_7-1-0 iterationreport ns2:iterationreports_common technicalSetupApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.technicalSetupApprovalEntity,Iteration Details,Technical setup,Technical setup approval entity,technicalSetupGroupList > technicalSetupGroup,technicalSetupApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common technicalSetupApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.technicalSetupApprovalDate,Iteration Details,Technical setup,Technical setup approval date,technicalSetupGroupList > technicalSetupGroup,technicalSetupApprovalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common technicalSetupDescription,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.technicalSetupDescription,Iteration Details,Technical setup,Technical setup description,technicalSetupGroupList > technicalSetupGroup,technicalSetupDescription,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common modificationApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.modificationApprovalEntity,Iteration Details,Iteration-specific modification,Iteration-specific modification approval entity,iterationSpecificGroupList > iterationSpecificGroup,modificationApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common modificationApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.modificationApprovalDate,Iteration Details,Iteration-specific modification,Iteration-specific modification approval date,iterationSpecificGroupList > iterationSpecificGroup,modificationApprovalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common modificationDescription,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.modificationDescription,Iteration Details,Iteration-specific modification,Iteration-specific modification description,iterationSpecificGroupList > iterationSpecificGroup,modificationDescription,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installationApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installationApprovalEntity,Iteration Details,Further installation detail,Further installation detail approval entity,installationGroupList > installationGroup,installationApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common installationApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installationApprovalDate,Iteration Details,Further installation detail,Further installation detail approval date,installationGroupList > installationGroup,installationApprovalDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common installationDescription,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.installationDescription,Iteration Details,Further installation detail,Further installation detail description,installationGroupList > installationGroup,installationDescription,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common maintenanceType,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.maintenanceType,Iteration Details,Maintenance,Maintenance type,maintenanceGroupList > maintenanceGroup,maintenanceType,string,n,n,y,vocabulary: maintenancetype,"" +core_7-1-0 iterationreport ns2:iterationreports_common maintenanceContact,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.maintenanceContact,Iteration Details,Maintenance,Maintenance contact,maintenanceGroupList > maintenanceGroup,maintenanceContact,string,n,n,y,authority: person/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common maintenanceDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.maintenanceDate,Iteration Details,Maintenance,Maintenance date,maintenanceGroupList > maintenanceGroup,maintenanceDate,date,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common maintenanceExtent,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.maintenanceExtent,Iteration Details,Maintenance,Maintenance extent,maintenanceGroupList > maintenanceGroup,maintenanceExtent,string,n,n,y,"","" +core_7-1-0 iterationreport ns2:iterationreports_common securityRequirements,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.securityRequirements,Iteration Details,Security,Security requirements,securityGroupList > securityGroup,securityRequirements,string,n,n,y,vocabulary: securityrequirements,"" +core_7-1-0 iterationreport ns2:iterationreports_common securityApprovalEntity,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.securityApprovalEntity,Iteration Details,Security,Security approval entity,securityGroupList > securityGroup,securityApprovalEntity,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 iterationreport ns2:iterationreports_common securityApprovalDate,core_7-1-0,iterationreport,ns2:iterationreports_common,ns2:iterationreports_common,iterationreports_common.securityApprovalDate,Iteration Details,Security,Security approval date,securityGroupList > securityGroup,securityApprovalDate,date,n,n,y,"","" +core_7-1-0 loanin ns2:loansin_common loanInNumber,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNumber,Loan In Information,"",Loan in number,"",loanInNumber,string,y,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanPurpose,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanPurpose,Loan In Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation" +core_7-1-0 loanin ns2:loansin_common loanGroup,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanGroup,Loan In Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +core_7-1-0 loanin ns2:loansin_common loanIndividual,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanIndividual,Loan In Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"" +core_7-1-0 loanin ns2:loansin_common loanStatus,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatus,Loan In Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"" +core_7-1-0 loanin ns2:loansin_common loanStatusDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusDate,Loan In Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","" +core_7-1-0 loanin ns2:loansin_common loanStatusNote,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusNote,Loan In Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","" +core_7-1-0 loanin ns2:loansin_common lender,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lender,Loan In Information,Lender,Lender name,lenderGroupList > lenderGroup,lender,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 loanin ns2:loansin_common lendersContact,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersContact,Loan In Information,Lender,Lender contact,lenderGroupList > lenderGroup,lendersContact,string,n,n,y,authority: person/local,"" +core_7-1-0 loanin ns2:loansin_common lendersAuthorizer,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizer,Loan In Information,Lender,Lender authorizer,lenderGroupList > lenderGroup,lendersAuthorizer,string,n,n,y,authority: person/local,"" +core_7-1-0 loanin ns2:loansin_common lendersAuthorizationDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizationDate,Loan In Information,Lender,Lender authorization date,lenderGroupList > lenderGroup,lendersAuthorizationDate,date,n,n,y,"","" +core_7-1-0 loanin ns2:loansin_common borrowersContact,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersContact,Loan In Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanin ns2:loansin_common borrowersAuthorizer,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizer,Loan In Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanin ns2:loansin_common borrowersAuthorizationDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizationDate,Loan In Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanInConditions,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInConditions,Loan In Information,"",Conditions of loan,"",loanInConditions,string,n,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanInNote,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNote,Loan In Information,"",Note,"",loanInNote,string,n,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanInDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInDate,Loan In Information,"",Loan in date,"",loanInDate,date,n,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanReturnDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanReturnDate,Loan In Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","" +core_7-1-0 loanin ns2:loansin_common loanRenewalApplicationDate,core_7-1-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanRenewalApplicationDate,Loan In Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanOutNumber,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNumber,Loan Out Information,"",Loan out number,"",loanOutNumber,string,y,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanPurpose,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanPurpose,Loan Out Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation" +core_7-1-0 loanout ns2:loansout_common lendersAuthorizer,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizer,Loan Out Information,Lender,Lender authorizer,"",lendersAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanout ns2:loansout_common lendersContact,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersContact,Loan Out Information,Lender,Lender contact,"",lendersContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanout ns2:loansout_common lendersAuthorizationDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizationDate,Loan Out Information,Lender,Lender authorization date,"",lendersAuthorizationDate,date,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common borrower,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrower,Loan Out Information,Borrower,Borrower name,"",borrower,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 loanout ns2:loansout_common borrowersContact,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersContact,Loan Out Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanout ns2:loansout_common borrowersAuthorizer,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizer,Loan Out Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 loanout ns2:loansout_common borrowersAuthorizationDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizationDate,Loan Out Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common specialConditionsOfLoan,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.specialConditionsOfLoan,Loan Out Information,"",Conditions of loan,"",specialConditionsOfLoan,string,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanOutNote,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNote,Loan Out Information,"",Note,"",loanOutNote,string,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanGroup,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanGroup,Loan Out Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +core_7-1-0 loanout ns2:loansout_common loanIndividual,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanIndividual,Loan Out Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"" +core_7-1-0 loanout ns2:loansout_common loanStatus,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatus,Loan Out Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"" +core_7-1-0 loanout ns2:loansout_common loanStatusDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusDate,Loan Out Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","" +core_7-1-0 loanout ns2:loansout_common loanStatusNote,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusNote,Loan Out Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","" +core_7-1-0 loanout ns2:loansout_common loanOutDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutDate,Loan Out Information,"",Loan out date,"",loanOutDate,date,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanReturnDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanReturnDate,Loan Out Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","" +core_7-1-0 loanout ns2:loansout_common loanRenewalApplicationDate,core_7-1-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanRenewalApplicationDate,Loan Out Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","" +core_7-1-0 location ns2:locations_common termDisplayName,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termDisplayName,Storage Location Information,Term,Term display name,locTermGroupList > locTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 location ns2:locations_common termName,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termName,Storage Location Information,Term,Term name,locTermGroupList > locTermGroup,termName,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common termQualifier,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termQualifier,Storage Location Information,Term,Term qualifier,locTermGroupList > locTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common termStatus,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termStatus,Storage Location Information,Term,Term status,locTermGroupList > locTermGroup,termStatus,string,n,n,y,option list: locationTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 location ns2:locations_common termType,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termType,Storage Location Information,Term,Term type,locTermGroupList > locTermGroup,termType,string,n,n,y,option list: locationTermTypes,"alternate descriptor, descriptor, used for term" +core_7-1-0 location ns2:locations_common termFlag,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termFlag,Storage Location Information,Term,Term flag,locTermGroupList > locTermGroup,termFlag,string,n,n,y,vocabulary: locationtermflag,"" +core_7-1-0 location ns2:locations_common termLanguage,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termLanguage,Storage Location Information,Term,Term language,locTermGroupList > locTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 location ns2:locations_common termPrefForLang,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termPrefForLang,Storage Location Information,Term,Term preferred for lang,locTermGroupList > locTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 location ns2:locations_common termSource,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSource,Storage Location Information,Term > Source,Term source name,locTermGroupList > locTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 location ns2:locations_common termSourceDetail,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceDetail,Storage Location Information,Term > Source,Term source detail,locTermGroupList > locTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common termSourceID,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceID,Storage Location Information,Term > Source,Term source ID,locTermGroupList > locTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common termSourceNote,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceNote,Storage Location Information,Term > Source,Term source note,locTermGroupList > locTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common locationType,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.locationType,Storage Location Information,"",Storage location type,"",locationType,string,n,n,n/a,vocabulary: locationtype,"" +core_7-1-0 location ns2:locations_common securityNote,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.securityNote,Storage Location Information,"",Security note,"",securityNote,string,n,n,n/a,"","" +core_7-1-0 location ns2:locations_common address,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.address,Storage Location Information,"",Address,"",address,string,n,n,n/a,"","" +core_7-1-0 location ns2:locations_common accessNote,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.accessNote,Storage Location Information,"",Access note,"",accessNote,string,n,n,n/a,"","" +core_7-1-0 location ns2:locations_common conditionNote,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNote,Storage Location Information,Condition note,Condition note,conditionGroupList > conditionGroup,conditionNote,string,n,n,y,"","" +core_7-1-0 location ns2:locations_common conditionNoteDate,core_7-1-0,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNoteDate,Storage Location Information,Condition note,Condition note date,conditionGroupList > conditionGroup,conditionNoteDate,date,n,n,y,"","" +core_7-1-0 media ns2:media_common identificationNumber,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.identificationNumber,Media Handling Information,"",Identification number,"",identificationNumber,string,y,n,n/a,"","" +core_7-1-0 media ns2:media_common title,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.title,Media Handling Information,"",Title,"",title,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common publishTo,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.publishTo,Media Handling Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +core_7-1-0 media ns2:blobs_common name,core_7-1-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.name,Media Handling Information,File Information,Name,"",name,string,n,n,n/a,"","" +core_7-1-0 media ns2:blobs_common mimeType,core_7-1-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.mimeType,Media Handling Information,File Information,Type,"",mimeType,string,n,n,n/a,"","" +core_7-1-0 media ns2:blobs_common length,core_7-1-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.length,Media Handling Information,File Information,Size,"",length,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common externalUrl,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.externalUrl,Media Handling Information,"",External URL,"",externalUrl,string,n,n,n/a,"","" +core_7-1-0 media ext.dimension measuredPart,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredPart,Media Handling Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed" +core_7-1-0 media ext.dimension dimensionSummary,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.dimensionSummary,Media Handling Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","" +core_7-1-0 media ext.dimension dimension,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.dimension,Media Handling Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width" +core_7-1-0 media ext.dimension measuredBy,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredBy,Media Handling Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 media ext.dimension measurementMethod,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.measurementMethod,Media Handling Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station" +core_7-1-0 media ext.dimension value,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.value,Media Handling Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","" +core_7-1-0 media ext.dimension measurementUnit,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.measurementUnit,Media Handling Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons" +core_7-1-0 media ext.dimension valueQualifier,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.valueQualifier,Media Handling Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","" +core_7-1-0 media ext.dimension valueDate,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.valueDate,Media Handling Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","" +core_7-1-0 media ext.dimension measuredPartNote,core_7-1-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredPartNote,Media Handling Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","" +core_7-1-0 media ns2:media_common checksumValue,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.checksumValue,Media Handling Information,Checksum,Checksum value,checksumGroupList > checksumGroup,checksumValue,string,n,n,y,"","" +core_7-1-0 media ns2:media_common checksumType,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.checksumType,Media Handling Information,Checksum,Checksum type,checksumGroupList > checksumGroup,checksumType,string,n,n,y,vocabulary: checksumtypes,"" +core_7-1-0 media ns2:media_common checksumDate,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.checksumDate,Media Handling Information,Checksum,Checksum date,checksumGroupList > checksumGroup,checksumDate,date,n,n,y,"","" +core_7-1-0 media ns2:media_common contributor,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.contributor,Media Handling Information,"",Contributor,"",contributor,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 media ns2:media_common creator,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.creator,Media Handling Information,"",Creator,"",creator,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 media ns2:media_common language,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.language,Media Handling Information,"",Language,languageList,language,string,n,y,n,vocabulary: languages,"" +core_7-1-0 media ns2:media_common publisher,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.publisher,Media Handling Information,"",Publisher,"",publisher,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 media ns2:media_common relation,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.relation,Media Handling Information,"",Relation,relationList,relation,string,n,y,n,"","" +core_7-1-0 media ns2:media_common copyrightStatement,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.copyrightStatement,Media Handling Information,"",Copyright statement,"",copyrightStatement,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common type,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.type,Media Handling Information,"",Type,typeList,type,string,n,y,n,option list: mediaTypes,"dataset, document, moving_image, sound, still_image" +core_7-1-0 media ns2:media_common coverage,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.coverage,Media Handling Information,"",Coverage,"",coverage,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common source,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.source,Media Handling Information,"",Source,"",source,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common subject,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.subject,Media Handling Information,"",Subject,subjectList,subject,string,n,y,n,"","" +core_7-1-0 media ns2:media_common rightsHolder,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.rightsHolder,Media Handling Information,"",Rights holder,"",rightsHolder,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 media ns2:media_common description,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.description,Media Handling Information,"",Description,"",description,string,n,n,n/a,"","" +core_7-1-0 media ns2:media_common altText,core_7-1-0,media,ns2:media_common,ns2:media_common,media_common.altText,Media Handling Information,"",Alt text,"",altText,string,n,n,n/a,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateDisplayDate,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.datePeriod,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,datePeriod,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateAssociation,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateAssociation,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateNote,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateNote,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestYear,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestMonth,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestDay,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",core_7-1-0,media,ns2:media_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,scalarValuesComputed,boolean,n,n,y,"","" +core_7-1-0 media not-mapped mediaFileURI,core_7-1-0,media,not-mapped,not-mapped,not-mapped.mediaFileURI,"","","","",mediaFileURI,string,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common movementReferenceNumber,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementReferenceNumber,Object Location Information,"",Reference number,"",movementReferenceNumber,string,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common normalLocation,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.normalLocation,Object Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +core_7-1-0 movement ns2:movements_common currentLocation,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocation,Object Location Information,Current location,Current location,"",currentLocation,string,y,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +core_7-1-0 movement ns2:movements_common currentLocationFitness,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationFitness,Object Location Information,Current location,Current location fitness,"",currentLocationFitness,string,n,n,n/a,option list: locationFitnesses,"dangerous, suitable, temporary, unsuitable" +core_7-1-0 movement ns2:movements_common currentLocationNote,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationNote,Object Location Information,Current location,Current location note,"",currentLocationNote,string,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common locationDate,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.locationDate,Object Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common reasonForMove,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.reasonForMove,Movement Information,"",Reason for move,"",reasonForMove,string,n,n,n/a,option list: moveReasons,"collections-facility-move, conservation, exhibition, inventory, loan, newstoragelocation, photography, research" +core_7-1-0 movement ns2:movements_common movementMethod,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementMethod,Movement Information,"",Movement method,movementMethods,movementMethod,string,n,y,n,option list: moveMethods,"forklift, handcarried, trolley" +core_7-1-0 movement ns2:movements_common plannedRemovalDate,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.plannedRemovalDate,Movement Information,"",Planned removal date,"",plannedRemovalDate,date,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common removalDate,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.removalDate,Movement Information,"",Removal date,"",removalDate,date,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common movementContact,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementContact,Movement Information,"",Movement contact,"",movementContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 movement ns2:movements_common movementNote,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementNote,Movement Information,"",Movement note,"",movementNote,string,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common inventoryActionRequired,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryActionRequired,Inventory Information,"",Inventory action required,"",inventoryActionRequired,string,n,n,n/a,option list: invActions,"conservation, preservation, re-housing" +core_7-1-0 movement ns2:movements_common frequencyForInventory,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.frequencyForInventory,Inventory Information,"",Inventory frequency,"",frequencyForInventory,string,n,n,n/a,option list: invFreqs,"annually, daily, monthly, semi-annually, weekly" +core_7-1-0 movement ns2:movements_common inventoryDate,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryDate,Inventory Information,"",Inventory date,"",inventoryDate,date,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common nextInventoryDate,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.nextInventoryDate,Inventory Information,"",Next inventory date,"",nextInventoryDate,date,n,n,n/a,"","" +core_7-1-0 movement ns2:movements_common inventoryContact,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryContact,Inventory Information,"",Inventory contact,inventoryContactList,inventoryContact,string,n,y,n,authority: person/local,"" +core_7-1-0 movement ns2:movements_common inventoryNote,core_7-1-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryNote,Inventory Information,"",Inventory note,"",inventoryNote,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common exitNumber,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNumber,Object Exit Information,"",Exit number,"",exitNumber,string,y,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common exitReason,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitReason,Object Exit Information,"",Exit reason,"",exitReason,string,n,n,n/a,option list: exitReasons,"deaccession, disposal, returnofloan" +core_7-1-0 objectexit ns2:objectexit_common exitMethod,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitMethod,Object Exit Information,"",Exit method,exitMethods,exitMethod,string,n,y,n,option list: exitMethods,"courier, inperson, post" +core_7-1-0 objectexit ns2:objectexit_common exitQuantity,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitQuantity,Object Exit Information,"",Exit quantity,"",exitQuantity,integer,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common currentOwner,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.currentOwner,Object Exit Information,"",Current owner,"",currentOwner,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 objectexit ns2:objectexit_common depositor,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.depositor,Object Exit Information,"",Depositor,"",depositor,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 objectexit ns2:objectexit_common exitNote,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNote,Object Exit Information,"",Exit note,"",exitNote,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common packingNote,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.packingNote,Object Exit Information,"",Packing note,"",packingNote,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common displosalNewObjectNumber,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNewObjectNumber,Deaccession and Disposal Information,"",Disposal new object number,"",displosalNewObjectNumber,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common deaccessionAuthorizer,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionAuthorizer,Deaccession and Disposal Information,"",Deaccession authorizer,"",deaccessionAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 objectexit ns2:objectexit_common authorizationDate,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.authorizationDate,Deaccession and Disposal Information,"",Authorization date,"",authorizationDate,date,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common deaccessionApprovalGroup,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalGroup,Deaccession and Disposal Information,Deaccession approval,Deaccession approval group,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +core_7-1-0 objectexit ns2:objectexit_common deaccessionApprovalIndividual,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalIndividual,Deaccession and Disposal Information,Deaccession approval,Deaccession approval individual,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalIndividual,string,n,n,y,authority: person/local,"" +core_7-1-0 objectexit ns2:objectexit_common deaccessionApprovalStatus,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalStatus,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +core_7-1-0 objectexit ns2:objectexit_common deaccessionApprovalDate,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalDate,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status date,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalDate,date,n,n,y,"","" +core_7-1-0 objectexit ns2:objectexit_common deaccessionApprovalNote,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalNote,Deaccession and Disposal Information,Deaccession approval,Deaccession approval note,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalNote,string,n,n,y,"","" +core_7-1-0 objectexit ns2:objectexit_common deaccessionDate,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionDate,Deaccession and Disposal Information,"",Deaccession date,"",deaccessionDate,date,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common disposalDate,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalDate,Deaccession and Disposal Information,"",Disposal date,"",disposalDate,date,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common disposalMethod,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalMethod,Deaccession and Disposal Information,"",Disposal method,"",disposalMethod,string,n,n,n/a,vocabulary: disposalmethod,"" +core_7-1-0 objectexit ns2:objectexit_common displosalReason,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalReason,Deaccession and Disposal Information,"",Disposal reason,"",displosalReason,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common disposalProposedRecipient,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalProposedRecipient,Deaccession and Disposal Information,"",Disposal proposed recipient,"",disposalProposedRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 objectexit ns2:objectexit_common disposalRecipient,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalRecipient,Deaccession and Disposal Information,"",Disposal recipient,"",disposalRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 objectexit ns2:objectexit_common disposalCurrency,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalCurrency,Deaccession and Disposal Information,Disposal,Disposal currency,"",disposalCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 objectexit ns2:objectexit_common displosalValue,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalValue,Deaccession and Disposal Information,Disposal,Disposal value,"",displosalValue,float,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common groupDisposalCurrency,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisposalCurrency,Deaccession and Disposal Information,Group disposal,Group disposal currency,"",groupDisposalCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 objectexit ns2:objectexit_common groupDisplosalValue,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisplosalValue,Deaccession and Disposal Information,Group disposal,Group disposal value,"",groupDisplosalValue,float,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common displosalProvisos,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalProvisos,Deaccession and Disposal Information,"",Disposal provisos,"",displosalProvisos,string,n,n,n/a,"","" +core_7-1-0 objectexit ns2:objectexit_common displosalNote,core_7-1-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNote,Deaccession and Disposal Information,"",Disposal note,"",displosalNote,string,n,n,n/a,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateNote,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +core_7-1-0 organization ns2:organizations_common termDisplayName,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termDisplayName,Organization Information,Term,Term display name,orgTermGroupList > orgTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 organization ns2:organizations_common termName,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termName,Organization Information,Term,Term name,orgTermGroupList > orgTermGroup,termName,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common termQualifier,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termQualifier,Organization Information,Term,Term qualifier,orgTermGroupList > orgTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common termStatus,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termStatus,Organization Information,Term,Term status,orgTermGroupList > orgTermGroup,termStatus,string,n,n,y,option list: orgTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 organization ns2:organizations_common termType,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termType,Organization Information,Term,Term type,orgTermGroupList > orgTermGroup,termType,string,n,n,y,option list: orgTermTypes,"alternate descriptor, descriptor, used for term" +core_7-1-0 organization ns2:organizations_common termFlag,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termFlag,Organization Information,Term,Term flag,orgTermGroupList > orgTermGroup,termFlag,string,n,n,y,vocabulary: orgtermflag,"" +core_7-1-0 organization ns2:organizations_common termLanguage,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termLanguage,Organization Information,Term,Term language,orgTermGroupList > orgTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 organization ns2:organizations_common termPrefForLang,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termPrefForLang,Organization Information,Term,Term preferred for lang,orgTermGroupList > orgTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common mainBodyName,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.mainBodyName,Organization Information,Term > Name detail,Term main body name,orgTermGroupList > orgTermGroup,mainBodyName,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common additionsToName,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.additionsToName,Organization Information,Term > Name detail,Term name addition,orgTermGroupList > orgTermGroup,additionsToName,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common termSource,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSource,Organization Information,Term > Source,Term source name,orgTermGroupList > orgTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 organization ns2:organizations_common termSourceDetail,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceDetail,Organization Information,Term > Source,Term source detail,orgTermGroupList > orgTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common termSourceID,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceID,Organization Information,Term > Source,Term source ID,orgTermGroupList > orgTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common termSourceNote,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceNote,Organization Information,Term > Source,Term source note,orgTermGroupList > orgTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 organization ns2:organizations_common organizationRecordType,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.organizationRecordType,Organization Information,"",Organization type,organizationRecordTypes,organizationRecordType,string,n,y,n,vocabulary: organizationtype,"" +core_7-1-0 organization ns2:organizations_common foundingPlace,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingPlace,Organization Information,"",Foundation place,"",foundingPlace,string,n,n,n/a,"","" +core_7-1-0 organization ns2:organizations_common group,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.group,Organization Information,"",Group,groups,group,string,n,y,n,"","" +core_7-1-0 organization ns2:organizations_common function,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.function,Organization Information,"",Function,functions,function,string,n,y,n,"","" +core_7-1-0 organization ns2:organizations_common historyNote,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.historyNote,Organization Information,"",History,historyNotes,historyNote,string,n,y,n,"","" +core_7-1-0 organization ns2:organizations_common contactName,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactName,Organization Information,Contact person,Contact name,contactGroupList > contactGroup,contactName,string,n,n,y,authority: person/local,"" +core_7-1-0 organization ns2:organizations_common contactRole,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactRole,Organization Information,Contact person,Contact role,contactGroupList > contactGroup,contactRole,string,n,n,y,vocabulary: contactrole,"" +core_7-1-0 organization ns2:organizations_common contactStatus,core_7-1-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactStatus,Organization Information,Contact person,Contact status,contactGroupList > contactGroup,contactStatus,string,n,n,y,vocabulary: contactstatus,"" +core_7-1-0 organization ns2:contacts_common email,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common emailType,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal" +core_7-1-0 organization ns2:contacts_common telephoneNumber,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common telephoneNumberType,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other" +core_7-1-0 organization ns2:contacts_common faxNumber,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common faxNumberType,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other" +core_7-1-0 organization ns2:contacts_common webAddress,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common webAddressType,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal" +core_7-1-0 organization ns2:contacts_common addressPlace1,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common addressPlace2,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common addressMunicipality,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common addressStateOrProvince,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common addressPostCode,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","" +core_7-1-0 organization ns2:contacts_common addressCountry,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +core_7-1-0 organization ns2:contacts_common addressType,core_7-1-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +core_7-1-0 person ns2:persons_common termDisplayName,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termDisplayName,Person Information,Term,Term display name,personTermGroupList > personTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 person ns2:persons_common termName,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termName,Person Information,Term,Term name,personTermGroupList > personTermGroup,termName,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common termQualifier,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termQualifier,Person Information,Term,Term qualifier,personTermGroupList > personTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common termStatus,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termStatus,Person Information,Term,Term status,personTermGroupList > personTermGroup,termStatus,string,n,n,y,option list: personTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 person ns2:persons_common termType,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termType,Person Information,Term,Term type,personTermGroupList > personTermGroup,termType,string,n,n,y,vocabulary: persontermtype,"" +core_7-1-0 person ns2:persons_common termFlag,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termFlag,Person Information,Term,Term flag,personTermGroupList > personTermGroup,termFlag,string,n,n,y,vocabulary: persontermflag,"" +core_7-1-0 person ns2:persons_common termLanguage,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termLanguage,Person Information,Term,Term language,personTermGroupList > personTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 person ns2:persons_common termPrefForLang,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termPrefForLang,Person Information,Term,Term preferred for lang,personTermGroupList > personTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common salutation,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.salutation,Person Information,Term > Name detail,Term salutation,personTermGroupList > personTermGroup,salutation,string,n,n,y,option list: salutations,"dear, hello, to" +core_7-1-0 person ns2:persons_common title,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.title,Person Information,Term > Name detail,Term title,personTermGroupList > personTermGroup,title,string,n,n,y,option list: personTitles,"Admiral, Baron, Baroness, Captain, Commander, Commodore, Count, Countess, Dame, Dr, General, Governor, Honorable, Judge, King, Lady, Lord, Miss, Mr, Mrs, Ms, Prince, Princess, Professor, Queen, Reverend, Saint, Sir" +core_7-1-0 person ns2:persons_common foreName,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.foreName,Person Information,Term > Name detail,Term forename,personTermGroupList > personTermGroup,foreName,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common middleName,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.middleName,Person Information,Term > Name detail,Term middle name,personTermGroupList > personTermGroup,middleName,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common surName,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.surName,Person Information,Term > Name detail,Term surname,personTermGroupList > personTermGroup,surName,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common nameAdditions,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.nameAdditions,Person Information,Term > Name detail,Term name addition,personTermGroupList > personTermGroup,nameAdditions,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common initials,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.initials,Person Information,Term > Name detail,Term initials,personTermGroupList > personTermGroup,initials,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common termSource,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSource,Person Information,Term > Source,Term source name,personTermGroupList > personTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 person ns2:persons_common termSourceDetail,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceDetail,Person Information,Term > Source,Term source detail,personTermGroupList > personTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common termSourceID,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceID,Person Information,Term > Source,Term source ID,personTermGroupList > personTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common termSourceNote,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceNote,Person Information,Term > Source,Term source note,personTermGroupList > personTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 person ns2:persons_common gender,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.gender,Person Information,"",Gender,"",gender,string,n,n,n/a,option list: genders,"agender, bigender, dyadic, female, feminine, gender-fluid, gender-neutral, gender-non-binary, genderqueer, intersex, male, masculine, pansexual, polygender, questioning, transgender, transsexual, two-spirit" +core_7-1-0 person ns2:persons_common occupation,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.occupation,Person Information,"",Occupation,occupations,occupation,string,n,y,n,"","" +core_7-1-0 person ns2:persons_common schoolOrStyle,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.schoolOrStyle,Person Information,"",School/style,schoolsOrStyles,schoolOrStyle,string,n,y,n,"","" +core_7-1-0 person ns2:persons_common group,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.group,Person Information,"",Group,groups,group,string,n,y,n,"","" +core_7-1-0 person ns2:persons_common nationality,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.nationality,Person Information,"",Nationality,nationalities,nationality,string,n,y,n,"","" +core_7-1-0 person ns2:persons_common nameNote,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.nameNote,Person Information,"",Name note,"",nameNote,string,n,n,n/a,"","" +core_7-1-0 person ns2:persons_common birthPlace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.birthPlace,Person Information,"",Place of birth,"",birthPlace,string,n,n,n/a,"","" +core_7-1-0 person ns2:persons_common deathPlace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.deathPlace,Person Information,"",Place of death,"",deathPlace,string,n,n,n/a,"","" +core_7-1-0 person ns2:persons_common bioNote,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.bioNote,Person Information,"",Biographical note,"",bioNote,string,n,n,n/a,"","" +core_7-1-0 person ns2:contacts_common email,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common emailType,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal" +core_7-1-0 person ns2:contacts_common telephoneNumber,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common telephoneNumberType,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other" +core_7-1-0 person ns2:contacts_common faxNumber,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common faxNumberType,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other" +core_7-1-0 person ns2:contacts_common webAddress,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common webAddressType,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal" +core_7-1-0 person ns2:contacts_common addressPlace1,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common addressPlace2,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common addressMunicipality,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common addressStateOrProvince,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common addressPostCode,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","" +core_7-1-0 person ns2:contacts_common addressCountry,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +core_7-1-0 person ns2:contacts_common addressType,core_7-1-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other" +core_7-1-0 person ns2:persons_common declinedToAnswerPronoun,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied declined to answer,pronounGroupList > pronounGroup,declinedToAnswerPronoun,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedPronoun,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied,pronounGroupList > pronounGroup > suppliedPronouns,suppliedPronoun,string,n,y,as part of larger repeating group,vocabulary: suppliedpronoun,"" +core_7-1-0 person ns2:persons_common useRestrictionPronoun,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied use restriction,pronounGroupList > pronounGroup,useRestrictionPronoun,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerGender,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerGender,Maker-Supplied Identity Information,Gender,Gender supplied declined to answer,genderGroupList > genderGroup,declinedToAnswerGender,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedGender,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedGender,Maker-Supplied Identity Information,Gender,Gender supplied,genderGroupList > genderGroup > suppliedGenders,suppliedGender,string,n,y,as part of larger repeating group,vocabulary: suppliedgender,"" +core_7-1-0 person ns2:persons_common useRestrictionGender,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionGender,Maker-Supplied Identity Information,Gender,Gender supplied use restriction,genderGroupList > genderGroup,useRestrictionGender,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerRace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerRace,Maker-Supplied Identity Information,Race,Race supplied declined to answer,raceGroupList > raceGroup,declinedToAnswerRace,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedRace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedRace,Maker-Supplied Identity Information,Race,Race supplied,raceGroupList > raceGroup > suppliedRaces,suppliedRace,string,n,y,as part of larger repeating group,vocabulary: suppliedrace,"" +core_7-1-0 person ns2:persons_common useRestrictionRace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionRace,Maker-Supplied Identity Information,Race,Race supplied use restriction,raceGroupList > raceGroup,useRestrictionRace,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerEthnicity,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied declined to answer,ethnicityGroupList > ethnicityGroup,declinedToAnswerEthnicity,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedEthnicity,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied,ethnicityGroupList > ethnicityGroup > suppliedEthnicities,suppliedEthnicity,string,n,y,as part of larger repeating group,vocabulary: suppliedethnicity,"" +core_7-1-0 person ns2:persons_common useRestrictionEthnicity,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied use restriction,ethnicityGroupList > ethnicityGroup,useRestrictionEthnicity,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerSexuality,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied declined to answer,sexualityGroupList > sexualityGroup,declinedToAnswerSexuality,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedSexuality,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied,sexualityGroupList > sexualityGroup > suppliedSexualities,suppliedSexuality,string,n,y,as part of larger repeating group,vocabulary: suppliedsexuality,"" +core_7-1-0 person ns2:persons_common useRestrictionSexuality,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied use restriction,sexualityGroupList > sexualityGroup,useRestrictionSexuality,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerBirthPlace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied declined to answer,birthPlaceGroupList > birthPlaceGroup,declinedToAnswerBirthPlace,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common suppliedBirthPlace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied,birthPlaceGroupList > birthPlaceGroup,suppliedBirthPlace,string,n,n,y,authority: place/local,"" +core_7-1-0 person ns2:persons_common useRestrictionBirthPlace,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied use restriction,birthPlaceGroupList > birthPlaceGroup,useRestrictionBirthPlace,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common declinedToAnswerBirthDate,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied declined to answer,suppliedBirthDateGroupList > suppliedBirthDateGroup,declinedToAnswerBirthDate,boolean,n,n,y,"","" +core_7-1-0 person ns2:persons_common useRestrictionBirthDate,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied use restriction,suppliedBirthDateGroupList > suppliedBirthDateGroup,useRestrictionBirthDate,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common informationAuthor,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationAuthor,Maker-Supplied Identity Information,Other information,Other information author,otherGroupList > otherGroup,informationAuthor,string,n,n,y,authority: person/local,"" +core_7-1-0 person ns2:persons_common informationDate,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationDate,Maker-Supplied Identity Information,Other information,Other information date,otherGroupList > otherGroup,informationDate,date,n,n,y,"","" +core_7-1-0 person ns2:persons_common informationUseRestriction,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationUseRestriction,Maker-Supplied Identity Information,Other information,Other information use restriction,otherGroupList > otherGroup,informationUseRestriction,string,n,n,y,vocabulary: userestriction,"" +core_7-1-0 person ns2:persons_common otherInformation,core_7-1-0,person,ns2:persons_common,ns2:persons_common,persons_common.otherInformation,Maker-Supplied Identity Information,Other information,Other information note,otherGroupList > otherGroup,otherInformation,string,n,n,y,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Person Information,persons_common.birthDateGroup,"",birthDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Person Information,persons_common.birthDateGroup,"",birthDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateDisplayDate,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Person Information,persons_common.deathDateGroup,"",deathDateGroup,datePeriod,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateAssociation,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateNote,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestYear,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestDay,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Person Information,persons_common.deathDateGroup,"",deathDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +core_7-1-0 place ns2:places_common termDisplayName,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termDisplayName,Place Information,Term,Term display name,placeTermGroupList > placeTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 place ns2:places_common termName,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termName,Place Information,Term,Term name,placeTermGroupList > placeTermGroup,termName,string,n,n,y,"","" +core_7-1-0 place ns2:places_common termQualifier,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termQualifier,Place Information,Term,Term qualifier,placeTermGroupList > placeTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 place ns2:places_common termStatus,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termStatus,Place Information,Term,Term status,placeTermGroupList > placeTermGroup,termStatus,string,n,n,y,option list: placeTermStatuses,"accepted, provisional, rejected, under review" +core_7-1-0 place ns2:places_common termType,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termType,Place Information,Term,Term type,placeTermGroupList > placeTermGroup,termType,string,n,n,y,option list: placeTermTypes,"common, descriptive, local, native, non-native, spelling-variant, technical-scientific" +core_7-1-0 place ns2:places_common termFlag,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termFlag,Place Information,Term,Term flag,placeTermGroupList > placeTermGroup,termFlag,string,n,n,y,vocabulary: placetermflag,"" +core_7-1-0 place ns2:places_common historicalStatus,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.historicalStatus,Place Information,Term,Term historical status,placeTermGroupList > placeTermGroup,historicalStatus,string,n,n,y,option list: placeHistoricalStatuses,"both, current, historical" +core_7-1-0 place ns2:places_common termLanguage,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termLanguage,Place Information,Term,Term language,placeTermGroupList > placeTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 place ns2:places_common termPrefForLang,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termPrefForLang,Place Information,Term,Term preferred for lang,placeTermGroupList > placeTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 place ns2:places_common nameAbbrev,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.nameAbbrev,Place Information,Term,Term abbreviation,placeTermGroupList > placeTermGroup,nameAbbrev,string,n,n,y,"","" +core_7-1-0 place ns2:places_common nameNote,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.nameNote,Place Information,Term,Term note,placeTermGroupList > placeTermGroup,nameNote,string,n,n,y,"","" +core_7-1-0 place ns2:places_common termSource,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termSource,Place Information,Term > Source,Term source name,placeTermGroupList > placeTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 place ns2:places_common termSourceDetail,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termSourceDetail,Place Information,Term > Source,Term source detail,placeTermGroupList > placeTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 place ns2:places_common termSourceID,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termSourceID,Place Information,Term > Source,Term source ID,placeTermGroupList > placeTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 place ns2:places_common termSourceNote,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.termSourceNote,Place Information,Term > Source,Term source note,placeTermGroupList > placeTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 place ns2:places_common placeType,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.placeType,Place Information,"",Place type,"",placeType,string,n,n,n/a,option list: placeTypes,"autonomous-region, borough, city, collection-site, continent, country, country-code, county, dependent-state, deserted-settlement, district-national, general-region, governorate, inhabited-place, island, island-group, localilty, metropolitan-area, municipality, nation, national-division, neighborhood, occupied-territory, prefecture, province, region, state, state-province, territory, township, union-territory, unitary-authority, urban-prefecture, water-body" +core_7-1-0 place ns2:places_common placeSource,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.placeSource,Place Information,"",Place source,"",placeSource,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common owner,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.owner,Place Information,Ownership,Owner,placeOwnerGroupList > placeOwnerGroup,owner,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 place ns2:places_common ownershipNote,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.ownershipNote,Place Information,Ownership,Ownership note,placeOwnerGroupList > placeOwnerGroup,ownershipNote,string,n,n,y,"","" +core_7-1-0 place ns2:places_common placeNote,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.placeNote,Place Information,"",Place note,"",placeNote,string,n,n,n/a,"","" +core_7-1-0 place ext.address addressPlace1,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressPlace1,Place Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","" +core_7-1-0 place ext.address addressPlace2,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressPlace2,Place Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","" +core_7-1-0 place ext.address addressMunicipality,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressMunicipality,Place Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 place ext.address addressStateOrProvince,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressStateOrProvince,Place Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 place ext.address addressPostCode,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressPostCode,Place Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","" +core_7-1-0 place ext.address addressCountry,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressCountry,Place Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 place ext.address addressType,core_7-1-0,place,ns2:places_common,ext.address,ext.address.addressType,Place Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"" +core_7-1-0 place ns2:places_common vCoordinates,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vCoordinates,Locality Information,"",Verbatim coords,"",vCoordinates,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vLatitude,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vLatitude,Locality Information,"",Verbatim latitude,"",vLatitude,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vLongitude,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vLongitude,Locality Information,"",Verbatim longitude,"",vLongitude,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vCoordSys,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSys,Locality Information,"",Coordinate system,"",vCoordSys,string,n,n,n/a,option list: coordinateSystems,"altitude-depth, latitude-longitude, national-grid-reference, utm" +core_7-1-0 place ns2:places_common vSpatialReferenceSystem,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vSpatialReferenceSystem,Locality Information,"",Spatial ref system,"",vSpatialReferenceSystem,string,n,n,n/a,option list: spatialRefSystems,"epsg4267-nad27, epsg4269-nad83, epsg4326-wgs84, unknown" +core_7-1-0 place ns2:places_common vElevation,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vElevation,Locality Information,"",Elevation,"",vElevation,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vDepth,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vDepth,Locality Information,"",Depth,"",vDepth,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vDistanceAboveSurface,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vDistanceAboveSurface,Locality Information,"",Distance above surface,"",vDistanceAboveSurface,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vUnitofMeasure,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vUnitofMeasure,Locality Information,"",Unit of measure,"",vUnitofMeasure,string,n,n,n/a,option list: localityUnits,"acres, centimeters, feet, hectares, inches, kilometers, meters, miles, millimeters, square-feet, square-meters, square-yards, stories" +core_7-1-0 place ns2:places_common minElevationInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.minElevationInMeters,Locality Information,"",Min elevation (m),"",minElevationInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common maxElevationInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.maxElevationInMeters,Locality Information,"",Max elevation (m),"",maxElevationInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common minDepthInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.minDepthInMeters,Locality Information,"",Min depth (m),"",minDepthInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common maxDepthInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.maxDepthInMeters,Locality Information,"",Max depth (m),"",maxDepthInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common minDistanceAboveSurfaceInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.minDistanceAboveSurfaceInMeters,Locality Information,"",Min distance above surface (m),"",minDistanceAboveSurfaceInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common maxDistanceAboveSurfaceInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.maxDistanceAboveSurfaceInMeters,Locality Information,"",Max distance above surface (m),"",maxDistanceAboveSurfaceInMeters,float,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vCoordSource,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSource,Locality Information,"",Coordinate source,"",vCoordSource,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common vCoordSourceRefId,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSourceRefId,Locality Information,"",Coordinate source detail,"",vCoordSourceRefId,string,n,n,n/a,"","" +core_7-1-0 place ns2:places_common decimalLatitude,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.decimalLatitude,Georeference Information,Georeference,Georeference decimal latitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLatitude,float,n,n,y,"","" +core_7-1-0 place ns2:places_common decimalLongitude,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.decimalLongitude,Georeference Information,Georeference,Georeference decimal longitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLongitude,float,n,n,y,"","" +core_7-1-0 place ns2:places_common geodeticDatum,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geodeticDatum,Georeference Information,Georeference,Georeference datum,placeGeoRefGroupList > placeGeoRefGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"epsg4267-nad27, epsg4269-nad83, epsg4326-wgs84, unknown" +core_7-1-0 place ns2:places_common coordUncertaintyInMeters,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.coordUncertaintyInMeters,Georeference Information,Georeference,Georeference uncertainty (m),placeGeoRefGroupList > placeGeoRefGroup,coordUncertaintyInMeters,integer,n,n,y,"","" +core_7-1-0 place ns2:places_common coordPrecision,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.coordPrecision,Georeference Information,Georeference,Georeference precision,placeGeoRefGroupList > placeGeoRefGroup,coordPrecision,string,n,n,y,"","" +core_7-1-0 place ns2:places_common pointRadiusSpatialFit,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.pointRadiusSpatialFit,Georeference Information,Georeference,Georeference point radius spatial fit,placeGeoRefGroupList > placeGeoRefGroup,pointRadiusSpatialFit,string,n,n,y,"","" +core_7-1-0 place ns2:places_common footprintWKT,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.footprintWKT,Georeference Information,Georeference,Georeference footprint WKT,placeGeoRefGroupList > placeGeoRefGroup,footprintWKT,string,n,n,y,"","" +core_7-1-0 place ns2:places_common footprintSRS,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.footprintSRS,Georeference Information,Georeference,Georeference footprint SRS,placeGeoRefGroupList > placeGeoRefGroup,footprintSRS,string,n,n,y,"","" +core_7-1-0 place ns2:places_common footprintSpatialFit,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.footprintSpatialFit,Georeference Information,Georeference,Georeference footprint spatial fit,placeGeoRefGroupList > placeGeoRefGroup,footprintSpatialFit,string,n,n,y,"","" +core_7-1-0 place ns2:places_common geoReferencedBy,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoReferencedBy,Georeference Information,Georeference,Georeferenced by,placeGeoRefGroupList > placeGeoRefGroup,geoReferencedBy,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 place ns2:places_common geoRefProtocol,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoRefProtocol,Georeference Information,Georeference,Georeference protocol,placeGeoRefGroupList > placeGeoRefGroup,geoRefProtocol,string,n,n,y,option list: geoRefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines" +core_7-1-0 place ns2:places_common geoRefSource,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoRefSource,Georeference Information,Georeference,Georeference source,placeGeoRefGroupList > placeGeoRefGroup,geoRefSource,string,n,n,y,"","" +core_7-1-0 place ns2:places_common geoRefVerificationStatus,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoRefVerificationStatus,Georeference Information,Georeference,Georeference verification,placeGeoRefGroupList > placeGeoRefGroup,geoRefVerificationStatus,string,n,n,y,option list: geoRefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian" +core_7-1-0 place ns2:places_common geoRefRemarks,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoRefRemarks,Georeference Information,Georeference,Georeference remarks,placeGeoRefGroupList > placeGeoRefGroup,geoRefRemarks,string,n,n,y,"","" +core_7-1-0 place ns2:places_common geoRefPlaceName,core_7-1-0,place,ns2:places_common,ns2:places_common,places_common.geoRefPlaceName,Georeference Information,Georeference,Georeference place name,placeGeoRefGroupList > placeGeoRefGroup,geoRefPlaceName,string,n,n,y,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",core_7-1-0,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +core_7-1-0 transport ns2:transports_common transportReferenceNumber,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportReferenceNumber,Transport Information,"",Transport reference number,"",transportReferenceNumber,string,y,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportMethod,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportMethod,Transport Information,"",Transport method,"",transportMethod,string,n,n,n/a,option list: transportMethodTypes,"LOFO freight, cargo aircraft, combi aircraft, common carrier, exclusive-use truck, expedited use freight, mail, non-commercial carrier, ocean freight, passenger aircraft, shuttle service" +core_7-1-0 transport ns2:transports_common numberOfCrates,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.numberOfCrates,Transport Information,"",Number of crates/objects,"",numberOfCrates,integer,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transporter,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporter,Transport Information,Transporter,Transporter name,"",transporter,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 transport ns2:transports_common transporterContact,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContact,Transport Information,Transporter,Transporter contact,"",transporterContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 transport ns2:transports_common transporterContactNumber,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContactNumber,Transport Information,Transporter,Transporter contact number,"",transporterContactNumber,string,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportAuthorizer,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizer,Transport Information,Authorization,Transport authorizer,"",transportAuthorizer,string,n,n,n/a,authority: person/local,"" +core_7-1-0 transport ns2:transports_common transportAuthorizationDate,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizationDate,Transport Information,Authorization,Authorization date,"",transportAuthorizationDate,date,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportTrackingNumber,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumber,Transport Information,Tracking number,Tracking number,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumber,string,n,n,y,"","" +core_7-1-0 transport ns2:transports_common transportTrackingNumberNote,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumberNote,Transport Information,Tracking number,Tracking number note,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumberNote,string,n,n,y,"","" +core_7-1-0 transport ns2:transports_common departurePoint,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.departurePoint,Transport Information,Departure,Departure point,"",departurePoint,string,n,n,n/a,authority: organization/local; authority: place/local,"" +core_7-1-0 transport ns2:transports_common transportDepartureDate,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureDate,Transport Information,Departure,Departure date,"",transportDepartureDate,date,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportDepartureTime,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureTime,Transport Information,Departure,Departure time,"",transportDepartureTime,string,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common destination,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.destination,Transport Information,Arrival,Arrival point,"",destination,string,n,n,n/a,authority: place/local; authority: organization/local,"" +core_7-1-0 transport ns2:transports_common transportArrivalDate,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalDate,Transport Information,Arrival,Arrival date,"",transportArrivalDate,date,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportArrivalTime,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalTime,Transport Information,Arrival,Arrival time,"",transportArrivalTime,string,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common courier,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.courier,Transport Information,Courier,Courier name,courierGroupList > courierGroup,courier,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 transport ns2:transports_common courierContactNumber,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.courierContactNumber,Transport Information,Courier,Courier contact number,courierGroupList > courierGroup,courierContactNumber,string,n,n,y,"","" +core_7-1-0 transport ns2:transports_common transportRemarks,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportRemarks,Transport Information,"",Note,"",transportRemarks,string,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common transportCostType,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostType,Cost Information,"",Transport cost type,"",transportCostType,string,n,n,n/a,vocabulary: transportcosttype,"" +core_7-1-0 transport ns2:transports_common transportCostResponsibleParty,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostResponsibleParty,Cost Information,"",Transport cost responsible party,"",transportCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"" +core_7-1-0 transport ns2:transports_common insuranceCostResponsibleParty,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.insuranceCostResponsibleParty,Cost Information,"",Insurance/indemnity cost responsible party,"",insuranceCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"" +core_7-1-0 transport ns2:transports_common finalShippingCostCurrency,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostCurrency,Cost Information,Final shipping cost,Final shipping cost currency,"",finalShippingCostCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 transport ns2:transports_common finalShippingCostValue,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostValue,Cost Information,Final shipping cost,Final shipping cost value,"",finalShippingCostValue,float,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common customsBroker,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBroker,Cost Information,Customs broker,Customs broker name,"",customsBroker,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 transport ns2:transports_common customsBrokerContact,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBrokerContact,Cost Information,Customs broker,Customs broker contact,"",customsBrokerContact,string,n,n,n/a,authority: person/local,"" +core_7-1-0 transport ns2:transports_common customsDeclaredValueCurrency,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueCurrency,Cost Information,Declared value for customs,Declared value for customs currency,"",customsDeclaredValueCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 transport ns2:transports_common customsDeclaredValueAmount,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueAmount,Cost Information,Declared value for customs,Declared value for customs amount,"",customsDeclaredValueAmount,float,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common customsFeeCurrency,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeCurrency,Cost Information,Customs fee,Customs fee currency,"",customsFeeCurrency,string,n,n,n/a,vocabulary: currency,"" +core_7-1-0 transport ns2:transports_common customsFeeValue,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeValue,Cost Information,Customs fee,Customs fee value,"",customsFeeValue,float,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common customsFeeNote,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeNote,Cost Information,Customs fee,Customs fee note,"",customsFeeNote,string,n,n,n/a,"","" +core_7-1-0 transport ns2:transports_common additionalCostsType,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsType,Cost Information,Additional cost,Additional cost type,additionalCostsGroupList > additionalCostsGroup,additionalCostsType,string,n,n,y,vocabulary: transportadditionalcosttype,"" +core_7-1-0 transport ns2:transports_common additionalCostsCurrency,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsCurrency,Cost Information,Additional cost,Additional cost currency,additionalCostsGroupList > additionalCostsGroup,additionalCostsCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 transport ns2:transports_common additionalCostsValue,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsValue,Cost Information,Additional cost,Additional cost value,additionalCostsGroupList > additionalCostsGroup,additionalCostsValue,float,n,n,y,"","" +core_7-1-0 transport ns2:transports_common shippingQuoteProvider,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteProvider,Cost Information,"",Shipping quote provider,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteProvider,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 transport ns2:transports_common shippingQuoteCurrency,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteCurrency,Cost Information,"",Shipping quote currency,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 transport ns2:transports_common shippingQuoteValue,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteValue,Cost Information,"",Shipping quote value,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteValue,float,n,n,y,"","" +core_7-1-0 transport ns2:transports_common shippingQuoteDate,core_7-1-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteDate,Cost Information,"",Shipping quote date,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteDate,date,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common referenceNumber,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.referenceNumber,Use of Collections Information,"",Reference number,"",referenceNumber,string,y,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common method,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.method,Use of Collections Information,"",Method,methodList,method,string,n,y,n,vocabulary: uocmethods,"" +core_7-1-0 uoc ns2:uoc_common collectionType,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.collectionType,Use of Collections Information,"",Collection type,collectionTypeList,collectionType,string,n,y,n,vocabulary: uoccollectiontypes,"" +core_7-1-0 uoc ns2:uoc_common projectId,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectId,Use of Collections Information,"",Project ID,"",projectId,string,n,n,n/a,vocabulary: uocprojectid,"" +core_7-1-0 uoc ns2:uoc_common subcollection,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.subcollection,Use of Collections Information,"",Subcollection,"",subcollection,string,n,n,n/a,vocabulary: uocsubcollections,"" +core_7-1-0 uoc ns2:uoc_common materialType,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.materialType,Use of Collections Information,"",Material type,materialTypeList,materialType,string,n,y,n,vocabulary: uocmaterialtypes,"" +core_7-1-0 uoc ns2:uoc_common user,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.user,Use of Collections Information,User,User name,userGroupList > userGroup,user,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 uoc ns2:uoc_common userUocRole,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userUocRole,Use of Collections Information,User,User role,userGroupList > userGroup,userUocRole,string,n,n,y,vocabulary: uocuserroles,"" +core_7-1-0 uoc ns2:uoc_common userInstitution,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitution,Use of Collections Information,User,User institution,userGroupList > userGroup,userInstitution,string,n,n,y,authority: organization/local,"" +core_7-1-0 uoc ns2:uoc_common userInstitutionRole,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitutionRole,Use of Collections Information,User,User institution role,userGroupList > userGroup,userInstitutionRole,string,n,n,y,vocabulary: uocusertypes,"" +core_7-1-0 uoc ns2:uoc_common title,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.title,Use of Collections Information,"",Title,"",title,string,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common dateRequested,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateRequested,Use of Collections Information,"",Date requested,"",dateRequested,date,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common dateCompleted,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateCompleted,Use of Collections Information,"",Date completed,"",dateCompleted,date,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common occasion,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.occasion,Use of Collections Information,"",Occasion,occasionList,occasion,string,n,y,n,authority: concept/occasion,"" +core_7-1-0 uoc ns2:uoc_common projectDescription,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectDescription,Use of Collections Information,"",Project description,"",projectDescription,string,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common authorizedBy,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizedBy,Use of Collections Information,Authorization,Authorized by,authorizationGroupList > authorizationGroup,authorizedBy,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 uoc ns2:uoc_common authorizationDate,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationDate,Use of Collections Information,Authorization,Authorization date,authorizationGroupList > authorizationGroup,authorizationDate,date,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common authorizationStatus,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationStatus,Use of Collections Information,Authorization,Authorization status,authorizationGroupList > authorizationGroup,authorizationStatus,string,n,n,y,vocabulary: uocauthorizationstatuses,"" +core_7-1-0 uoc ns2:uoc_common authorizationNote,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationNote,Use of Collections Information,Authorization,Authorization note,authorizationGroupList > authorizationGroup,authorizationNote,string,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common useDate,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDate,Use of Collections Information,Start/ongoing date,Start/ongoing date,useDateGroupList > useDateGroup,useDate,date,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common useDateTimeNote,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateTimeNote,Use of Collections Information,Start/ongoing date,Start/ongoing date time note,useDateGroupList > useDateGroup,useDateTimeNote,string,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common useDateNumberOfVisitors,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateNumberOfVisitors,Use of Collections Information,Start/ongoing date,Start/ongoing date no. of visitors,useDateGroupList > useDateGroup,useDateNumberOfVisitors,integer,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common useDateHoursSpent,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateHoursSpent,Use of Collections Information,Start/ongoing date,Start/ongoing date hours spent,useDateGroupList > useDateGroup,useDateHoursSpent,float,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common useDateVisitorNote,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateVisitorNote,Use of Collections Information,Start/ongoing date,Start/ongoing date visitor note,useDateGroupList > useDateGroup,useDateVisitorNote,string,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common endDate,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.endDate,Use of Collections Information,"",End date,"",endDate,date,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common staffName,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffName,Use of Collections Information,Staff,Staff name,staffGroupList > staffGroup,staffName,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 uoc ns2:uoc_common staffRole,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffRole,Use of Collections Information,Staff,Staff role,staffGroupList > staffGroup,staffRole,string,n,n,y,vocabulary: uocstaffroles,"" +core_7-1-0 uoc ns2:uoc_common staffHours,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffHours,Use of Collections Information,Staff,Staff hours spent,staffGroupList > staffGroup,staffHours,float,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common staffNote,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffNote,Use of Collections Information,Staff,Staff note,staffGroupList > staffGroup,staffNote,string,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common location,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.location,Use of Collections Information,"",Location,locationList,location,string,n,y,n,authority: organization/local; authority: place/local; authority: location/local,"" +core_7-1-0 uoc ns2:uoc_common feeCurrency,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeCurrency,Use of Collections Information,Fee charged,Fee currency,feeGroupList > feeGroup,feeCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 uoc ns2:uoc_common feeValue,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeValue,Use of Collections Information,Fee charged,Fee value,feeGroupList > feeGroup,feeValue,float,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common feePaid,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feePaid,Use of Collections Information,Fee charged,Fee paid,feeGroupList > feeGroup,feePaid,boolean,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common feeNote,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeNote,Use of Collections Information,Fee charged,Fee note,feeGroupList > feeGroup,feeNote,string,n,n,y,"","" +core_7-1-0 uoc ns2:uoc_common note,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.note,Use of Collections Information,"",Note,"",note,string,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common provisos,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.provisos,Use of Collections Information,"",Provisos,"",provisos,string,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common obligationsFulfilled,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.obligationsFulfilled,Use of Collections Information,"",Obligations fulfilled,"",obligationsFulfilled,boolean,n,n,n/a,"","" +core_7-1-0 uoc ns2:uoc_common result,core_7-1-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.result,Use of Collections Information,"",Result,"",result,string,n,n,n/a,"","" +core_7-1-0 valuation ns2:valuationcontrols_common valuationcontrolRefNumber,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valuationcontrolRefNumber,Object Valuation Information,"",Reference number,"",valuationcontrolRefNumber,string,y,n,n/a,"","" +core_7-1-0 valuation ns2:valuationcontrols_common valueCurrency,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueCurrency,Object Valuation Information,Amount,Amount currency,valueAmountsList > valueAmounts,valueCurrency,string,n,n,y,vocabulary: currency,"" +core_7-1-0 valuation ns2:valuationcontrols_common valueAmount,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueAmount,Object Valuation Information,Amount,Amount value,valueAmountsList > valueAmounts,valueAmount,float,n,n,y,"","" +core_7-1-0 valuation ns2:valuationcontrols_common valueDate,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueDate,Object Valuation Information,"",Date,"",valueDate,date,n,n,n/a,"","" +core_7-1-0 valuation ns2:valuationcontrols_common valueRenewalDate,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueRenewalDate,Object Valuation Information,"",Renewal date,"",valueRenewalDate,date,n,n,n/a,"","" +core_7-1-0 valuation ns2:valuationcontrols_common valueSource,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueSource,Object Valuation Information,"",Source,"",valueSource,string,n,n,n/a,authority: person/local; authority: organization/local,"" +core_7-1-0 valuation ns2:valuationcontrols_common valueType,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueType,Object Valuation Information,"",Type,"",valueType,string,n,n,n/a,option list: valueTypes,"Current Value, Original Value, Replacement Value" +core_7-1-0 valuation ns2:valuationcontrols_common valueNote,core_7-1-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueNote,Object Valuation Information,"",Note,"",valueNote,string,n,n,n/a,"","" +core_7-1-0 work ns2:works_common termDisplayName,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termDisplayName,Work Information,Term,Term display name,workTermGroupList > workTermGroup,termDisplayName,string,y,n,y,"","" +core_7-1-0 work ns2:works_common termName,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termName,Work Information,Term,Term name,workTermGroupList > workTermGroup,termName,string,n,n,y,"","" +core_7-1-0 work ns2:works_common termQualifier,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termQualifier,Work Information,Term,Term qualifier,workTermGroupList > workTermGroup,termQualifier,string,n,n,y,"","" +core_7-1-0 work ns2:works_common termStatus,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termStatus,Work Information,Term,Term status,workTermGroupList > workTermGroup,termStatus,string,n,n,y,option list: workTermStatuses,"complete, inprogress, quickaddedneedsattention" +core_7-1-0 work ns2:works_common termType,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termType,Work Information,Term,Term type,workTermGroupList > workTermGroup,termType,string,n,n,y,"","" +core_7-1-0 work ns2:works_common termFlag,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termFlag,Work Information,Term,Term flag,workTermGroupList > workTermGroup,termFlag,string,n,n,y,vocabulary: worktermflag,"" +core_7-1-0 work ns2:works_common termLanguage,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termLanguage,Work Information,Term,Term language,workTermGroupList > workTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +core_7-1-0 work ns2:works_common termPrefForLang,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termPrefForLang,Work Information,Term,Term preferred for lang,workTermGroupList > workTermGroup,termPrefForLang,boolean,n,n,y,"","" +core_7-1-0 work ns2:works_common termSource,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termSource,Work Information,Term > Source,Term source name,workTermGroupList > workTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +core_7-1-0 work ns2:works_common termSourceDetail,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termSourceDetail,Work Information,Term > Source,Term source detail,workTermGroupList > workTermGroup,termSourceDetail,string,n,n,y,"","" +core_7-1-0 work ns2:works_common termSourceID,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termSourceID,Work Information,Term > Source,Term source ID,workTermGroupList > workTermGroup,termSourceID,string,n,n,y,"","" +core_7-1-0 work ns2:works_common termSourceNote,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.termSourceNote,Work Information,Term > Source,Term source note,workTermGroupList > workTermGroup,termSourceNote,string,n,n,y,"","" +core_7-1-0 work ns2:works_common workType,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.workType,Work Information,"",Work type,"",workType,string,n,n,n/a,vocabulary: worktype,"" +core_7-1-0 work ns2:works_common workHistoryNote,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.workHistoryNote,Work Information,"",History note,"",workHistoryNote,string,n,n,n/a,"","" +core_7-1-0 work ns2:works_common creator,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.creator,Work Information,Creator,Creator name,creatorGroupList > creatorGroup,creator,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 work ns2:works_common creatorType,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.creatorType,Work Information,Creator,Creator type,creatorGroupList > creatorGroup,creatorType,string,n,n,y,vocabulary: workcreatortype,"" +core_7-1-0 work ns2:works_common publisher,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.publisher,Work Information,Publisher,Publisher name,publisherGroupList > publisherGroup,publisher,string,n,n,y,authority: person/local; authority: organization/local,"" +core_7-1-0 work ns2:works_common publisherType,core_7-1-0,work,ns2:works_common,ns2:works_common,works_common.publisherType,Work Information,Publisher,Publisher type,publisherGroupList > publisherGroup,publisherType,string,n,n,y,vocabulary: workpublishertype,"" +core_7-1-0 work ext.address addressPlace1,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressPlace1,Work Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","" +core_7-1-0 work ext.address addressPlace2,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressPlace2,Work Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","" +core_7-1-0 work ext.address addressMunicipality,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressMunicipality,Work Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 work ext.address addressStateOrProvince,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressStateOrProvince,Work Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 work ext.address addressPostCode,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressPostCode,Work Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","" +core_7-1-0 work ext.address addressCountry,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressCountry,Work Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"" +core_7-1-0 work ext.address addressType,core_7-1-0,work,ns2:works_common,ext.address,ext.address.addressType,Work Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateDisplayDate,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.datePeriod,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,datePeriod,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateAssociation,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateAssociation,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateNote,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateNote,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestYear,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestDay,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",core_7-1-0,work,ns2:works_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionReferenceNumber,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReferenceNumber,Acquisition Information,"",Reference number,"",acquisitionReferenceNumber,string,y,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionAuthorizer,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizer,Acquisition Information,Authorization,Authorizer,"",acquisitionAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionAuthorizerDate,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizerDate,Acquisition Information,Authorization,Authorization date,"",acquisitionAuthorizerDate,date,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionMethod,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionMethod,Acquisition Information,"",Acquisition method,"",acquisitionMethod,string,n,n,n/a,option list: acquisitionMethods,"exchange, gift, purchase, transfer, treasure" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionSource,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionSource,Acquisition Information,"",Acquisition source,acquisitionSources,acquisitionSource,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 acquisition ns2:acquisitions_common owner,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.owner,Acquisition Information,"",Owner,owners,owner,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 acquisition ns2:acquisitions_common transferOfTitleNumber,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.transferOfTitleNumber,Acquisition Information,"",Transfer of title number,"",transferOfTitleNumber,string,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common groupPurchasePriceCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceCurrency,Acquisition Information,Price Information > Group purchase price,Group purchase price currency,"",groupPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common groupPurchasePriceValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceValue,Acquisition Information,Price Information > Group purchase price,Group purchase price value,"",groupPurchasePriceValue,float,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common objectOfferPriceCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceCurrency,Acquisition Information,Price Information > Object offer price,Object offer price currency,"",objectOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common objectOfferPriceValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceValue,Acquisition Information,Price Information > Object offer price,Object offer price value,"",objectOfferPriceValue,float,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common objectPurchaseOfferPriceCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceCurrency,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price currency,"",objectPurchaseOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common objectPurchaseOfferPriceValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceValue,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price value,"",objectPurchaseOfferPriceValue,float,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common objectPurchasePriceCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceCurrency,Acquisition Information,Price Information > Object purchase price,Object purchase price currency,"",objectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common objectPurchasePriceValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceValue,Acquisition Information,Price Information > Object purchase price,Object purchase price value,"",objectPurchasePriceValue,float,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common originalObjectPurchasePriceCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceCurrency,Acquisition Information,Price Information > Original object purchase price,Original object purchase price currency,"",originalObjectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common originalObjectPurchasePriceValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceValue,Acquisition Information,Price Information > Original object purchase price,Original object purchase price value,"",originalObjectPurchasePriceValue,float,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionReason,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReason,Acquisition Information,"",Acquisition reason,"",acquisitionReason,string,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common approvalGroup,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalGroup,Acquisition Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +anthro_6-0-5 acquisition ns2:acquisitions_common approvalIndividual,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalIndividual,Acquisition Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"" +anthro_6-0-5 acquisition ns2:acquisitions_common approvalStatus,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalStatus,Acquisition Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +anthro_6-0-5 acquisition ns2:acquisitions_common approvalDate,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalDate,Acquisition Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common approvalNote,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalNote,Acquisition Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionNote,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionNote,Acquisition Information,"",Note,"",acquisitionNote,string,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionProvisos,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionProvisos,Acquisition Information,"",Provisos,"",acquisitionProvisos,string,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionFundingCurrency,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingCurrency,Acquisition Information,Funding,Funding currency,acquisitionFundingList > acquisitionFunding,acquisitionFundingCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionFundingValue,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingValue,Acquisition Information,Funding,Funding value,acquisitionFundingList > acquisitionFunding,acquisitionFundingValue,float,n,n,y,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionFundingSource,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSource,Acquisition Information,Funding,Funding source,acquisitionFundingList > acquisitionFunding,acquisitionFundingSource,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 acquisition ns2:acquisitions_common acquisitionFundingSourceProvisos,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSourceProvisos,Acquisition Information,Funding,Funding source provisos,acquisitionFundingList > acquisitionFunding,acquisitionFundingSourceProvisos,string,n,n,y,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common creditLine,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.creditLine,Acquisition Information,"",Credit line,"",creditLine,string,n,n,n/a,"","" +anthro_6-0-5 acquisition ns2:acquisitions_common fieldCollectionEventName,anthro_6-0-5,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateNote,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Acquisition Information,acquisitions_common.accessionDateGroup,"",accessionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateDisplayDate,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,datePeriod,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateAssociation,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateNote,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateNote,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestYear,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestDay,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,acquisition,ns2:acquisitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Acquisition Information,acquisitions_common.acquisitionDateGroup,"",acquisitionDateGroupList > acquisitionDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termDisplayName,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termDisplayName,Citation Information,Term,Term display name,citationTermGroupList > citationTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termStatus,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termStatus,Citation Information,Term,Term status,citationTermGroupList > citationTermGroup,termStatus,string,n,n,y,option list: citationTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 citation ns2:citations_common termType,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termType,Citation Information,Term,Term type,citationTermGroupList > citationTermGroup,termType,string,n,n,y,vocabulary: citationtermtype,"" +anthro_6-0-5 citation ns2:citations_common termFlag,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termFlag,Citation Information,Term,Term flag,citationTermGroupList > citationTermGroup,termFlag,string,n,n,y,vocabulary: citationtermflag,"" +anthro_6-0-5 citation ns2:citations_common termLanguage,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termLanguage,Citation Information,Term,Term language,citationTermGroupList > citationTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 citation ns2:citations_common termPrefForLang,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termPrefForLang,Citation Information,Term,Term preferred for lang,citationTermGroupList > citationTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termFullCitation,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termFullCitation,Citation Information,Term,Term full citation,citationTermGroupList > citationTermGroup,termFullCitation,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termTitle,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termTitle,Citation Information,Term,Term title,citationTermGroupList > citationTermGroup,termTitle,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termSubTitle,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSubTitle,Citation Information,Term,Term subtitle,citationTermGroupList > citationTermGroup,termSubTitle,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termSectionTitle,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSectionTitle,Citation Information,Term,Term section title,citationTermGroupList > citationTermGroup,termSectionTitle,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termVolume,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termVolume,Citation Information,Term,Term volume,citationTermGroupList > citationTermGroup,termVolume,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termIssue,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termIssue,Citation Information,Term,Term issue,citationTermGroupList > citationTermGroup,termIssue,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termSource,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSource,Citation Information,Term > Source,Term source name,citationTermGroupList > citationTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 citation ns2:citations_common termSourceDetail,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceDetail,Citation Information,Term > Source,Term source detail,citationTermGroupList > citationTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termSourceID,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceID,Citation Information,Term > Source,Term source ID,citationTermGroupList > citationTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common termSourceNote,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceNote,Citation Information,Term > Source,Term source note,citationTermGroupList > citationTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common publisher,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.publisher,Citation Information,Publication,Publisher,citationPublicationInfoGroupList > citationPublicationInfoGroup,publisher,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 citation ns2:citations_common publicationPlace,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationPlace,Citation Information,Publication,Publication place,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationPlace,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 citation ns2:citations_common edition,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.edition,Citation Information,Publication,Publication edition,citationPublicationInfoGroupList > citationPublicationInfoGroup,edition,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common pages,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.pages,Citation Information,Publication,Publication page(s),citationPublicationInfoGroupList > citationPublicationInfoGroup,pages,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common agent,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.agent,Citation Information,Agent,Agent name,citationAgentInfoGroupList > citationAgentInfoGroup,agent,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local,"" +anthro_6-0-5 citation ns2:citations_common role,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.role,Citation Information,Agent,Agent role,citationAgentInfoGroupList > citationAgentInfoGroup,role,string,n,n,y,vocabulary: agentinfotype,"" +anthro_6-0-5 citation ns2:citations_common note,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.note,Citation Information,Agent,Agent note,citationAgentInfoGroupList > citationAgentInfoGroup,note,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common citationNote,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.citationNote,Citation Information,"",Note,"",citationNote,string,n,n,n/a,"","" +anthro_6-0-5 citation ns2:citations_common resourceIdent,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.resourceIdent,Citation Information,Resource identifier,Resource identifier,citationResourceIdentGroupList > citationResourceIdentGroup,resourceIdent,string,n,n,y,"","" +anthro_6-0-5 citation ns2:citations_common type,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.type,Citation Information,Resource identifier,Resource identifier type,citationResourceIdentGroupList > citationResourceIdentGroup,type,string,n,n,y,vocabulary: resourceidtype,"" +anthro_6-0-5 citation ns2:citations_common relatedTerm,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.relatedTerm,Citation Information,Related term,Related term,citationRelatedTermsGroupList > citationRelatedTermsGroup,relatedTerm,string,n,n,y,authority: concept/associated; authority: concept/activity; authority: concept/material,"" +anthro_6-0-5 citation ns2:citations_common relationType,anthro_6-0-5,citation,ns2:citations_common,ns2:citations_common,citations_common.relationType,Citation Information,Related term,Related term type,citationRelatedTermsGroupList > citationRelatedTermsGroup,relationType,string,n,n,y,vocabulary: relationtypetype,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.datePeriod,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateNote,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Citation Information,Publication > citations_common.publicationDate,"",citationPublicationInfoGroupList > citationPublicationInfoGroup > publicationDate,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.datePeriod,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateNote,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,citation,ns2:citations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Citation Information,Resource identifier > citations_common.captureDate,"",citationResourceIdentGroupList > citationResourceIdentGroup > captureDate,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNumber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNumber,Object Identification Information,"",Identification number,"",objectNumber,string,y,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common numberOfObjects,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberOfObjects,Object Identification Information,"",Number of objects,"",numberOfObjects,integer,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common numberValue,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberValue,Object Identification Information,Other number,Other number value,otherNumberList > otherNumber,numberValue,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common numberType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberType,Object Identification Information,Other number,Other number type,otherNumberList > otherNumber,numberType,string,n,n,y,option list: numberTypes,"associated uuid, barcode, lender, obsolete, previous, serial, unknown" +anthro_6-0-5 collectionobject ns2:collectionobjects_common responsibleDepartment,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.responsibleDepartment,Object Identification Information,"",Responsible department,responsibleDepartments,responsibleDepartment,string,n,y,n,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings" +anthro_6-0-5 collectionobject ns2:collectionobjects_common collection,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.collection,Object Identification Information,"",Collection,"",collection,string,n,n,n/a,option list: collections,"library-collection, permanent-collection, study-collection, teaching-collection" +anthro_6-0-5 collectionobject ns2:collectionobjects_common namedCollection,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.namedCollection,Object Identification Information,"",Named collection,namedCollections,namedCollection,string,n,y,n,authority: work/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common recordStatus,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.recordStatus,Object Identification Information,"",Record status,"",recordStatus,string,n,n,n/a,option list: recordStatuses,"approved, in-process, new, temporary" +anthro_6-0-5 collectionobject ns2:collectionobjects_common briefDescription,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.briefDescription,Object Identification Information,"",Brief description,briefDescriptions,briefDescription,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common computedCurrentLocation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.computedCurrentLocation,Object Identification Information,"",Computed current location,"",computedCurrentLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro ethnoFileCode,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ethnoFileCode,Object Identification Information,"",Ethnographic file code,ethnoFileCodes,ethnoFileCode,string,n,y,n,authority: concept/ethfilecode,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common publishTo,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.publishTo,Object Identification Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inventoryStatus,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inventoryStatus,Object Identification Information,"",Inventory status,inventoryStatusList,inventoryStatus,string,n,y,n,vocabulary: inventorystatus,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectName,Object Identification Information,Object name,Object name,objectNameList > objectNameGroup,objectName,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameCurrency,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameCurrency,Object Identification Information,Object name,Object name currency,objectNameList > objectNameGroup,objectNameCurrency,string,n,n,y,option list: nameCurrencies,"current, out of date, unknown" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameLevel,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLevel,Object Identification Information,Object name,Object name level,objectNameList > objectNameGroup,objectNameLevel,string,n,n,y,option list: nameLevels,"group, subgroup" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameSystem,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameSystem,Object Identification Information,Object name,Object name system,objectNameList > objectNameGroup,objectNameSystem,string,n,n,y,option list: nameSystems,"AASLH Nomenclature, Bennyhoff Olivella bead typology, Getty Art & Architecture Thesaurus, Gifford worked bone typology, Gifford worked shell typology, Heizer projectile point typology, Justice projectile point typology, Meighan historic glass bead typology, Treganza clay artifact typology, no system" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameType,Object Identification Information,Object name,Object name type,objectNameList > objectNameGroup,objectNameType,string,n,n,y,option list: nameTypes,"classified, denomination, simple, taxonomic, typological" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameLanguage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLanguage,Object Identification Information,Object name,Object name language,objectNameList > objectNameGroup,objectNameLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectNameNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameNote,Object Identification Information,Object name,Object name note,objectNameList > objectNameGroup,objectNameNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPeople,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeople,Object Identification Information,Associated cultural group,Associated cultural group,assocPeopleGroupList > assocPeopleGroup,assocPeople,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPeopleType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleType,Object Identification Information,Associated cultural group,Associated cultural group type of assoc.,assocPeopleGroupList > assocPeopleGroup,assocPeopleType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPeopleNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleNote,Object Identification Information,Associated cultural group,Associated cultural group note,assocPeopleGroupList > assocPeopleGroup,assocPeopleNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common comment,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.comment,Object Identification Information,"",Comment,comments,comment,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_annotation annotationType,anthro_6-0-5,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationType,Object Identification Information,Annotation,Annotation type,annotationGroupList > annotationGroup,annotationType,string,n,n,y,vocabulary: annotationtype,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_annotation annotationNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationNote,Object Identification Information,Annotation,Annotation note,annotationGroupList > annotationGroup,annotationNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_annotation annotationDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationDate,Object Identification Information,Annotation,Annotation date,annotationGroupList > annotationGroup,annotationDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_annotation annotationAuthor,anthro_6-0-5,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationAuthor,Object Identification Information,Annotation,Annotation author,annotationGroupList > annotationGroup,annotationAuthor,string,n,n,y,authority: person/local,"" +anthro_6-0-5 collectionobject ext.dimension measuredPart,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPart,Object Identification Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed" +anthro_6-0-5 collectionobject ext.dimension dimensionSummary,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimensionSummary,Object Identification Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.dimension dimension,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimension,Object Identification Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width" +anthro_6-0-5 collectionobject ext.dimension measuredBy,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredBy,Object Identification Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ext.dimension measurementMethod,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementMethod,Object Identification Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station" +anthro_6-0-5 collectionobject ext.dimension value,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.value,Object Identification Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.dimension measurementUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementUnit,Object Identification Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons" +anthro_6-0-5 collectionobject ext.dimension valueQualifier,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueQualifier,Object Identification Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.dimension valueDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueDate,Object Identification Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ext.dimension measuredPartNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPartNote,Object Identification Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common material,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.material,Object Identification Information,Material,Material,materialGroupList > materialGroup,material,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common materialComponent,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponent,Object Identification Information,Material,Material component,materialGroupList > materialGroup,materialComponent,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common materialComponentNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponentNote,Object Identification Information,Material,Material component note,materialGroupList > materialGroup,materialComponentNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common materialName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialName,Object Identification Information,Material,Material name,materialGroupList > materialGroup,materialName,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common materialSource,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialSource,Object Identification Information,Material,Material source,materialGroupList > materialGroup,materialSource,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common title,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.title,Object Identification Information,Title,Title,titleGroupList > titleGroup,title,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common titleLanguage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleLanguage,Object Identification Information,Title,Title language,titleGroupList > titleGroup,titleLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common titleType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleType,Object Identification Information,Title,Title type,titleGroupList > titleGroup,titleType,string,n,n,y,option list: titleTypes,"assigned-by-artist, collection, generic, popular, series, trade" +anthro_6-0-5 collectionobject ns2:collectionobjects_common titleTranslation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslation,Object Identification Information,Title > Title translation,Title translation,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common titleTranslationLanguage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslationLanguage,Object Identification Information,Title > Title translation,Title translation language,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslationLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common usage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usage,Object Identification Information,Context of use,Usage,usageGroupList > usageGroup,usage,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common usageNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usageNote,Object Identification Information,Context of use,Usage note,usageGroupList > usageGroup,usageNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionMethod,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro fieldLocVerbatim,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.fieldLocVerbatim,Object Collection Information,"",Field collection place (verbatim),"",fieldLocVerbatim,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionSource,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollector,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionNumber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldColEventName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldColEventName,Object Collection Information,"",Field collection event name,fieldColEventNames,fieldColEventName,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionFeature,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionFeature,Object Collection Information,"",Field collection feature,"",fieldCollectionFeature,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common fieldCollectionNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common technique,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technique,Object Production Information,Production technique,Production technique,techniqueGroupList > techniqueGroup,technique,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common techniqueType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.techniqueType,Object Production Information,Production technique,Production technique type,techniqueGroupList > techniqueGroup,techniqueType,string,n,n,y,vocabulary: prodtechniquetype,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlace,Object Production Information,Production place,Production place,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlace,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPlaceRole,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlaceRole,Object Production Information,Production place,Production place role,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlaceRole,string,n,n,y,vocabulary: prodplacerole,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionReason,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionReason,Object Production Information,"",Production reason,objectProductionReasons,objectProductionReason,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPeople,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeople,Object Production Information,Production cultural group,Production cultural group,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeople,string,n,n,y,authority: concept/archculture; authority: concept/ethculture,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPeopleRole,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeopleRole,Object Production Information,Production cultural group,Production cultural group role,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeopleRole,string,n,n,y,vocabulary: prodpeoplerole,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPerson,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPerson,Object Production Information,Production person,Production person,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPerson,string,n,n,y,authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionPersonRole,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPersonRole,Object Production Information,Production person,Production person role,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPersonRole,string,n,n,y,vocabulary: prodpersonrole,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionOrganization,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganization,Object Production Information,Production organization,Production organization,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganization,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionOrganizationRole,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganizationRole,Object Production Information,Production organization,Production organization role,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganizationRole,string,n,n,y,vocabulary: prodorgrole,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectProductionNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionNote,Object Production Information,"",Production note,"",objectProductionNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraInventoryName,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraInventoryName,Repatriation and NAGPRA Compliance Information,"",NAGPRA inventory,nagpraInventoryNames,nagpraInventoryName,string,n,y,n,vocabulary: nagprainventory,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraCategory,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCategory,Repatriation and NAGPRA Compliance Information,"",Museum NAGPRA category determination,nagpraCategories,nagpraCategory,string,n,y,n,vocabulary: nagpracategory,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra graveAssocCode,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.graveAssocCode,Repatriation and NAGPRA Compliance Information,"",Grave association code,graveAssocCodes,graveAssocCode,string,n,y,n,vocabulary: graveassoccode,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra repatriationNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.repatriationNote,Repatriation and NAGPRA Compliance Information,"",Repatriation note,repatriationNotes,repatriationNote,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraCulturalDetermination,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCulturalDetermination,Repatriation and NAGPRA Compliance Information,"",NAGPRA cultural determination,nagpraCulturalDeterminations,nagpraCulturalDetermination,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraDetermCulture,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermCulture,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination culture,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermCulture,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraDetermType,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermType,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination type,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermType,string,n,n,y,vocabulary: nagpradetermtype,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraDetermBy,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermBy,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination by,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraDetermNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermNote,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination note,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraReportFiled,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiled,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiled,boolean,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledWith,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledWith,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed with,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledWith,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledBy,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledBy,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed by,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledNote,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,Reporting note,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare culturalCareNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.culturalCareNote,Cultural Care Information,"",Cultural care note,culturalCareNotes,culturalCareNote,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare limitationType,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationType,Cultural Care Information,Access limitation,Access limitation type,accessLimitationsGroupList > accessLimitationsGroup,limitationType,string,n,n,y,vocabulary: limitationtype,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare limitationLevel,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationLevel,Cultural Care Information,Access limitation,Access limitation level,accessLimitationsGroupList > accessLimitationsGroup,limitationLevel,string,n,n,y,vocabulary: limitationlevel,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare limitationDetails,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationDetails,Cultural Care Information,Access limitation,Access limitation detail,accessLimitationsGroupList > accessLimitationsGroup,limitationDetails,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare requester,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requester,Cultural Care Information,Access limitation,Access limitation requestor,accessLimitationsGroupList > accessLimitationsGroup,requester,string,n,n,y,authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare requestOnBehalfOf,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestOnBehalfOf,Cultural Care Information,Access limitation,Access limitation requested on behalf of,accessLimitationsGroupList > accessLimitationsGroup,requestOnBehalfOf,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_culturalcare requestDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestDate,Cultural Care Information,Access limitation,Access limitation request date,accessLimitationsGroupList > accessLimitationsGroup,requestDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common form,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.form,Object Description Information,"",Form,forms,form,string,n,y,n,option list: forms,"bagged, bottled, boxed, dry, ground, in can or tin, in drum, mounted, pinned, thin section, unknown, wet, wrapped" +anthro_6-0-5 collectionobject ns2:collectionobjects_common copyNumber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.copyNumber,Object Description Information,"",Copy number,"",copyNumber,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common editionNumber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.editionNumber,Object Description Information,"",Edition number,"",editionNumber,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common style,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.style,Object Description Information,"",Style,styles,style,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common color,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.color,Object Description Information,"",Color,colors,color,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common physicalDescription,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.physicalDescription,Object Description Information,"",Physical description,"",physicalDescription,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common distinguishingFeatures,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distinguishingFeatures,Object Description Information,"",Distinguishing features,"",distinguishingFeatures,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectComponentName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentName,Object Description Information,Object component,Object component name,objectComponentGroupList > objectComponentGroup,objectComponentName,string,n,n,y,option list: objectComponentNames,"blade, buttonhole, handle, sleeve" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectComponentInformation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentInformation,Object Description Information,Object component,Object component information,objectComponentGroupList > objectComponentGroup,objectComponentInformation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common sex,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.sex,Object Description Information,Biological Information,Sex,"",sex,string,n,n,n/a,option list: sexes,"female, male" +anthro_6-0-5 collectionobject ns2:collectionobjects_common phase,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.phase,Object Description Information,Biological Information,Phase,"",phase,string,n,n,n/a,option list: phases,"adult/mature, egg, indeterminate, larva, multiple, seed, subadult/immature, unknown" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ageQualifier,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageQualifier,Object Description Information,Biological Information > Age,Age qualifier,"",ageQualifier,string,n,n,n/a,vocabulary: agequalifier,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common age,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.age,Object Description Information,Biological Information > Age,Age value,"",age,integer,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ageUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageUnit,Object Description Information,Biological Information > Age,Age unit,"",ageUnit,string,n,n,n/a,option list: ageUnits,"days, months, weeks, years" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension taxon,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.taxon,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification scientific name,taxonomicIdentGroupList > taxonomicIdentGroup,taxon,string,n,n,y,authority: taxon/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension qualifier,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.qualifier,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification qualifier,taxonomicIdentGroupList > taxonomicIdentGroup,qualifier,string,n,n,y,vocabulary: taxonqualifier,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension identBy,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identBy,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification by,taxonomicIdentGroupList > taxonomicIdentGroup,identBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension institution,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.institution,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification institution,taxonomicIdentGroupList > taxonomicIdentGroup,institution,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension identKind,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identKind,Object Description Information,Biological Information > Determination history,Taxonomic identification kind,taxonomicIdentGroupList > taxonomicIdentGroup,identKind,string,n,n,y,vocabulary: taxonkind,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension reference,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.reference,Object Description Information,Biological Information > Determination history > Reference > Bibliographic Reference Information,Taxonomic identification reference source,taxonomicIdentGroupList > taxonomicIdentGroup,reference,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension refPage,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.refPage,Object Description Information,Biological Information > Determination history > Reference,Taxonomic identification reference page,taxonomicIdentGroupList > taxonomicIdentGroup,refPage,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_naturalhistory_extension notes,anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.notes,Object Description Information,Biological Information > Determination history,Taxonomic identification note,taxonomicIdentGroupList > taxonomicIdentGroup,notes,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro minIndividuals,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.minIndividuals,Object Description Information,Commingled Remains > Commingled remains,Commingled remains min. number of individuals,commingledRemainsGroupList > commingledRemainsGroup,minIndividuals,integer,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro bone,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.bone,Object Description Information,Commingled Remains > Commingled remains,Commingled remains bone,commingledRemainsGroupList > commingledRemainsGroup,bone,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro side,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.side,Object Description Information,Commingled Remains > Commingled remains,Commingled remains side,commingledRemainsGroupList > commingledRemainsGroup,side,string,n,n,y,vocabulary: bodyside,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro count,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.count,Object Description Information,Commingled Remains > Commingled remains,Commingled remains count,commingledRemainsGroupList > commingledRemainsGroup,count,integer,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro dentition,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.dentition,Object Description Information,Commingled Remains > Commingled remains,Commingled remains dentition present?,commingledRemainsGroupList > commingledRemainsGroup,dentition,boolean,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro sex,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.sex,Object Description Information,Commingled Remains > Commingled remains,Commingled remains sex,commingledRemainsGroupList > commingledRemainsGroup,sex,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro ageRange,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ageRange,Object Description Information,Commingled Remains > Commingled remains,Commingled remains age range represented,commingledRemainsGroupList > commingledRemainsGroup,ageRange,string,n,n,y,vocabulary: agerange,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro mortuaryTreatment,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatment,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatment,string,n,n,y,vocabulary: mortuarytreatment,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro mortuaryTreatmentNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatmentNote,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment note,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatmentNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro behrensmeyerSingleLower,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerSingleLower,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Single/lower,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerSingleLower,string,n,n,y,vocabulary: behrensmeyer,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro behrensmeyerUpper,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerUpper,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Upper,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerUpper,string,n,n,y,vocabulary: behrensmeyer,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro commingledRemainsNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.commingledRemainsNote,Object Description Information,Commingled Remains > Commingled remains,Commingled remains note,commingledRemainsGroupList > commingledRemainsGroup,commingledRemainsNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentDescription,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDescription,Object Description Information,Content,Content description,"",contentDescription,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentLanguage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentLanguage,Object Description Information,Content,Content language,contentLanguages,contentLanguage,string,n,y,n,vocabulary: languages,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentActivity,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentActivity,Object Description Information,Content,Content activity,contentActivities,contentActivity,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentConcept,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentConcept,Object Description Information,Content,Content concept,contentConcepts,contentConcept,string,n,y,n,authority: concept/associated; authority: concept/material,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentPosition,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPosition,Object Description Information,Content,Content position,contentPositions,contentPosition,string,n,y,n,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentObject,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObject,Object Description Information,Content > Content object,Content object name,contentObjectGroupList > contentObjectGroup,contentObject,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentObjectType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObjectType,Object Description Information,Content > Content object,Content object type,contentObjectGroupList > contentObjectGroup,contentObjectType,string,n,n,y,option list: contentObjectTypes,"food, furniture" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentPeople,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPeople,Object Description Information,Content,Content people,contentPeoples,contentPeople,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentPerson,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPerson,Object Description Information,Content,Content person,contentPersons,contentPerson,string,n,y,n,authority: person/local; authority: person/ulan,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPlace,Object Description Information,Content,Content place,contentPlaces,contentPlace,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentScript,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentScript,Object Description Information,Content,Content script,contentScripts,contentScript,string,n,y,n,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentOrganization,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOrganization,Object Description Information,Content,Content organization,contentOrganizations,contentOrganization,string,n,y,n,authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentEventName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventName,Object Description Information,Content > Content event,Content event name,contentEventNameGroupList > contentEventNameGroup,contentEventName,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentEventNameType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventNameType,Object Description Information,Content > Content event,Content event type,contentEventNameGroupList > contentEventNameGroup,contentEventNameType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentOther,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOther,Object Description Information,Content > Content other,Content other name,contentOtherGroupList > contentOtherGroup,contentOther,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentOtherType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOtherType,Object Description Information,Content > Content other,Content other type,contentOtherGroupList > contentOtherGroup,contentOtherType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common contentNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentNote,Object Description Information,Content,Content note,"",contentNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContent,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContent,Object Description Information,Textual Inscription > Textual inscription,Textual inscription content,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContent,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentInscriber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInscriber,Object Description Information,Textual Inscription > Textual inscription,Textual inscription inscriber,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInscriber,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentLanguage,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentLanguage,Object Description Information,Textual Inscription > Textual inscription,Textual inscription language,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentPosition,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentPosition,Object Description Information,Textual Inscription > Textual inscription,Textual inscription position,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentScript,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentScript,Object Description Information,Textual Inscription > Textual inscription,Textual inscription script,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentScript,string,n,n,y,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentType,Object Description Information,Textual Inscription > Textual inscription,Textual inscription type,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentMethod,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentMethod,Object Description Information,Textual Inscription > Textual inscription,Textual inscription method,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentMethod,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentInterpretation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInterpretation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription interpretation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInterpretation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentTranslation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTranslation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription translation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTranslation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionContentTransliteration,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTransliteration,Object Description Information,Textual Inscription > Textual inscription,Textual inscription transliteration,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTransliteration,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescription,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescription,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription description,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescription,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescriptionInscriber,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInscriber,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription inscriber,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInscriber,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescriptionPosition,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionPosition,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription position,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescriptionType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionType,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription type,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescriptionMethod,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionMethod,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription method,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionMethod,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common inscriptionDescriptionInterpretation,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInterpretation,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription interpretation,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInterpretation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocActivity,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivity,Object History and Association Information,Associations > Associated activity,Associated activity,assocActivityGroupList > assocActivityGroup,assocActivity,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocActivityType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityType,Object History and Association Information,Associations > Associated activity,Associated activity type,assocActivityGroupList > assocActivityGroup,assocActivityType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocActivityNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityNote,Object History and Association Information,Associations > Associated activity,Associated activity note,assocActivityGroupList > assocActivityGroup,assocActivityNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocObject,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObject,Object History and Association Information,Associations > Associated object,Associated object,assocObjectGroupList > assocObjectGroup,assocObject,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocObjectType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectType,Object History and Association Information,Associations > Associated object,Associated object type,assocObjectGroupList > assocObjectGroup,assocObjectType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocObjectNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectNote,Object History and Association Information,Associations > Associated object,Associated object note,assocObjectGroupList > assocObjectGroup,assocObjectNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocConcept,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConcept,Object History and Association Information,Associations > Associated concept,Associated concept,assocConceptGroupList > assocConceptGroup,assocConcept,string,n,n,y,authority: concept/associated,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocConceptType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptType,Object History and Association Information,Associations > Associated concept,Associated concept type,assocConceptGroupList > assocConceptGroup,assocConceptType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocConceptNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptNote,Object History and Association Information,Associations > Associated concept,Associated concept note,assocConceptGroupList > assocConceptGroup,assocConceptNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocCulturalContext,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContext,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContext,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocCulturalContextType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextType,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity type,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocCulturalContextNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextNote,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity note,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocOrganization,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganization,Object History and Association Information,Associations > Associated organization,Associated organization,assocOrganizationGroupList > assocOrganizationGroup,assocOrganization,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocOrganizationType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationType,Object History and Association Information,Associations > Associated organization,Associated organization type,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocOrganizationNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationNote,Object History and Association Information,Associations > Associated organization,Associated organization note,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPerson,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPerson,Object History and Association Information,Associations > Associated person,Associated person,assocPersonGroupList > assocPersonGroup,assocPerson,string,n,n,y,authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPersonType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonType,Object History and Association Information,Associations > Associated person,Associated person type,assocPersonGroupList > assocPersonGroup,assocPersonType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPersonNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonNote,Object History and Association Information,Associations > Associated person,Associated person note,assocPersonGroupList > assocPersonGroup,assocPersonNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlace,Object History and Association Information,Associations > Associated place,Associated place,assocPlaceGroupList > assocPlaceGroup,assocPlace,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPlaceType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceType,Object History and Association Information,Associations > Associated place,Associated place type,assocPlaceGroupList > assocPlaceGroup,assocPlaceType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocPlaceNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceNote,Object History and Association Information,Associations > Associated place,Associated place note,assocPlaceGroupList > assocPlaceGroup,assocPlaceNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventName,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventName,Object History and Association Information,Associations > Associated event,Associated event,"",assocEventName,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventNameType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNameType,Object History and Association Information,Associations > Associated event,Associated event type,"",assocEventNameType,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventOrganization,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventOrganization,Object History and Association Information,Associations,Associated event organization,assocEventOrganizations,assocEventOrganization,string,n,y,n,authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventPeople,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPeople,Object History and Association Information,Associations,Associated event people,assocEventPeoples,assocEventPeople,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventPerson,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPerson,Object History and Association Information,Associations,Associated event person,assocEventPersons,assocEventPerson,string,n,y,n,authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPlace,Object History and Association Information,Associations,Associated event place,assocEventPlaces,assocEventPlace,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocEventNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNote,Object History and Association Information,Associations,Associated event note,"",assocEventNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocDateType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateType,Object History and Association Information,Associations > Associated date,Associated date type,assocDateGroupList > assocDateGroup,assocDateType,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common assocDateNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateNote,Object History and Association Information,Associations > Associated date,Associated date note,assocDateGroupList > assocDateGroup,assocDateNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common objectHistoryNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectHistoryNote,Object History and Association Information,"",Object history note,"",objectHistoryNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwner,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwner,Object History and Association Information,Previous ownership,Previous owner name,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwner,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipCategory,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipCategory,Object History and Association Information,Previous ownership,Previous ownership category,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipCategory,string,n,n,y,option list: ownershipCategories,"company, private, public" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPlace,Object History and Association Information,Previous ownership,Previous ownership place,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPlace,string,n,n,y,authority: place/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipMethod,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipMethod,Object History and Association Information,Previous ownership,Previous ownership exchange method,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipMethod,string,n,n,y,option list: ownershipExchangeMethods,"bequest, exchange, gift, purchase, transfer, treasure" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceCurrency,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceCurrency,Object History and Association Information,Previous ownership,Previous ownership exchange price currency,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceAmount,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceAmount,Object History and Association Information,Previous ownership,Previous ownership exchange price amount,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceAmount,float,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_anthro anthroOwnershipNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipNote,Object History and Association Information,Previous ownership,Previous ownership note,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ownersPersonalExperience,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalExperience,Object Owner's Contribution Information,"",Owner's personal experience,"",ownersPersonalExperience,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ownersPersonalResponse,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalResponse,Object Owner's Contribution Information,"",Owner's personal response,"",ownersPersonalResponse,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ownersReference,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersReference,Object Owner's Contribution Information,"",Owner's reference,ownersReferences,ownersReference,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common ownersContributionNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersContributionNote,Object Owner's Contribution Information,"",Owner's contribution note,"",ownersContributionNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common viewersRole,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersRole,Object Viewer's Contribution Information,"",Viewer's role,"",viewersRole,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common viewersPersonalExperience,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalExperience,Object Viewer's Contribution Information,"",Viewer's personal experience,"",viewersPersonalExperience,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common viewersPersonalResponse,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalResponse,Object Viewer's Contribution Information,"",Viewer's personal response,"",viewersPersonalResponse,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common viewersReference,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersReference,Object Viewer's Contribution Information,"",Viewer's reference,viewersReferences,viewersReference,string,n,y,n,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common viewersContributionNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersContributionNote,Object Viewer's Contribution Information,"",Viewer's contribution note,"",viewersContributionNote,string,n,n,n/a,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common reference,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.reference,Bibliographic Reference Information,Reference > Bibliographic Reference Information,Reference,referenceGroupList > referenceGroup,reference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common referenceNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.referenceNote,Bibliographic Reference Information,Reference,Reference note,referenceGroupList > referenceGroup,referenceNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality fieldLocVerbatim,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocVerbatim,Locality Information,Locality,Field collection location verbatim,localityGroupList > localityGroup,fieldLocVerbatim,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality fieldLocPlace,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocPlace,Locality Information,Locality,Field collection place,localityGroupList > localityGroup,fieldLocPlace,string,n,n,y,authority: place/local,"" +anthro_6-0-5 collectionobject ext.locality taxonomicRange,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.taxonomicRange,Locality Information,Locality,Geographic range of taxon,localityGroupList > localityGroup,taxonomicRange,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality fieldLocCounty,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCounty,Locality Information,Locality,County,localityGroupList > localityGroup,fieldLocCounty,string,n,n,y,option list: counties,"Abbeville, Aberdeenshire (UK), Acadia, Acaponeta, Accomack, Ada, Adair, Adams, Addison, Agusan del Norte, Ahuacatlan, Aiken, Aitkin, Alachua, Alamance, Alameda, Alamosa, Albany, Albemarle, Alcona, Alcorn, Aleutians East, Aleutians West, Alexander, Alexandria, Alfalfa, Alger, Allamakee, Allegan, Allegany, Alleghany, Allegheny, Allen, Allendale, Alpena, Alpine, Amador, Amazonas, Amelia, Amherst, Amite, Anchorage, Anderson, Andrew, Andrews, Androscoggin, Angelina, Anglesey, Anglesey (UK), Angus (Forfarshire) (UK), Anne Arundel, Anoka, Anson, Antelope, Antonina, Antrim, Antrim (UK), Apache, Appanoose, Appling, Appomattox, Aransas, Arapahoe, Archer, Archuleta, Arenac, Argyll (Argyllshire) (UK), Arkansas, Arlington, Armagh (UK), Armstrong, Aroostook, Arran, Island of, Arthur, Ascension, Ashe, Ashland, Ashley, Ashtabula, Asotin, Assumption, Atascosa, Atchison, Athens, Atkinson, Atlantic, Atoka, Attala, Audrain, Audubon, Auglaize, Augusta, Aurora, Austin, Autauga, Avery, Avoyelles, Ayopaya, Ayrshire (UK), Ba, Baca, Bacon, Bagua, Bailey, Baker, Baldwin, Ballard, Baltimore, Bamberg, Bandera, Banffshire (UK), Banks, Banner, Bannock, Baraga, Barber, Barbour, Barnes, Barnstable, Barnwell, Barreiras, Barren, Barron, Barrow, Barry, Bartholomew, Barton, Bartow, Bastrop, Bates, Bath, Baxter, Bay, Bayfield, Baylor, Beadle, Bear Lake, Beaufort, Beauregard, Beaver, Beaverhead, Becker, Beckham, Bedford, Bedfordshire (UK), Bee, Belknap, Bell, Belmont, Beltrami, Ben Hill, Benewah, Bennett, Bennington, Benson, Bent, Benton, Benzie, Bergen, Berkeley, Berks, Berkshire, Berkshire (UK), Bernalillo, Berrien, Bertie, Berwickshire (UK), Bethel, Bexar, Bibb, Bienville, Big Horn, Big Stone, Billings, Bingham, Black Hawk, Blackford, Bladen, Blaine, Blair, Blanco, Bland, Bleckley, Bledsoe, Blount, Blue Earth, Boise, Bolivar, Bollinger, Bon Homme, Bonaventure, Bond, Bongara, Bonner, Bonneville, Boone, Borden, Bosque, Bossier, Botetourt, Bothwell Municipality, Bottineau, Boulder, Boundary, Bourbon, Bowie, Bowman, Box Butte, Box Elder, Boyd, Boyle, Bracken, Bradford, Bradley, Branch, Brantley, Braxton, Brazoria, Brazos, Breathitt, Breckinridge, Brecknockshire (Breconshire) (UK), Bremer, Brevard, Brewster, Briscoe, Bristol, Bristol Bay, Broadwater, Bronx, Brooke, Brookings, Brooks, Broome, Broomfield, Broward, Brown, Brule, Brunswick, Bryan, Buchanan, Buckingham, Buckinghamshire (UK), Bucks, Buena Vista, Buffalo, Bullitt, Bulloch, Bullock, Buncombe, Bureau, Burke, Burleigh, Burleson, Burlington, Burnet, Burnett, Burnie Municipality, Burt, Buteshire (UK), Butler, Butte, Butts, Cabarrus, Cabell, Cache, Caddo, Caernarfonshire (Carnarvonshire) (UK), Caithness (UK), Cajamarca, Calaveras, Calcasieu, Caldwell, Caledonia, Calhoun, Callahan, Callaway, Calloway, Calumet, Calvert, Camas, Cambria, Cambridgeshire (UK), Camden, Cameron, Camp, Campbell, Canadian, Candelaria, Candler, Cannon, Canyon, Cape Girardeau, Cape May, Capiz, Carangola, Carbon, Cardiganshire (UK), Caribou, Carlisle, Carlton, Carmarthenshire (UK), Caroline, Carroll, Carson, Carson City, Carter, Carteret, Carver, Cascade, Casey, Cass, Cassia, Castro, Castrovirreina, Caswell, Catahoula, Catawba, Catoosa, Catron, Cattaraugus, Cautin, Cavalier, Cayuga, Cecil, Cedar, Celendin, Centre, Cerro Gordo, Chachapoyas, Chaffee, Chambers, Champaign, Chariton, Charles, Charles City, Charles Mix, Charleston, Charlevoix, Charlotte, Charlottesville, Charlton, Chase, Chatham, Chattahoochee, Chattooga, Chautauqua, Chaves, Cheatham, Cheboygan, Chelan, Chemung, Chenango, Cherokee, Cherry, Chesapeake, Cheshire, Cheshire (UK), Chester, Chesterfield, Cheyenne, Chiang Mai, Changwat, Chickasaw, Chicligasta, Chicot, Childress, Chilton, Chippewa, Chisago, Chittenden, Choctaw, Chouteau, Chowan, Christian, Churchill, Cibola, Cimarron, Citrus, Clackamas, Clackmannanshire (UK), Claiborne, Clallam, Clare, Clarendon, Clarion, Clark, Clarke, Clatsop, Clay, Clayton, Clear Creek, Clearfield, Clearwater, Cleburne, Clermont, Cleveland, Clinch, Clinton, Cloud, Coahoma, Coal, Cobb, Cochise, Cochran, Cocke, Coconino, Codington, Coffee, Coffey, Coke, Colbert, Cole, Coleman, Coles, Colfax, Colleton, Collier, Collin, Collingsworth, Colonial Heights, Colorado, Colquitt, Columbia, Columbiana, Columbus, Colusa, Comal, Comanche, Comondú, Compostela, Concho, Concordia, Conecuh, Conejos, Contra Costa, Converse, Conway, Cook, Cooke, Cooper, Coos, Coosa, Copiah, Cornwall, Cornwall (UK), Corson, Cortland, Corumba, Coryell, Coshocton, Costilla, Cottle, Cotton, Cottonwood, Covington, Coweta, Cowley, Cowlitz, Craig, Craighead, Crane, Craven, Crawford, Creek, Crenshaw, Crisp, Crittenden, Crockett, Cromartyshire (UK), Crook, Crosby, Cross, Crow Wing, Crowley, Culberson, Cullman, Culpeper, Cumberland, Cumberland (UK), Cuming, Currituck, Curry, Custer, Cuyahoga, Dade, Daggett, Dakota, Dale, Dallam, Dallas, Dane, Daniels, Danville, Dare, Darke, Darlington, Dauphin, Davidson, Davie, Daviess, Davis, Davison, Dawes, Dawson, Day, De Baca, De Kalb, De Soto, De Witt, DeKalb, DeSoto, DeWitt, Deaf Smith, Dearborn, Decatur, Deer Lodge, Defiance, Del Norte, Delaware, Deloraine Municipality, Delta, Denali, Denbighshire (UK), Dent, Denton, Denver, Derbyshire (UK), Des Moines, Deschutes, Desha, Deuel, Devon (UK), Dewey, Diamantina, Dickens, Dickenson, Dickey, Dickinson, Dickson, Dillingham, Dillon, Dimmit, Dinwiddie, District of Columbia, Divide, Dixie, Dixon, Doddridge, Dodge, Dolores, Dona Ana, Doniphan, Donley, Dooly, Door, Dorchester, Dorset (UK), Dougherty, Douglas, Down (UK), Doña Ana, Drew, Du Page, DuPage, Dubois, Dubuque, Duchesne, Dukes, Dumbartonshire (UK), Dumfriesshire (UK), Dundy, Dunklin, Dunn, Duplin, Durham, Durham (UK), Dutchess, Duval, Dyer, Eagle, Early, East Baton Rouge, East Carroll, East Feliciana, East Lothian (UK), Eastland, Eaton, Eau Claire, Echols, Ector, Eddy, Edgar, Edgecombe, Edgefield, Edmonson, Edmunds, Edwards, Effingham, El Dorado, El Paso, Elbert, Elk, Elkhart, Elko, Elliott, Ellis, Ellsworth, Elmore, Emanuel, Emery, Emmet, Emmons, Emporia, Ensenada, Erath, Erie, Escambia, Esmeralda, Esmeraldas, Esperance Municipality, Essex, Essex (MA), Essex (UK), Estill, Etowah, Eureka, Evangeline, Evans, Fairbanks North Star, Fairfax, Fairfield, Fall River, Fallon, Falls, Falls Church, Fannin, Faribault, Faulk, Faulkner, Fauquier, Fayette, Fentress, Fergus, Fermanagh (UK), Ferry, Fife (UK), Fillmore, Fingal Municipality, Finney, Fisher, Flagler, Flathead, Fleming, Flintshire (UK), Florence, Florida, Floyd, Fluvanna, Foard, Fond Du Lac, Fond du Lac, Ford, Forest, Forrest, Forsyth, Fort Bend, Foster, Fountain, Franklin, Frederick, Fredericksburg, Freeborn, Freestone, Fremont, Fresno, Frio, Frontier, Fulton, Furnas, Gadsden, Gage, Gaines, Galapagos, Galax, Gallatin, Gallia, Galveston, Galway, Garden, Garfield, Garland, Garrard, Garrett, Garvin, Garza, Gasconade, Gaston, Gates, Geary, Geauga, Gem, Genesee, Geneva, Gentry, George, Georgetown, Gibson, Gila, Gilchrist, Giles, Gillespie, Gilliam, Gilmer, Gilpin, Glacier, Glades, Gladwin, Glamorgan (UK), Glamorgan Municipality, Glascock, Glasscock, Glenn, Glenorchy Municipality, Gloucester, Gloucestershire (UK), Glynn, Gogebic, Golden Valley, Goliad, Gonzales, Goochland, Goodhue, Gooding, Gordon, Gormanston Municipality, Goshen, Gosper, Gouveia, Gove, Grady, Grafton, Graham, Grainger, Grand, Grand Forks, Grand Isle, Grand Traverse, Granite, Grant, Granville, Gratiot, Graves, Gray, Grays Harbor, Grayson, Greeley, Green, Green Lake, Greenbrier, Greene, Greenlee, Greensville, Greenup, Greenville, Greenwood, Greer, Gregg, Gregory, Grenada, Griggs, Grimes, Grundy, Guadalupe, Guaraquecaba, Guaratuba, Guernsey, Guilford, Gulf, Gunnison, Guthrie, Gwinnett, Haakon, Habersham, Haines, Hale, Halifax, Hall, Hamblen, Hamilton, Hamilton Municipality, Hamlin, Hampden, Hampshire, Hampshire (UK), Hampton, Hancock, Hand, Hanover, Hansford, Hanson, Haralson, Hardee, Hardeman, Hardin, Harding, Hardy, Harford, Harlan, Harmon, Harnett, Harney, Harper, Harris, Harrison, Harrisonburg, Hart, Hartford, Hartley, Harvey, Haskell, Hawaii, Hawkins, Hayes, Hays, Haywood, Heard, Hemphill, Hempstead, Henderson, Hendricks, Hendry, Hennepin, Henrico, Henry, Herefordshire (UK), Herkimer, Hernando, Hertford, Hertfordshire (UK), Hettinger, Hickman, Hickory, Hidalgo, Highland, Highlands, Hill, Hillsborough, Hillsdale, Hinds, Hinsdale, Hitchcock, Hobart Municipality, Hocking, Hockley, Hodgeman, Hoke, Holmes, Holt, Honolulu, Hood, Hood River, Hooker, Hoonah–Angoon, Hopewell, Hopkins, Horry, Hot Spring, Hot Springs, Houghton, Houston, Howard, Howell, Huancabamba, Huanuco, Hubbard, Hudson, Hudspeth, Huerfano, Hughes, Humboldt, Humphreys, Hunt, Hunterdon, Huntingdon, Huntingdonshire (UK), Huntington, Huron, Hutchinson, Hyde, Iberia, Iberville, Ida, Idaho, Imperial, Independence, Indian River, Indiana, Ingham, Inverness-shire (UK), Inyo, Ionia, Iosco, Iowa, Iredell, Irion, Iron, Iroquois, Irwin, Isabella, Isanti, Island, Isle of Wight, Issaquena, Itasca, Itawamba, Ixtlan, Izard, Jack, Jackson, Jaguariaiya, Jalisco, James City, Jasper, Jay, Jeff Davis, Jefferson, Jefferson Davis, Jenkins, Jennings, Jerauld, Jerome, Jersey, Jessamine, Jewell, Jim Hogg, Jim Wells, Jo Daviess, Johnson, Johnston, Jolo Group, Jones, Josephine, Juab, Judith Basin, Juneau, Juniata, Juquila, Kalamazoo, Kalawao, Kalkaska, Kanabec, Kanawha, Kandavu, Kandiyohi, Kane, Kankakee, Karnes, Kauai, Kaufman, Kay, Kearney, Kearny, Keith, Kemper, Kenai Peninsula, Kendall, Kenedy, Kennebec, Kenosha, Kent, Kent (UK), Kentish Municipality, Kenton, Keokuk, Kepulauan, Kepulauan Kangean Islands, Kern, Kerr, Kershaw, Ketchikan Gateway, Kewaunee, Keweenaw, Keya Paha, Kidder, Kimball, Kimble, Kincardineshire (UK), King, King George, King William, King and Queen, Kingborough Municipality, Kingfisher, Kingman, Kings, Kingsbury, Kinney, Kinross-shire (UK), Kiowa, Kirkcudbrightshire (UK), Kit Carson, Kitsap, Kittitas, Kittson, Klamath, Kleberg, Klickitat, Knott, Knox, Kodiak Island, Koochiching, Kootenai, Korinthos, Koro, Kosciusko, Kossuth, La Crosse, La Paz, La Plata, La Salle, LaGrange, LaMoure, LaPorte, LaRue, LaSalle, Labette, Lac qui Parle, Lackawanna, Laclede, Lafayette, Lafourche, Lake, Lake and Peninsula, Lake of the Woods, Lamar, Lamas, Lamb, Lamoille, Lampasas, Lanarkshire (UK), Lancashire (UK), Lancaster, Lander, Lane, Langlade, Lanier, Lapeer, Laramie, Larecaja, Larimer, Las Animas, Lassen, Latah, Latimer, Lauderdale, Launceston Municipality, Laurel, Laurens, Lavaca, Lawrence, Le Flore, Le Sueur, Lea, Leake, Leavenworth, Lebanon, Lee, Leelanau, Leflore, Lehigh, Leicestershire (UK), Lemhi, Lenawee, Lenoir, Leon, Leslie, Letcher, Levy, Lewis, Lewis and Clark, Lexington, Liberty, Licking, Lilydale Municipality, Limestone, Lincoln, Lincolnshire (UK), Linn, Lipscomb, Litchfield, Little River, Live Oak, Livingston, Llano, Logan, Loja, Londonderry (UK), Long, Longford Municipality, Lonoke, Lorain, Loreto, Los Alamos, Los Angeles, Los Cabos, Loudon, Loudoun, Louisa, Loup, Love, Loving, Lowndes, Lubbock, Lucas, Luce, Lumpkin, Luna, Lunenburg, Luzerne, Lycoming, Lyman, Lynchburg, Lynn, Lyon, Mackinac, Macomb, Macon, Macoupin, Madera, Madison, Magoffin, Mahaska, Mahnomen, Mahoning, Major, Malheur, Manabi, Manassas, Manassas Park, Manatee, Manistee, Manitowoc, Marathon, Marengo, Maricopa, Maries, Marin, Marinette, Marion, Mariposa, Marlboro, Marquette, Marshall, Martin, Martinsville, Mason, Massac, Matagorda, Matanuska-Susitna, Mathews, Maui, Maury, Maverick, Mayes, McClain, McCone, McCook, McCormick, McCracken, McCreary, McCulloch, McCurtain, McDonald, McDonough, McDowell, McDuffie, McHenry, McIntosh, McKean, McKenzie, McKinley, McLean, McLennan, McLeod, McMinn, McMullen, McNairy, McPherson, Meade, Meagher, Mecklenburg, Mecosta, Medina, Meeker, Meigs, Mellette, Menard, Mendocino, Menifee, Menominee, Merced, Mercer, Merionethshire (UK), Meriwether, Merrick, Merrimack, Mesa, Metcalfe, Mexicali, Miahuatlan, Miami, Miami-Dade, Middlesex, Middlesex (UK), Midland, Midlothian (UK), Mifflin, Milam, Millard, Mille Lacs, Miller, Mills, Milwaukee, Miner, Mineral, Mingo, Minidoka, Minnehaha, Missaukee, Mississippi, Missoula, Mitchell, Mizque, Mobile, Modoc, Moffat, Mohave, Moniteau, Monmouth, Monmouthshire (UK), Mono, Monona, Monongalia, Monroe, Montague, Montcalm, Monterey, Montezuma, Montgomery, Montgomeryshire (UK), Montmorency, Montour, Montrose, Moody, Moore, Mora, Morayshire (UK), Morehouse, Morgan, Morrill, Morris, Morrison, Morro do Chapeu, Morrow, Morton, Motley, Moultrie, Mountrail, Mower, Muhlenberg, Mulegé, Multnomah, Murray, Muscatine, Muscogee, Muskegon, Muskingum, Muskogee, Musselshell, Nacogdoches, Nairnshire (UK), Nakhon Ratchasima, Changwat, Nance, Nantucket, Nantucket (MA), Napa, Nash, Nassau, Natchitoches, Natrona, Navajo, Navarro, Nelson, Nemaha, Neosho, Neshoba, Ness, Nevada, New Castle, New Hanover, New Haven, New Kent, New London, New Madrid, New Norfolk Municipality, New York, Newaygo, Newberry, Newport, Newport News, Newton, Nez Perc, Nez Perce, Niagara, Nicholas, Nicholson, Nicollet, Niobrara, Noble, Nobles, Nodaway, Nolan, Nome, Norfolk, Norfolk (UK), Norman, North Slope, Northampton, Northamptonshire (UK), Northumberland, Northumberland (UK), Northwest Arctic, Norton, Nottinghamshire (UK), Nottoway, Nowata, Noxubee, Nuckolls, Nueces, Nueva Vizcaya, Nye, O'Brien, Oakland, Oatlands Municipality, Obion, Ocean, Oceana, Ochiltree, Oconee, Oconto, Ogemaw, Ogle, Oglethorpe, Ohio, Okaloosa, Okanogan, Okeechobee, Okfuskee, Oklahoma, Okmulgee, Oktibbeha, Oldham, Oliver, Olmsted, Oneida, Onondaga, Onslow, Ontario, Ontonagon, Orange, Orangeburg, Oregon, Orkney (UK), Orleans, Osage, Osborne, Osceola, Oscoda, Oswego, Otero, Otoe, Otsego, Ottawa, Otter Tail, Ouachita, Ouray, Outagamie, Overton, Owen, Owsley, Owyhee, Oxford, Oxfordshire (UK), Ozark, Ozaukee, Pacific, Page, Palm Beach, Palmeira, Palo Alto, Palo Pinto, Pamlico, Pampanga, Pangasinan, Panola, Paranagua, Park, Parke, Parker, Parmer, Pasco, Pasquotank, Passaic, Patrick, Paulding, Pawnee, Payette, Payne, Peach, Pearl River, Pecos, Peeblesshire (UK), Pembina, Pembrokeshire (UK), Pemiscot, Pend Oreille, Pender, Pendleton, Penguin Municipality, Pennington, Penobscot, Peoria, Pepin, Perkins, Perquimans, Perry, Pershing, Person, Perthshire (UK), Petersburg, Petroleum, Pettis, Phelps, Philadelphia, Phillips, Piatt, Pickaway, Pickens, Pickett, Pierce, Pike, Pima, Pinal, Pine, Pinellas, Pipestone, Piscataquis, Pitkin, Pitt, Pittsburg, Pittsylvania, Piura, Piute, Placer, Plaquemines, Platte, Pleasants, Plumas, Plymouth, Pocahontas, Pochutla, Poinsett, Pointe Coupee, Polk, Pondera, Pontotoc, Pope, Poquoson, Portage, Porter, Portland Municipality, Portsmouth, Posey, Pottawatomie, Pottawattamie, Potter, Powder River, Powell, Power, Poweshiek, Powhatan, Prairie, Pratt, Preble, Prentiss, Presidio, Presque Isle, Preston, Price, Prince Edward, Prince George, Prince George's, Prince William, Prince of Wales-Hyder, Providence, Prowers, Pueblo, Pujili, Pulaski, Pushmataha, Putnam, Quay, Queen Anne's, Queen Elizabeth Islands, Queens, Quezon, Quitman, Quito, Rabun, Racine, Radford, Radnorshire (UK), Raiatea, Rains, Raleigh, Ralls, Ramsey, Randall, Randolph, Rankin, Ransom, Rapides, Rappahannock, Rarotonga, Ravalli, Rawlins, Ray, Reagan, Real, Red Lake, Red River, Red Willow, Redwood, Reeves, Refugio, Renfrewshire (UK), Reno, Rensselaer, Renville, Republic, Rewa, Reynolds, Rhea, Rice, Rich, Richardson, Richland, Richmond, Riley, Ringarooma Municipality, Ringgold, Rio Arriba, Rio Blanco, Rio Branco, Rio Grande, Rio Verde, Ripley, Ritchie, Riverside, Rizal, Roane, Roanoke, Roberts, Robertson, Robeson, Rock, Rock Island, Rockbridge, Rockcastle, Rockdale, Rockingham, Rockland, Rockwall, Roger Mills, Rogers, Rolette, Rooks, Roosevelt, Rosarito, Playas de, Roscommon, Roseau, Rosebud, Ross, Ross Municipality, Ross-shire (UK), Routt, Rowan, Roxburghshire (UK), Runnels, Rush, Rusk, Russell, Russell Islands, Rutherford, Rutland, Rutland (UK), Sabah, Sabine, Sac, Sacramento, Sagadahoc, Saginaw, Saguache, Salem, Saline, Salt Lake, Saluda, Sampson, San Augustine, San Benito, San Bernardino, San Blas, San Diego, San Francisco, San Ignacio, San Jacinto, San Joaquin, San Juan, San Luis Obispo, San Mateo, San Miguel, San Patricio, San Pedro Lagunillas, San Pedro Lagunitas, San Saba, Sanborn, Sanders, Sandoval, Sandusky, Sangamon, Sanilac, Sanpete, Santa Barbara, Santa Clara, Santa Cruz, Santa Fe, Santa Maria del Oro, Santa Rosa, Santa Victoria, Sarasota, Saratoga, Sarawak, Sargent, Sarpy, Sauk, Saunders, Sawyer, Schenectady, Schleicher, Schley, Schoharie, Schoolcraft, Schuyler, Schuylkill, Scioto, Scotland, Scott, Scotts Bluff, Scottsdale Municipality, Screven, Scurry, Searcy, Sebastian, Sedgwick, Selkirkshire (UK), Seminole, Seneca, Senyavin Islands, Sequatchie, Sequoyah, Sevier, Seward, Shackelford, Shannon, Sharkey, Sharp, Shasta, Shawano, Shawnee, Sheboygan, Sheffield Municipality, Shelby, Shenandoah, Sherburne, Sheridan, Sherman, Shetland (UK), Shiawassee, Shoshone, Shropshire (UK), Sibley, Sierra, Silver Bow, Simpson, Sioux, Siskiyou, Sitka, Skagit, Skagway, Skamania, Slope, Smith, Smyth, Snohomish, Snyder, Socorro, Sola de Vega, Solano, Somerset, Somerset (UK), Somervell, Sonoma, Sorell Municipality, Southampton, Southeast Fairbanks, Spalding, Spartanburg, Spencer, Spink, Spokane, Spotsylvania, Spring Bay Municipality, St. Bernard, St. Charles, St. Clair, St. Croix, St. Francis, St. Francois, St. Helena, St. James, St. John the Baptist, St. Johns, St. Joseph, St. Landry, St. Lawrence, St. Leonards Municipality, St. Louis, St. Lucie, St. Martin, St. Mary, St. Mary's, St. Tammany, Stafford, Staffordshire (UK), Stanislaus, Stanley, Stanly, Stanton, Stark, Starke, Starr, Staunton, Ste. Genevieve, Stearns, Steele, Stephens, Stephenson, Sterling, Steuben, Stevens, Stewart, Stillwater, Stirlingshire (UK), Stoddard, Stokes, Stone, Stonewall, Storey, Story, Strafford, Stutsman, Sublette, Sud Yungas, Suffolk, Suffolk (UK), Sullivan, Sully, Summers, Summit, Sumner, Sumter, Sunflower, Surrey (UK), Surry, Susquehanna, Sussex, Sussex (UK), Sutherland (UK), Sutter, Sutton, Suwannee, Swain, Sweet Grass, Sweetwater, Swift, Swisher, Switzerland, Tahiti, Talbot, Taliaferro, Talladega, Tallahatchie, Tallapoosa, Taltal, Tama, Taney, Tangipahoa, Taos, Tarrant, Tasman Municipality, Tate, Tattnall, Taylor, Tazewell, Tecate, Tehama, Telfair, Teller, Tensas, Tepic, Terrebonne, Terrell, Terry, Teton, Texas, Thayer, Thomas, Throckmorton, Thurston, Tift, Tijuana, Tillamook, Tillman, Tioga, Tippah, Tippecanoe, Tipton, Tishomingo, Titus, Todd, Tolland, Tom Green, Tompkins, Tompkins (NY), Tooele, Toole, Toombs, Torrance, Towner, Towns, Traill, Transylvania, Traverse, Travis, Treasure, Trego, Trempealeau, Treutlen, Trigg, Trimble, Trinity, Tripp, Troup, Trousdale, Trumbull, Tucker, Tulare, Tulsa, Tunica, Tuolumne, Turner, Tuscaloosa, Tuscarawas, Tuscola, Twiggs, Twin Falls, Tyler, Tyrone (UK), Tyrrell, Uinta, Uintah, Ulster, Ulverstone Municipality, Umatilla, Unicoi, Union, Unknown, Unknown, Upshur, Upson, Upton, Urubamba, Utah, Uvalde, Val Verde, Valdez–Cordova, Valencia, Valley, Van Buren, Van Wert, Van Zandt, Vance, Vanderburgh, Vanua Levu, Venango, Ventura, Vermilion, Vermillion, Vernon, Victoria, Vigo, Vilas, Vinton, Virginia Beach, Viti Levu, Volusia, Wabash, Wabasha, Wabaunsee, Wade Hampton, Wadena, Wagoner, Wahkiakum, Wake, Wakulla, Waldo, Walker, Walla Walla, Wallace, Waller, Wallowa, Walsh, Walthall, Walton, Walworth, Wapello, Waratah Municipality, Ward, Ware, Warren, Warrick, Warwickshire (UK), Wasatch, Wasco, Waseca, Washakie, Washburn, Washington, Washita, Washoe, Washtenaw, Watauga, Watonwan, Waukesha, Waupaca, Waushara, Wayne, Waynesboro, Weakley, Webb, Weber, Webster, Weld, Wells, West Baton Rouge, West Carroll, West Feliciana, West Lothian (Linlithgowshire) (UK), Westchester, Westmoreland, Westmorland (UK), Weston, Wetzel, Wexford, Wharton, Whatcom, Wheatland, Wheeler, White, White Pine, Whiteside, Whitfield, Whitley, Whitman, Wibaux, Wichita, Wicomico, Wigtownshire (UK), Wilbarger, Wilcox, Wilkes, Wilkin, Wilkinson, Will, Will (IL), Willacy, Williams, Williamsburg, Williamson, Wilson, Wiltshire (UK), Winchester, Windham, Windsor, Winkler, Winn, Winnebago, Winneshiek, Winona, Winston, Wirt, Wise, Wolfe, Wood, Woodbury, Woodford, Woodruff, Woods, Woodson, Woodward, Worcester, Worcestershire (UK), Worth, Wrangell, Wright, Wyandot, Wyandotte, Wyoming, Wythe, Yadkin, Yakima, Yakutat, Yalobusha, Yamhill, Yancey, Yankton, Yates, Yavapai, Yazoo, Yell, Yellow Medicine, Yellowstone, Yoakum, Yolo, York, Yorkshire (UK), Young, Yuba, Yukon–Koyukuk, Yuma, Zambales, Zapata, Zavala, Zeehan Municipality, Zhongdian, Ziebach" +anthro_6-0-5 collectionobject ext.locality fieldLocState,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocState,Locality Information,Locality,State,localityGroupList > localityGroup,fieldLocState,string,n,n,y,option list: states,"'Eua, AK, AL, ALB, AR, ARIZ, AZ, AZ Territory, Aamzonas, Acre, Alajuela, Alajuelo, Alberta, Alger, Alta Verapaz, Amazonas, Ancash, Anhui, Antioquia, Antofagasta, Apurimac, Aragua, Araucania, Arequipa, Artigas, Atacama, Atlantida, Ayacucho, Azuay, B.C.S., BCS, BN, Bac Phan, Bahia, Baja California, Baja California Sur, Baja Verapaz, Baleares, Baluchistan, Banguey Island, Barinas, Benguet, Binh Tri Thien, Tinh, Biobio, Regio del, Bismarck Archipelago, Bohol, Bolivar, Boyaca, British Columbia, Brunei, Buenos Aires, Bulacan, CA, CHI, CO, CO Territory, COCA, COL, COP, CT, Cajamarca, Campeche, Canar, Cape Province, Carchi, Caroline Islands, Cartago, Cascajal, Cataluna, Cauca, Cebu, Central, Chalatenango, Chia, Chiang Mai, Changwat, Chiapas, Chihuahua, Chimaltenango, Chimborazo, Chinandega, Chiriqui, Chontales, Chupadero, Chuquisaca, Coahuila, Cochabamba, Cocle, Colima, Comayagua, Concepcion, Coquimbo, Cordoba, Cortes, Costa, Cotopaxi, Cundinamarca, Cuzco, DE, DUR, Darien, Dept. La e, Dept. Mag, Distrito Federal, Durango, East Malaysia, East Sepik, Eastern Division, Eastern Divsion, El Progreso, Esmeraldas, Esteli, FL, Florida, Fujian, GA, GRO, GUAM, Gansu, Goias, Golestan, Granada, Guanacaste, Guanajuato, Guangdong, Guatemala, Guayas, Guerrero, Guizhou, HI, Ha Bach, Tinh, Hainan, Halland, Hamadan, Heidelberg, Heredia, Hidalgo, Honshu, Huancabamba, Huancavelica, Huanuco, Hubei, Huehuetena, Huehuetenango, Humacao, IA, ID, IL, IN, Idaho, Insular, Ipiros, Iqnique Province, Iringa, Isabela, Izabel, JAL, Jalisco, Jalsico, Jawa Timur, Jiangsu, Jujuy, Junin, KS, KY, Kangean, Khorasan Province, Kkanh Hoa, KwaZulu-Natal, LA, LASAN, La Habana, La Libertad, La Paz, La Vega, Lambayeque, Las Villas, Leon, Lima, Limon, Loja, Loreto, Luzon, MA, MD, ME, MI, MIC, MICH, MN, MO, MON, MS, MT, MX, Madre de Dios, Magdalena, Maldonado, Manabi, Manitoba, Mariana Islands, Mato Grosso, Matto Grosso, Mayaguez, Mazandaran, Merida, Meta, Mexico, Michoacan, Minas Gerais, Mindanao, Misiones, Montevideo, Morazan, Morelos, N. Segovia, NAY, NC, ND, NE, NH, NJ, NL, NM, NM-TX, NV, NY, Narino, Nayarit, Neuvo Leon, Nevada, New Brunswick, New South Wales, Newfoundland, Nord, Norte, Norte de Santander, North Ayrshire, Northeastern, Northern, Northern Division, Northern Territory, Northwest Frontier, Northwest Territories, Nova Scotia, Nuevo Leon, Nunavut, O, OH, OK, OR, OR (?), OR or WA, Oaxaca, Ontario, Oregon, Oriente, Otuzco, PA, PE, PMG, PRE, PUE, Palawan, Panama, Panay, Paraguari, Parana, Paris, Pasco, Pataz, Peloponnisos, Peten, Pichincha, Piura, Pohnpei, Pomeroon-Supernaam, Portuguesa, Potosi, Prince Edward Island, Puebla, Puerto Rico, Puno, Puntarenas, Quang Ngai, Quebec, Queensland, Quezaltenango, Quezon, Quiche, RI, Rio de Janeiro, Rizal, S Catarina, S L Potosi, S.L. Potos, SC, SD, SIN, SL Potosi, SON, Sabah, Salta, Samar, San Blas, San Jose, San Luis, San Luis Potosi, San Luis a, San Martin, San Miguel, San Pedro, Santa Barbara, Santa Catarina, Santa Cruz, Santander, Santiago, Region Met, Sao Paulo, Sarawak, Saskatchewan, Savaii Island, Scotland, Semnan, Seybo, Sichuan, Sierra, Sinaloa, Societe, Iles de la, Societe, Isles de la, Sonora, Sonsonate, South Australia, Southern Cook Island, St. Andrew, St. Croix, Stann Creek, Sulu, Sumatera, TAB, TAM, TN, TX, TX , TX-NM, Tabasco, Tachira, Tacna, Tamaulipas, Tarank Province, Tarija, Tarma, Tasmania, Tehran, Tierra del Fuego, Tlaxcala, Toledo, Tongatapu, Trelawny, Trujillo, Tuamotu, Archipel de, Tubuai, Iles, Tucuman, Tutuila Island, UT, Unknown, Upolu Island, Utah, VA, VT, Valle, Valparaiso, Vaupes, Veracruz, Verguas, Victoria, WA, WA Territory, WAS, WI, WN, WV, WY, Wales, Western Australia, Western Cape, Wyoming, Xizang, Yaracuy, Yoro, Yucatan, Yukon Territory, Yunnan, Zacatecas, Zhejiang, Zulia, w TX to NM, w. TX - El Paso, NM, w. TX - El Paso,NM" +anthro_6-0-5 collectionobject ext.locality fieldLocCountry,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCountry,Locality Information,Locality,Country,localityGroupList > localityGroup,fieldLocCountry,string,n,n,y,option list: countries,"AD, AE, AI, AL, AO, AQ, AT, AW, AX, AZ, Afghanistan, Algeria, American Samoa, Antigua, Antigua and Barbuda, Argentina, Armenia, Australia, BA, BB, BD, BF, BG, BH, BI, BJ, BL, BQ, BS, BT, BV, BW, BY, Belgium, Belize, Bermuda, Bolivia, Borneo, Brazil, Brunei, CC, CF, CG, CH, CI, CV, CW, CX, CY, CZ, Cambodia, Cameroon, Canada, Chile, China, Colombia, Cook Islands, Costa Rica, Croatia, Cuba, D R Congo, DJ, DM, Denmark, Dominican Republic, EE, EG, EH, ER, ET, Ecuador, El Salvador, Ellas, Equatorial Guinea, Espana, FK, FO, Fiji, Finland, France, GA, GD, GE, GF, GG, GH, GI, GM, GN, GS, GU, GW, Germany, Greenland, Guadeloupe, Guatemala, Guyana, HK, HM, HN, Haiti, Hispaniola, Honduras, IM, IO, IQ, Iceland, India, Indonesia, Iran, Ireland, Israel, Italy, JE, Jamaica, Japan, Jordan, KG, KI, KM, KN, KP, KW, KY, KZ, Kenya, LA, LI, LR, LS, LT, LU, LV, LY, Lebanon, MC, MD, ME, MF, MK, ML, MO, MP, MQ, MR, MS, MT, MU, MV, MZ, Madagascar, Malawi, Malaysia, Marshall Islands, Mexico, Micronesia, Mongolia, Morocco, Myanmar, NE, NF, NG, NR, Namibia, Nepal, Netherlands, Netherlands Antilles, New Caledonia, New Zealand, Nicaragua, Nihon, Niue, Norway, OM, PF, PL, PM, PN, PS, PW, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, Polynesia, Polynesie francaise, Portugal, Prathet Thai, Puerto Rico, QA, RO, RS, RW, Republica Dominicana, Reunion, Russia, SA, SG, SJ, SK, SL, SM, SN, SO, SS, ST, SX, SZ, Saint Helena, Saint Lucia, Samoa, Scotland, Seychelles, Slovenia, Solomon Islands, South Africa, South Korea, Spain, Sri Lanka, Sudan, Suriname, Sweden, Syria, TC, TD, TF, TG, TJ, TK, TL, TM, TN, TV, Taiwan, Tanzania, Thailand, Tonga, Trinidad and Tobago, Turkey, UA, UM, USA, UZ, Uganda, United Kingdom, Uruguay, VA, VC, VG, Vanuatu, Venezuela, Viet Nam, Virgin Islands, WF, Western Samoa, YE, YT, ZM, ZW, Zhonghua, unknown" +anthro_6-0-5 collectionobject ext.locality fieldLocHigherGeography,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocHigherGeography,Locality Information,Locality,Higher geography,localityGroupList > localityGroup,fieldLocHigherGeography,string,n,n,y,option list: higherGeographies,"North America, pacificocean" +anthro_6-0-5 collectionobject ext.locality vLatitude,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLatitude,Locality Information,Locality,Verbatim latitude,localityGroupList > localityGroup,vLatitude,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality vLongitude,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLongitude,Locality Information,Locality,Verbatim longitude,localityGroupList > localityGroup,vLongitude,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality vCoordinates,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordinates,Locality Information,Locality,TRS,localityGroupList > localityGroup,vCoordinates,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality vOtherCoords,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vOtherCoords,Locality Information,Locality,Other coords,localityGroupList > localityGroup,vOtherCoords,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality vCoordSys,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordSys,Locality Information,Locality,Other coords system,localityGroupList > localityGroup,vCoordSys,string,n,n,y,vocabulary: vcoordsys,"" +anthro_6-0-5 collectionobject ext.locality decimalLatitude,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLatitude,Locality Information,Locality,Decimal latitude,localityGroupList > localityGroup,decimalLatitude,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality decimalLongitude,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLongitude,Locality Information,Locality,Decimal longitude,localityGroupList > localityGroup,decimalLongitude,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality geodeticDatum,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geodeticDatum,Locality Information,Locality,Datum,localityGroupList > localityGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84" +anthro_6-0-5 collectionobject ext.locality coordUncertainty,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertainty,Locality Information,Locality,Coord uncertainty,localityGroupList > localityGroup,coordUncertainty,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality coordUncertaintyUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertaintyUnit,Locality Information,Locality,Coord uncertainty unit,localityGroupList > localityGroup,coordUncertaintyUnit,string,n,n,y,option list: coordUncertaintyUnits,"feet, kilometers, meters, miles, unknown" +anthro_6-0-5 collectionobject ext.locality vDepth,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDepth,Locality Information,Locality > Depth,Depth verbatim,localityGroupList > localityGroup,vDepth,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality minDepth,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDepth,Locality Information,Locality > Depth,Depth min,localityGroupList > localityGroup,minDepth,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality maxDepth,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDepth,Locality Information,Locality > Depth,Depth max,localityGroupList > localityGroup,maxDepth,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality depthUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.depthUnit,Locality Information,Locality > Depth,Depth unit,localityGroupList > localityGroup,depthUnit,string,n,n,y,option list: depthUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain" +anthro_6-0-5 collectionobject ext.locality vElevation,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vElevation,Locality Information,Locality > Elevation,Elevation verbatim,localityGroupList > localityGroup,vElevation,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality minElevation,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minElevation,Locality Information,Locality > Elevation,Elevation min,localityGroupList > localityGroup,minElevation,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality maxElevation,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxElevation,Locality Information,Locality > Elevation,Elevation max,localityGroupList > localityGroup,maxElevation,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality elevationUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.elevationUnit,Locality Information,Locality > Elevation,Elevation unit,localityGroupList > localityGroup,elevationUnit,string,n,n,y,option list: elevationUnits,"feet, meters, uncertain" +anthro_6-0-5 collectionobject ext.locality vDistanceAboveSurface,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface verbatim,localityGroupList > localityGroup,vDistanceAboveSurface,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality minDistanceAboveSurface,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface min,localityGroupList > localityGroup,minDistanceAboveSurface,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality maxDistanceAboveSurface,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface max,localityGroupList > localityGroup,maxDistanceAboveSurface,float,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality distanceAboveSurfaceUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.distanceAboveSurfaceUnit,Locality Information,Locality > Distance above surface,Distance above surface unit,localityGroupList > localityGroup,distanceAboveSurfaceUnit,string,n,n,y,option list: distanceAboveSurfaceUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain" +anthro_6-0-5 collectionobject ext.locality localityNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localityNote,Locality Information,Locality,Locality note,localityGroupList > localityGroup,localityNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality localitySource,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySource,Locality Information,Locality,Locality source,localityGroupList > localityGroup,localitySource,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality localitySourceDetail,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySourceDetail,Locality Information,Locality,Locality source detail,localityGroupList > localityGroup,localitySourceDetail,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality pointRadiusSpatialFit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.pointRadiusSpatialFit,Locality Information,Locality > Georeference Detail,Pt. radius sp. fit,localityGroupList > localityGroup,pointRadiusSpatialFit,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality footprintWKT,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintWKT,Locality Information,Locality > Georeference Detail,Footprint WKT,localityGroupList > localityGroup,footprintWKT,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality footprintSRS,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSRS,Locality Information,Locality > Georeference Detail,Footprint SRS,localityGroupList > localityGroup,footprintSRS,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality footprintSpatialFit,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSpatialFit,Locality Information,Locality > Georeference Detail,Footprint sp. fit,localityGroupList > localityGroup,footprintSpatialFit,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality coordPrecision,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordPrecision,Locality Information,Locality > Georeference Detail,Coord precision,localityGroupList > localityGroup,coordPrecision,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality geoRefencedBy,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefencedBy,Locality Information,Locality > Georeference Detail,Georeference by,localityGroupList > localityGroup,geoRefencedBy,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality geoRefProtocol,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefProtocol,Locality Information,Locality > Georeference Detail,Georeference protocol,localityGroupList > localityGroup,geoRefProtocol,string,n,n,y,option list: georefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines" +anthro_6-0-5 collectionobject ext.locality geoRefSource,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefSource,Locality Information,Locality > Georeference Detail,Georeference source,localityGroupList > localityGroup,geoRefSource,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality geoRefVerificationStatus,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefVerificationStatus,Locality Information,Locality > Georeference Detail,Georeference verification,localityGroupList > localityGroup,geoRefVerificationStatus,string,n,n,y,option list: georefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian" +anthro_6-0-5 collectionobject ext.locality geoRefRemarks,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefRemarks,Locality Information,Locality > Georeference Detail,Georeference note,localityGroupList > localityGroup,geoRefRemarks,string,n,n,y,"","" +anthro_6-0-5 collectionobject ext.locality geoRefPlaceName,anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefPlaceName,Locality Information,Locality > Georeference Detail,Georeference place name,localityGroupList > localityGroup,geoRefPlaceName,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightType,Rights Management Information,"",Right type,rightsGroupList > rightsGroup,rightType,string,n,n,y,vocabulary: rightstype,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightBeginDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightBeginDate,Rights Management Information,"",Right begin date,rightsGroupList > rightsGroup,rightBeginDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightEndDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightEndDate,Rights Management Information,"",Right end date,rightsGroupList > rightsGroup,rightEndDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightHolder,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolder,Rights Management Information,Right holder,Right holder name,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolder,string,n,n,y,authority: organization/local; authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightHolderContact,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolderContact,Rights Management Information,Right holder,Right holder contact,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolderContact,string,n,n,y,authority: organization/local; authority: person/local,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightJurisdiction,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightJurisdiction,Rights Management Information,"",Right jurisdiction,rightsGroupList > rightsGroup,rightJurisdiction,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +anthro_6-0-5 collectionobject ns2:collectionobjects_common standardizedRightStatement,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.standardizedRightStatement,Rights Management Information,"",Standardized right statement,rightsGroupList > rightsGroup,standardizedRightStatement,string,n,n,y,vocabulary: standardizedrightstatement,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightStatement,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightStatement,Rights Management Information,"",Right statement,rightsGroupList > rightsGroup,rightStatement,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightNote,Rights Management Information,"",Right note,rightsGroupList > rightsGroup,rightNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightInType,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInType,Rights In Management Information,"",Right in type,rightsInGroupList > rightsInGroup > rightInTypes,rightInType,string,n,y,as part of larger repeating group,vocabulary: rightsin,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightInBeginDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInBeginDate,Rights In Management Information,"",Right in begin date,rightsInGroupList > rightsInGroup,rightInBeginDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightInEndDate,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInEndDate,Rights In Management Information,"",Right in end date,rightsInGroupList > rightsInGroup,rightInEndDate,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common agreementSent,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSent,Rights In Management Information,"",Right in agreement sent,rightsInGroupList > rightsInGroup,agreementSent,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common agreementReceived,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementReceived,Rights In Management Information,"",Right in agreement received,rightsInGroupList > rightsInGroup,agreementReceived,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common agreementSigned,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSigned,Rights In Management Information,"",Right in agreement signed,rightsInGroupList > rightsInGroup,agreementSigned,date,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightInRestriction,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInRestriction,Rights In Management Information,"",Right in restriction,rightsInGroupList > rightsInGroup > rightInRestrictions,rightInRestriction,string,n,y,as part of larger repeating group,vocabulary: rightsinrestriction,"" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightReproductionStatement,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightReproductionStatement,Rights In Management Information,"",Right statement for reproduction,rightsInGroupList > rightsInGroup,rightReproductionStatement,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common rightInNote,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInNote,Rights In Management Information,"",Right in note,rightsInGroupList > rightsInGroup,rightInNote,string,n,n,y,"","" +anthro_6-0-5 collectionobject ns2:collectionobjects_common technicalAttribute,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttribute,Object Description Information,Technical attribute,Technical attribute,technicalAttributeGroupList > technicalAttributeGroup,technicalAttribute,string,n,n,y,option list: technicalAttributes,"magnetic-tape-type, record-speed" +anthro_6-0-5 collectionobject ns2:collectionobjects_common technicalAttributeMeasurement,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurement,Object Description Information,Technical attribute,Technical attribute measurement,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurement,string,n,n,y,option list: technicalAttributeMeasurements,"78, metal" +anthro_6-0-5 collectionobject ns2:collectionobjects_common technicalAttributeMeasurementUnit,anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurementUnit,Object Description Information,Technical attribute,Technical attribute measurement unit,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurementUnit,string,n,n,y,option list: technicalAttributeMeasurementUnits,rpm +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Collection Information,collectionobjects_common.fieldCollectionDateGroup,"",fieldCollectionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateDisplayDate,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,datePeriod,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateAssociation,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateNote,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestYear,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestDay,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Production Information,collectionobjects_common.objectProductionDateGroup,"",objectProductionDateGroupList > objectProductionDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateDisplayDate,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.datePeriod,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateAssociation,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateNote,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestYear,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestMonth,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestDay,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestEra,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_nagpra,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA > collectionobjects_nagpra.nagpraReportFiledDate,"",nagpraReportFiledGroupList > nagpraReportFiledGroup > nagpraReportFiledDate,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_naturalhistory_extension,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Biological Information > Determination history > Identification by > collectionobjects_naturalhistory_extension.identDateGroup,"",taxonomicIdentGroupList > taxonomicIdentGroup > identDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Content > collectionobjects_common.contentDateGroup,"",contentDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Textual Inscription > Textual inscription > collectionobjects_common.inscriptionContentDateGroup,"",textualInscriptionGroupList > textualInscriptionGroup > inscriptionContentDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Description Information,Non-Textual Inscription > Non-textual inscription > collectionobjects_common.inscriptionDescriptionDateGroup,"",nonTextualInscriptionGroupList > nonTextualInscriptionGroup > inscriptionDescriptionDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.datePeriod,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateNote,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object History and Association Information,Associations > Associated date > collectionobjects_common.assocStructuredDateGroup,"",assocDateGroupList > assocDateGroup > assocStructuredDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.datePeriod,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateAssociation,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateNote,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestYear,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestDay,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestEra,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object History and Association Information,Previous ownership > collectionobjects_anthro.anthroOwnershipDateGroup,"",anthroOwnershipGroupList > anthroOwnershipGroup > anthroOwnershipDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateDisplayDate,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.datePeriod,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateAssociation,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateNote,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestYear,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestMonth,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestDay,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestEra,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,collectionobject,ns2:collectionobjects_anthro,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Locality Information,Locality > Georeference Detail > ext.locality.geoRefDateGroup,"",localityGroupList > localityGroup > geoRefDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 concept ns2:concepts_common termDisplayName,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termDisplayName,Concept Information,Term,Term display name,conceptTermGroupList > conceptTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termName,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termName,Concept Information,Term,Term name,conceptTermGroupList > conceptTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termQualifier,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termQualifier,Concept Information,Term,Term qualifier,conceptTermGroupList > conceptTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termStatus,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termStatus,Concept Information,Term,Term status,conceptTermGroupList > conceptTermGroup,termStatus,string,n,n,y,option list: conceptTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 concept ns2:concepts_common termType,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termType,Concept Information,Term,Term type,conceptTermGroupList > conceptTermGroup,termType,string,n,n,y,option list: conceptTermTypes,"alternate descriptor, descriptor, used for term" +anthro_6-0-5 concept ns2:concepts_common termFlag,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termFlag,Concept Information,Term,Term flag,conceptTermGroupList > conceptTermGroup,termFlag,string,n,n,y,vocabulary: concepttermflag,"" +anthro_6-0-5 concept ns2:concepts_common historicalStatus,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.historicalStatus,Concept Information,Term,Term historical status,conceptTermGroupList > conceptTermGroup,historicalStatus,string,n,n,y,option list: conceptHistoricalStatuses,"both, current, historical, unknown" +anthro_6-0-5 concept ns2:concepts_common termLanguage,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termLanguage,Concept Information,Term,Term language,conceptTermGroupList > conceptTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 concept ns2:concepts_common termPrefForLang,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termPrefForLang,Concept Information,Term,Term preferred for lang,conceptTermGroupList > conceptTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termSource,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSource,Concept Information,Term > Source,Term source name,conceptTermGroupList > conceptTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 concept ns2:concepts_common termSourceDetail,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceDetail,Concept Information,Term > Source,Term source detail,conceptTermGroupList > conceptTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termSourceID,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceID,Concept Information,Term > Source,Term source ID,conceptTermGroupList > conceptTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common termSourceNote,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceNote,Concept Information,Term > Source,Term source note,conceptTermGroupList > conceptTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common conceptRecordType,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.conceptRecordType,Concept Information,"",Concept type,conceptRecordTypes,conceptRecordType,string,n,y,n,vocabulary: concepttype,"" +anthro_6-0-5 concept ns2:concepts_common scopeNote,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNote,Concept Information,Scope note,Scope note,"",scopeNote,string,n,n,n/a,"","" +anthro_6-0-5 concept ns2:concepts_common scopeNoteSource,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSource,Concept Information,Scope note,Scope note source,"",scopeNoteSource,string,n,n,n/a,"","" +anthro_6-0-5 concept ns2:concepts_common scopeNoteSourceDetail,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSourceDetail,Concept Information,Scope note,Scope note source detail,"",scopeNoteSourceDetail,string,n,n,n/a,"","" +anthro_6-0-5 concept ns2:concepts_common citationSource,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSource,Concept Information,Citation,Citation source,citationGroupList > citationGroup,citationSource,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common citationSourceDetail,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSourceDetail,Concept Information,Citation,Citation source detail,citationGroupList > citationGroup,citationSourceDetail,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common additionalSource,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSource,Concept Information,Additional source,Additional source,additionalSourceGroupList > additionalSourceGroup,additionalSource,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common additionalSourceDetail,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceDetail,Concept Information,Additional source,Additional source detail,additionalSourceGroupList > additionalSourceGroup,additionalSourceDetail,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common additionalSourceID,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceID,Concept Information,Additional source,Additional source ID,additionalSourceGroupList > additionalSourceGroup,additionalSourceID,string,n,n,y,"","" +anthro_6-0-5 concept ns2:concepts_common additionalSourceNote,anthro_6-0-5,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceNote,Concept Information,Additional source,Additional source note,additionalSourceGroupList > additionalSourceGroup,additionalSourceNote,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionCheckRefNumber,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckRefNumber,Condition Check/Technical Assessment Information,"",Reference number,"",conditionCheckRefNumber,string,y,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionCheckAssessmentDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckAssessmentDate,Condition Check/Technical Assessment Information,"",Check/assessment date,"",conditionCheckAssessmentDate,date,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionCheckMethod,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckMethod,Condition Check/Technical Assessment Information,"",Method,"",conditionCheckMethod,string,n,n,n/a,option list: conditionCheckMethods,"observed, xrayed" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionCheckReason,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckReason,Condition Check/Technical Assessment Information,"",Reason,"",conditionCheckReason,string,n,n,n/a,option list: conditionCheckReasons,"conservation, damagedintransit, exhibition, loanin, newacquisition" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionChecker,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionChecker,Condition Check/Technical Assessment Information,"",Checker/assessor,"",conditionChecker,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionCheckNote,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckNote,Condition Check/Technical Assessment Information,"",Note,"",conditionCheckNote,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common objectAuditCategory,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.objectAuditCategory,Object Condition Information,"",Object audit category,"",objectAuditCategory,string,n,n,n/a,option list: objectAuditCategories,"high, low, medium" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conservationTreatmentPriority,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conservationTreatmentPriority,Object Condition Information,"",Conservation treatment priority,"",conservationTreatmentPriority,string,n,n,n/a,option list: conservationTreatmentPriorities,"high, low, medium" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common nextConditionCheckDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.nextConditionCheckDate,Object Condition Information,"",Next check/assessment date,"",nextConditionCheckDate,date,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common completeness,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completeness,Object Condition Information,Completeness,Completeness description,completenessGroupList > completenessGroup,completeness,string,n,n,y,option list: completenessLevels,"complete, fragmented, incomplete" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common completenessDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessDate,Object Condition Information,Completeness,Completeness date,completenessGroupList > completenessGroup,completenessDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common completenessNote,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessNote,Object Condition Information,Completeness,Completeness note,completenessGroupList > completenessGroup,completenessNote,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common hazard,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazard,Object Condition Information,Hazard,Hazard description,hazardGroupList > hazardGroup,hazard,string,n,n,y,option list: hazards,"poisonous, radioactive" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common hazardDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardDate,Object Condition Information,Hazard,Hazard date,hazardGroupList > hazardGroup,hazardDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common hazardNote,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardNote,Object Condition Information,Hazard,Hazard note,hazardGroupList > hazardGroup,hazardNote,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common techAssessment,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessment,Object Condition Information,Technical assessment,Technical assessment description,techAssessmentGroupList > techAssessmentGroup,techAssessment,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common techAssessmentDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessmentDate,Object Condition Information,Technical assessment,Technical assessment date,techAssessmentGroupList > techAssessmentGroup,techAssessmentDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common condition,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.condition,Object Condition Information,Condition,Condition description,conditionCheckGroupList > conditionCheckGroup,condition,string,n,n,y,option list: conditions,"exhibitableneedswork, injeopardy, needsnowork, notexhibitablestable" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionDate,Object Condition Information,Condition,Condition date,conditionCheckGroupList > conditionCheckGroup,conditionDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common conditionNote,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionNote,Object Condition Information,Condition,Condition note,conditionCheckGroupList > conditionCheckGroup,conditionNote,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common envConditionNote,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNote,Object Condition Information,Environmental condition,Environmental condition note,envConditionNoteGroupList > envConditionNoteGroup,envConditionNote,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common envConditionNoteDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNoteDate,Object Condition Information,Environmental condition,Environmental condition date,envConditionNoteGroupList > envConditionNoteGroup,envConditionNoteDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common displayRecommendations,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.displayRecommendations,Object Recommendation/Requirement Information,"",Display recommendation,"",displayRecommendations,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common handlingRecommendations,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.handlingRecommendations,Object Recommendation/Requirement Information,"",Handling recommendation,"",handlingRecommendations,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common securityRecommendations,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.securityRecommendations,Object Recommendation/Requirement Information,"",Security recommendation,"",securityRecommendations,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common storageRequirements,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.storageRequirements,Object Recommendation/Requirement Information,"",Storage recommendation,"",storageRequirements,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common envRecommendations,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envRecommendations,Object Recommendation/Requirement Information,"",Environmental recommendation,"",envRecommendations,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common packingRecommendations,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.packingRecommendations,Object Recommendation/Requirement Information,"",Packing recommendation,"",packingRecommendations,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common specialRequirements,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.specialRequirements,Object Recommendation/Requirement Information,"",Special requirement,"",specialRequirements,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalRequirements,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalRequirements,Object Recommendation/Requirement Information,"",Legal requirement,"",legalRequirements,string,n,n,n/a,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalReqsHeld,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeld,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held description,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeld,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalReqsHeldBeginDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldBeginDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held begin date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldBeginDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalReqsHeldEndDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldEndDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held end date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldEndDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalReqsHeldNumber,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldNumber,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held number,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldNumber,string,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common legalReqsHeldRenewDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldRenewDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held renewal date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldRenewDate,date,n,n,y,"","" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common salvagePriorityCode,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCode,Object Recommendation/Requirement Information,Salvage priority,Salvage priority code,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCode,string,n,n,y,option list: salvagePriorityCodes,"high, low, medium" +anthro_6-0-5 conditioncheck ns2:conditionchecks_common salvagePriorityCodeDate,anthro_6-0-5,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCodeDate,Object Recommendation/Requirement Information,Salvage priority,Salvage priority date,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCodeDate,date,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common conservationNumber,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservationNumber,Conservation Treatment Information,"",Reference number,"",conservationNumber,string,y,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common status,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.status,Conservation Treatment Information,Procedural status,Procedural status,conservationStatusGroupList > conservationStatusGroup,status,string,n,n,y,vocabulary: conservationstatus,"" +anthro_6-0-5 conservation ns2:conservation_common statusDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.statusDate,Conservation Treatment Information,Procedural status,Procedural status date,conservationStatusGroupList > conservationStatusGroup,statusDate,date,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common treatmentPurpose,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentPurpose,Conservation Treatment Information,"",Treatment purpose,"",treatmentPurpose,string,n,n,n/a,vocabulary: treatmentpurpose,"" +anthro_6-0-5 conservation ns2:conservation_common conservator,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservator,Conservation Treatment Information,"",Conservator,conservators,conservator,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 conservation ns2:conservation_common otherParty,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherParty,Conservation Treatment Information,Other treatment party,Other treatment party name,otherPartyGroupList > otherPartyGroup,otherParty,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 conservation ns2:conservation_common otherPartyRole,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyRole,Conservation Treatment Information,Other treatment party,Other treatment party role,otherPartyGroupList > otherPartyGroup,otherPartyRole,string,n,n,y,vocabulary: otherpartyrole,"" +anthro_6-0-5 conservation ns2:conservation_common otherPartyNote,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyNote,Conservation Treatment Information,Other treatment party,Other treatment party note,otherPartyGroupList > otherPartyGroup,otherPartyNote,string,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common examinationStaff,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationStaff,Conservation Treatment Information,Examination,Examination staff,examinationGroupList > examinationGroup,examinationStaff,string,n,n,y,authority: person/local,"" +anthro_6-0-5 conservation ns2:conservation_common examinationPhase,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationPhase,Conservation Treatment Information,Examination,Examination phase of treatment,examinationGroupList > examinationGroup,examinationPhase,string,n,n,y,vocabulary: examinationphase,"" +anthro_6-0-5 conservation ns2:conservation_common examinationDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationDate,Conservation Treatment Information,Examination,Examination date,examinationGroupList > examinationGroup,examinationDate,date,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common examinationNote,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationNote,Conservation Treatment Information,Examination,Examination note,examinationGroupList > examinationGroup,examinationNote,string,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common fabricationNote,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.fabricationNote,Conservation Treatment Information,"",Fabrication note,"",fabricationNote,string,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common proposedTreatment,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedTreatment,Conservation Treatment Information,"",Proposed treatment,"",proposedTreatment,string,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common approvedBy,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedBy,Conservation Treatment Information,"",Approved by,"",approvedBy,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 conservation ns2:conservation_common approvedDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedDate,Conservation Treatment Information,"",Approval date,"",approvedDate,date,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common treatmentStartDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentStartDate,Conservation Treatment Information,"",Treatment start date,"",treatmentStartDate,date,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common treatmentEndDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentEndDate,Conservation Treatment Information,"",Treatment end date,"",treatmentEndDate,date,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common treatmentSummary,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentSummary,Conservation Treatment Information,"",Treatment summary,"",treatmentSummary,string,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common proposedAnalysis,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysis,Object Analysis Information,"",Proposed analysis,"",proposedAnalysis,string,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common researcher,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.researcher,Object Analysis Information,"",Analysis researcher,"",researcher,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 conservation ns2:conservation_common proposedAnalysisDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysisDate,Object Analysis Information,"",Analysis proposal date,"",proposedAnalysisDate,date,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common destAnalysisApprovedDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovedDate,Object Analysis Information,Destructive analysis,Destructive analysis approval date,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovedDate,date,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common destAnalysisApprovalNote,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovalNote,Object Analysis Information,Destructive analysis,Destructive analysis approval note,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovalNote,string,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common sampleBy,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleBy,Object Analysis Information,Destructive analysis,Destructive analysis sample taken by,destAnalysisGroupList > destAnalysisGroup,sampleBy,string,n,n,y,authority: person/local,"" +anthro_6-0-5 conservation ns2:conservation_common sampleDate,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDate,Object Analysis Information,Destructive analysis,Destructive analysis sample date,destAnalysisGroupList > destAnalysisGroup,sampleDate,date,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common sampleDescription,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDescription,Object Analysis Information,Destructive analysis,Destructive analysis sample description,destAnalysisGroupList > destAnalysisGroup,sampleDescription,string,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common sampleReturned,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturned,Object Analysis Information,Destructive analysis,Destructive analysis sample returned,destAnalysisGroupList > destAnalysisGroup,sampleReturned,boolean,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common sampleReturnedLocation,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturnedLocation,Object Analysis Information,Destructive analysis,Destructive analysis sample returned location,destAnalysisGroupList > destAnalysisGroup,sampleReturnedLocation,string,n,n,y,"","" +anthro_6-0-5 conservation ns2:conservation_common analysisMethod,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisMethod,Object Analysis Information,"",Analytical methodology,"",analysisMethod,string,n,n,n/a,"","" +anthro_6-0-5 conservation ns2:conservation_common analysisResults,anthro_6-0-5,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisResults,Object Analysis Information,"",Analytical result,"",analysisResults,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionNumber,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionNumber,Exhibition Information,"",Exhibition number,"",exhibitionNumber,string,y,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common type,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.type,Exhibition Information,"",Type,"",type,string,n,n,n/a,vocabulary: exhibitiontype,"" +anthro_6-0-5 exhibition ns2:exhibitions_common title,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.title,Exhibition Information,"",Title,"",title,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common sponsor,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.sponsor,Exhibition Information,"",Sponsor,sponsors,sponsor,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 exhibition ns2:exhibitions_common organizer,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.organizer,Exhibition Information,"",Organizer,organizers,organizer,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 exhibition ns2:exhibitions_common publishTo,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.publishTo,Exhibition Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +anthro_6-0-5 exhibition ns2:exhibitions_common venue,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venue,Exhibition Information,Venue,Venue name,venueGroupList > venueGroup,venue,string,n,n,y,authority: organization/local; authority: organization/ulan; authority: location/local; authority: location/offsite; authority: place/local; authority: place/tgn,"" +anthro_6-0-5 exhibition ns2:exhibitions_common venueOpeningDate,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueOpeningDate,Exhibition Information,Venue,Venue opening date,venueGroupList > venueGroup,venueOpeningDate,date,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common venueClosingDate,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueClosingDate,Exhibition Information,Venue,Venue closing date,venueGroupList > venueGroup,venueClosingDate,date,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common venueAttendance,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueAttendance,Exhibition Information,Venue,Venue attendance,venueGroupList > venueGroup,venueAttendance,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common venueUrl,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueUrl,Exhibition Information,Venue,Venue web address,venueGroupList > venueGroup,venueUrl,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common workingGroupTitle,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupTitle,Exhibition Information,Working group,Working group title,workingGroupList > workingGroup,workingGroupTitle,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common workingGroupNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupNote,Exhibition Information,Working group,Working group note,workingGroupList > workingGroup,workingGroupNote,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionPerson,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPerson,Exhibition Information,Working group > Working group member,Working group member name,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPerson,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionPersonRole,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPersonRole,Exhibition Information,Working group > Working group member,Working group member role,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPersonRole,string,n,n,y,vocabulary: exhibitionpersonrole,"" +anthro_6-0-5 exhibition ns2:exhibitions_common planningNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.planningNote,Exhibition Information,"",Planning note,"",planningNote,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common curatorialNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.curatorialNote,Exhibition Information,"",Curatorial note,"",curatorialNote,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common generalNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.generalNote,Exhibition Information,"",General note,"",generalNote,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common boilerplateText,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.boilerplateText,Exhibition Information,"",Boilerplate text,"",boilerplateText,string,n,n,n/a,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common galleryRotationName,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationName,Exhibition Information,Gallery rotation,Gallery rotation name,galleryRotationGroupList > galleryRotationGroup,galleryRotationName,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common galleryRotationNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationNote,Exhibition Information,Gallery rotation,Gallery rotation note,galleryRotationGroupList > galleryRotationGroup,galleryRotationNote,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionReference,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReference,Exhibition Information,Bibliographic reference,Bibliographic reference,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionReferenceType,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceType,Exhibition Information,Bibliographic reference,Bibliographic reference type,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceType,string,n,n,y,vocabulary: exhibitionreferencetype,"" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionReferenceNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceNote,Exhibition Information,Bibliographic reference,Bibliographic reference note,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceNote,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionSectionName,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionName,Exhibition Planning Information,Exhibition section,Exhibition section name,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionName,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionSectionLocation,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionLocation,Exhibition Planning Information,Exhibition section,Exhibition section location,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionLocation,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionSectionObjects,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionObjects,Exhibition Planning Information,Exhibition section,Exhibition section objects,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionObjects,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionSectionNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionNote,Exhibition Planning Information,Exhibition section,Exhibition section note,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionNote,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionStatus,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatus,Exhibition Planning Information,Exhibition status,Exhibition status,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatus,string,n,n,y,vocabulary: exhibitionstatus,"" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionStatusDate,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusDate,Exhibition Planning Information,Exhibition status,Exhibition status date,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusDate,date,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionStatusNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusNote,Exhibition Planning Information,Exhibition status,Exhibition status note,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusNote,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectNumber,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNumber,Exhibited Object Information,Object checklist,Object number,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNumber,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectName,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectName,Exhibited Object Information,Object checklist,Object name,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectName,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectConsCheckDate,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsCheckDate,Exhibited Object Information,Object checklist,Object cons. check,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsCheckDate,date,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectConsTreatment,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsTreatment,Exhibited Object Information,Object checklist,Object cons. treatment,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsTreatment,string,n,n,y,option list: exhibitionConsTreatmentStatuses,"Done, Needed, Not needed" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectMount,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectMount,Exhibited Object Information,Object checklist,Object mount,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectMount,string,n,n,y,option list: exhibitionMountStatuses,"Done, Needed, Not needed" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectSection,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSection,Exhibited Object Information,Object checklist,Object section,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSection,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectCase,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectCase,Exhibited Object Information,Object checklist,Object case,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectCase,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectSeqNum,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSeqNum,Exhibited Object Information,Object checklist,Object seq. #,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSeqNum,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectRotation,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectRotation,Exhibited Object Information,Object checklist,Object rotation,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectRotation,string,n,n,y,"","" +anthro_6-0-5 exhibition ns2:exhibitions_common exhibitionObjectNote,anthro_6-0-5,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNote,Exhibited Object Information,Object checklist,Object note,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNote,string,n,n,y,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateNote,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationStartDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationStartDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.datePeriod,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateAssociation,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateNote,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,exhibition,ns2:exhibitions_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Exhibition Information,Gallery rotation > exhibitions_common.galleryRotationEndDateGroup,"",galleryRotationGroupList > galleryRotationGroup > galleryRotationEndDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 group ns2:groups_common title,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.title,Group Information,"",Title,"",title,string,y,n,n/a,"","" +anthro_6-0-5 group ns2:groups_common responsibleDepartment,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.responsibleDepartment,Group Information,"",Responsible department,"",responsibleDepartment,string,n,n,n/a,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings" +anthro_6-0-5 group ns2:groups_common owner,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.owner,Group Information,"",Group owner,"",owner,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 group ns2:groups_common groupEarliestSingleDate,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.groupEarliestSingleDate,Group Information,"",Earliest/single date,"",groupEarliestSingleDate,date,n,n,n/a,"","" +anthro_6-0-5 group ns2:groups_common groupLatestDate,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.groupLatestDate,Group Information,"",Latest date,"",groupLatestDate,date,n,n,n/a,"","" +anthro_6-0-5 group ns2:groups_common scopeNote,anthro_6-0-5,group,ns2:groups_common,ns2:groups_common,groups_common.scopeNote,Group Information,"",Scope note,"",scopeNote,string,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityReferenceNumber,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityReferenceNumber,Insurance and Indemnity Information,"",Reference number,"",insuranceIndemnityReferenceNumber,string,y,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityType,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityType,Insurance and Indemnity Information,"",Type,"",insuranceIndemnityType,string,n,n,n/a,vocabulary: insurancetype,"" +anthro_6-0-5 insurance ns2:insurances_common insurerIndemnifier,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insurerIndemnifier,Insurance and Indemnity Information,"",Insurer/indemnifier,"",insurerIndemnifier,string,n,n,n/a,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityPolicyNumber,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityPolicyNumber,Insurance and Indemnity Information,"",Policy number,"",insuranceIndemnityPolicyNumber,string,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityCurrency,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityCurrency,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price currency,"",insuranceIndemnityCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityValue,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityValue,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price value,"",insuranceIndemnityValue,float,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common minimumLiabilityCurrency,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityCurrency,Insurance and Indemnity Information,Minimum liability price,Minimum liability price currency,"",minimumLiabilityCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 insurance ns2:insurances_common minimumLiabilityValue,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityValue,Insurance and Indemnity Information,Minimum liability price,Minimum liability price value,"",minimumLiabilityValue,float,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityAuthorizer,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizer,Insurance and Indemnity Information,Authorization,Authorizer,"",insuranceIndemnityAuthorizer,string,n,n,n/a,authority: person/local; authority: person/ulan,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityAuthorizationDate,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizationDate,Insurance and Indemnity Information,Authorization,Authorization date,"",insuranceIndemnityAuthorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityStatus,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatus,Insurance and Indemnity Information,Status,Status type,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatus,string,n,n,y,vocabulary: insurancestatus,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityStatusDate,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusDate,Insurance and Indemnity Information,Status,Status date,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusDate,date,n,n,y,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityStatusNote,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusNote,Insurance and Indemnity Information,Status,Status note,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusNote,string,n,n,y,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityNote,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityNote,Insurance and Indemnity Information,"",Note,"",insuranceIndemnityNote,string,n,n,n/a,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityQuoteProvider,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteProvider,Insurance and Indemnity Information,Quote,Quote provider,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteProvider,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityQuoteCurrency,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteCurrency,Insurance and Indemnity Information,Quote,Quote currency,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityQuoteValue,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteValue,Insurance and Indemnity Information,Quote,Quote value,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteValue,float,n,n,y,"","" +anthro_6-0-5 insurance ns2:insurances_common insuranceIndemnityQuoteDate,anthro_6-0-5,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteDate,Insurance and Indemnity Information,Quote,Quote date,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteDate,date,n,n,y,"","" +anthro_6-0-5 intake ns2:intakes_common entryNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNumber,Object Entry Information,"",Entry number,"",entryNumber,string,y,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common entryDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryDate,Object Entry Information,"",Entry date,"",entryDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common entryReason,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryReason,Object Entry Information,"",Entry reason,"",entryReason,string,n,n,n/a,option list: entryReasons,"commission, consideration, enquiry, loan" +anthro_6-0-5 intake ns2:intakes_common entryMethod,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryMethod,Object Entry Information,"",Entry method,entryMethods,entryMethod,string,n,y,n,vocabulary: entrymethod,"" +anthro_6-0-5 intake ns2:intakes_common returnDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.returnDate,Object Entry Information,"",Return date,"",returnDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common currentOwner,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentOwner,Object Entry Information,"",Current owner,currentOwners,currentOwner,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common depositor,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositor,Object Entry Information,Depositor,Depositor name,depositorGroupList > depositorGroup,depositor,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common depositorsRequirements,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositorsRequirements,Object Entry Information,Depositor,Depositor requirements,depositorGroupList > depositorGroup,depositorsRequirements,string,n,n,y,"","" +anthro_6-0-5 intake ns2:intakes_common approvalGroup,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalGroup,Object Entry Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +anthro_6-0-5 intake ns2:intakes_common approvalIndividual,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalIndividual,Object Entry Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"" +anthro_6-0-5 intake ns2:intakes_common approvalStatus,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalStatus,Object Entry Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +anthro_6-0-5 intake ns2:intakes_common approvalDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalDate,Object Entry Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","" +anthro_6-0-5 intake ns2:intakes_common approvalNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalNote,Object Entry Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","" +anthro_6-0-5 intake ns2:intakes_common entryNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNote,Object Entry Information,"",Entry note,"",entryNote,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common packingNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.packingNote,Object Entry Information,"",Packing note,"",packingNote,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionDate,Object Collection Information,"",Field collection date,"",fieldCollectionDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionMethod,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionPlace,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionSource,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local; authority: concept/ethculture,"" +anthro_6-0-5 intake ns2:intakes_common fieldCollector,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common fieldCollectionEventName,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","" +anthro_6-0-5 intake ns2:intakes_common valuer,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuer,Valuation Information,"",Valuer,"",valuer,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common valuationReferenceNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuationReferenceNumber,Valuation Information,"",Valuation reference number,"",valuationReferenceNumber,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common insurer,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurer,Insurance Information,"",Insurer,insurers,insurer,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common insurancePolicyNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurancePolicyNumber,Insurance Information,"",Insurance policy number,"",insurancePolicyNumber,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common insuranceRenewalDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceRenewalDate,Insurance Information,"",Insurance renewal date,"",insuranceRenewalDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common insuranceReferenceNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceReferenceNumber,Insurance Information,"",Insurance reference number,"",insuranceReferenceNumber,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common insuranceNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceNote,Insurance Information,"",Insurance note,"",insuranceNote,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common currentLocation,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocation,Location Information,Current location,Current location,currentLocationGroupList > currentLocationGroup,currentLocation,string,n,n,y,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"" +anthro_6-0-5 intake ns2:intakes_common currentLocationFitness,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationFitness,Location Information,Current location,Current location fitness,currentLocationGroupList > currentLocationGroup,currentLocationFitness,string,n,n,y,vocabulary: conditionfitness,"" +anthro_6-0-5 intake ns2:intakes_common currentLocationNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationNote,Location Information,Current location,Current location note,currentLocationGroupList > currentLocationGroup,currentLocationNote,string,n,n,y,"","" +anthro_6-0-5 intake ns2:intakes_common locationDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.locationDate,Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common normalLocation,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.normalLocation,Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"" +anthro_6-0-5 intake ns2:intakes_common conditionCheckMethod,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckMethod,Condition Check Information,"",Condition check method,conditionCheckMethods,conditionCheckMethod,string,n,y,n,vocabulary: conditioncheckmethod,"" +anthro_6-0-5 intake ns2:intakes_common conditionCheckReason,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReason,Condition Check Information,"",Condition check reason,conditionCheckReasons,conditionCheckReason,string,n,y,n,vocabulary: conditioncheckreason,"" +anthro_6-0-5 intake ns2:intakes_common conditionCheckerOrAssessor,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckerOrAssessor,Condition Check Information,"",Condition check assessor,conditionCheckersOrAssessors,conditionCheckerOrAssessor,string,n,y,n,authority: person/local; authority: organization/local,"" +anthro_6-0-5 intake ns2:intakes_common conditionCheckDate,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckDate,Condition Check Information,"",Condition check date,"",conditionCheckDate,date,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common conditionCheckReferenceNumber,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReferenceNumber,Condition Check Information,"",Condition check reference number,"",conditionCheckReferenceNumber,string,n,n,n/a,"","" +anthro_6-0-5 intake ns2:intakes_common conditionCheckNote,anthro_6-0-5,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckNote,Condition Check Information,"",Condition check note,"",conditionCheckNote,string,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanInNumber,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNumber,Loan In Information,"",Loan in number,"",loanInNumber,string,y,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanPurpose,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanPurpose,Loan In Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation" +anthro_6-0-5 loanin ns2:loansin_common loanGroup,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanGroup,Loan In Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +anthro_6-0-5 loanin ns2:loansin_common loanIndividual,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanIndividual,Loan In Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"" +anthro_6-0-5 loanin ns2:loansin_common loanStatus,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatus,Loan In Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"" +anthro_6-0-5 loanin ns2:loansin_common loanStatusDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusDate,Loan In Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","" +anthro_6-0-5 loanin ns2:loansin_common loanStatusNote,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusNote,Loan In Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","" +anthro_6-0-5 loanin ns2:loansin_common lender,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lender,Loan In Information,Lender,Lender name,lenderGroupList > lenderGroup,lender,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 loanin ns2:loansin_common lendersContact,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersContact,Loan In Information,Lender,Lender contact,lenderGroupList > lenderGroup,lendersContact,string,n,n,y,authority: person/local,"" +anthro_6-0-5 loanin ns2:loansin_common lendersAuthorizer,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizer,Loan In Information,Lender,Lender authorizer,lenderGroupList > lenderGroup,lendersAuthorizer,string,n,n,y,authority: person/local,"" +anthro_6-0-5 loanin ns2:loansin_common lendersAuthorizationDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizationDate,Loan In Information,Lender,Lender authorization date,lenderGroupList > lenderGroup,lendersAuthorizationDate,date,n,n,y,"","" +anthro_6-0-5 loanin ns2:loansin_common borrowersContact,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersContact,Loan In Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanin ns2:loansin_common borrowersAuthorizer,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizer,Loan In Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanin ns2:loansin_common borrowersAuthorizationDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizationDate,Loan In Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanInConditions,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInConditions,Loan In Information,"",Conditions of loan,"",loanInConditions,string,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanInNote,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNote,Loan In Information,"",Note,"",loanInNote,string,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanInDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInDate,Loan In Information,"",Loan in date,"",loanInDate,date,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanReturnDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanReturnDate,Loan In Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","" +anthro_6-0-5 loanin ns2:loansin_common loanRenewalApplicationDate,anthro_6-0-5,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanRenewalApplicationDate,Loan In Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanOutNumber,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNumber,Loan Out Information,"",Loan out number,"",loanOutNumber,string,y,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanPurpose,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanPurpose,Loan Out Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation" +anthro_6-0-5 loanout ns2:loansout_common lendersAuthorizer,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizer,Loan Out Information,Lender,Lender authorizer,"",lendersAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanout ns2:loansout_common lendersContact,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersContact,Loan Out Information,Lender,Lender contact,"",lendersContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanout ns2:loansout_common lendersAuthorizationDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizationDate,Loan Out Information,Lender,Lender authorization date,"",lendersAuthorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common borrower,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrower,Loan Out Information,Borrower,Borrower name,"",borrower,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 loanout ns2:loansout_common borrowersContact,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersContact,Loan Out Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanout ns2:loansout_common borrowersAuthorizer,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizer,Loan Out Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 loanout ns2:loansout_common borrowersAuthorizationDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizationDate,Loan Out Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common specialConditionsOfLoan,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.specialConditionsOfLoan,Loan Out Information,"",Conditions of loan,"",specialConditionsOfLoan,string,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanOutNote,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNote,Loan Out Information,"",Note,"",loanOutNote,string,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanGroup,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanGroup,Loan Out Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +anthro_6-0-5 loanout ns2:loansout_common loanIndividual,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanIndividual,Loan Out Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"" +anthro_6-0-5 loanout ns2:loansout_common loanStatus,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatus,Loan Out Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"" +anthro_6-0-5 loanout ns2:loansout_common loanStatusDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusDate,Loan Out Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","" +anthro_6-0-5 loanout ns2:loansout_common loanStatusNote,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusNote,Loan Out Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","" +anthro_6-0-5 loanout ns2:loansout_common loanOutDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutDate,Loan Out Information,"",Loan out date,"",loanOutDate,date,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanReturnDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanReturnDate,Loan Out Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","" +anthro_6-0-5 loanout ns2:loansout_common loanRenewalApplicationDate,anthro_6-0-5,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanRenewalApplicationDate,Loan Out Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","" +anthro_6-0-5 location ns2:locations_common termDisplayName,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termDisplayName,Storage Location Information,Term,Term display name,locTermGroupList > locTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 location ns2:locations_common termName,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termName,Storage Location Information,Term,Term name,locTermGroupList > locTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common termQualifier,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termQualifier,Storage Location Information,Term,Term qualifier,locTermGroupList > locTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common termStatus,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termStatus,Storage Location Information,Term,Term status,locTermGroupList > locTermGroup,termStatus,string,n,n,y,option list: locationTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 location ns2:locations_common termType,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termType,Storage Location Information,Term,Term type,locTermGroupList > locTermGroup,termType,string,n,n,y,option list: locationTermTypes,"alternate descriptor, descriptor, used for term" +anthro_6-0-5 location ns2:locations_common termFlag,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termFlag,Storage Location Information,Term,Term flag,locTermGroupList > locTermGroup,termFlag,string,n,n,y,vocabulary: locationtermflag,"" +anthro_6-0-5 location ns2:locations_common termLanguage,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termLanguage,Storage Location Information,Term,Term language,locTermGroupList > locTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 location ns2:locations_common termPrefForLang,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termPrefForLang,Storage Location Information,Term,Term preferred for lang,locTermGroupList > locTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common termSource,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termSource,Storage Location Information,Term > Source,Term source name,locTermGroupList > locTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 location ns2:locations_common termSourceDetail,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceDetail,Storage Location Information,Term > Source,Term source detail,locTermGroupList > locTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common termSourceID,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceID,Storage Location Information,Term > Source,Term source ID,locTermGroupList > locTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common termSourceNote,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceNote,Storage Location Information,Term > Source,Term source note,locTermGroupList > locTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common locationType,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.locationType,Storage Location Information,"",Storage location type,"",locationType,string,n,n,n/a,vocabulary: locationtype,"" +anthro_6-0-5 location ns2:locations_common securityNote,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.securityNote,Storage Location Information,"",Security note,"",securityNote,string,n,n,n/a,"","" +anthro_6-0-5 location ns2:locations_common address,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.address,Storage Location Information,"",Address,"",address,string,n,n,n/a,"","" +anthro_6-0-5 location ns2:locations_common accessNote,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.accessNote,Storage Location Information,"",Access note,"",accessNote,string,n,n,n/a,"","" +anthro_6-0-5 location ns2:locations_common conditionNote,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNote,Storage Location Information,Condition note,Condition note,conditionGroupList > conditionGroup,conditionNote,string,n,n,y,"","" +anthro_6-0-5 location ns2:locations_common conditionNoteDate,anthro_6-0-5,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNoteDate,Storage Location Information,Condition note,Condition note date,conditionGroupList > conditionGroup,conditionNoteDate,date,n,n,y,"","" +anthro_6-0-5 media ns2:media_common identificationNumber,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.identificationNumber,Media Handling Information,"",Identification number,"",identificationNumber,string,y,n,n/a,"","" +anthro_6-0-5 media ns2:media_common title,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.title,Media Handling Information,"",Title,"",title,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common publishTo,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.publishTo,Media Handling Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"" +anthro_6-0-5 media ns2:blobs_common name,anthro_6-0-5,media,ns2:blobs_common,ns2:blobs_common,blobs_common.name,Media Handling Information,File Information,Name,"",name,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:blobs_common mimeType,anthro_6-0-5,media,ns2:blobs_common,ns2:blobs_common,blobs_common.mimeType,Media Handling Information,File Information,Type,"",mimeType,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:blobs_common length,anthro_6-0-5,media,ns2:blobs_common,ns2:blobs_common,blobs_common.length,Media Handling Information,File Information,Size,"",length,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common externalUrl,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.externalUrl,Media Handling Information,"",External URL,"",externalUrl,string,n,n,n/a,"","" +anthro_6-0-5 media ext.dimension measuredPart,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.measuredPart,Media Handling Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed" +anthro_6-0-5 media ext.dimension dimensionSummary,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.dimensionSummary,Media Handling Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","" +anthro_6-0-5 media ext.dimension dimension,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.dimension,Media Handling Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width" +anthro_6-0-5 media ext.dimension measuredBy,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.measuredBy,Media Handling Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 media ext.dimension measurementMethod,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.measurementMethod,Media Handling Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station" +anthro_6-0-5 media ext.dimension value,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.value,Media Handling Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","" +anthro_6-0-5 media ext.dimension measurementUnit,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.measurementUnit,Media Handling Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons" +anthro_6-0-5 media ext.dimension valueQualifier,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.valueQualifier,Media Handling Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","" +anthro_6-0-5 media ext.dimension valueDate,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.valueDate,Media Handling Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","" +anthro_6-0-5 media ext.dimension measuredPartNote,anthro_6-0-5,media,ns2:media_common,ext.dimension,ext.dimension.measuredPartNote,Media Handling Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","" +anthro_6-0-5 media ns2:media_common checksumValue,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.checksumValue,Media Handling Information,Checksum,Checksum value,checksumGroupList > checksumGroup,checksumValue,string,n,n,y,"","" +anthro_6-0-5 media ns2:media_common checksumType,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.checksumType,Media Handling Information,Checksum,Checksum type,checksumGroupList > checksumGroup,checksumType,string,n,n,y,vocabulary: checksumtypes,"" +anthro_6-0-5 media ns2:media_common checksumDate,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.checksumDate,Media Handling Information,Checksum,Checksum date,checksumGroupList > checksumGroup,checksumDate,date,n,n,y,"","" +anthro_6-0-5 media ns2:media_common contributor,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.contributor,Media Handling Information,"",Contributor,"",contributor,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 media ns2:media_common creator,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.creator,Media Handling Information,"",Creator,"",creator,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 media ns2:media_common language,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.language,Media Handling Information,"",Language,languageList,language,string,n,y,n,vocabulary: languages,"" +anthro_6-0-5 media ns2:media_common publisher,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.publisher,Media Handling Information,"",Publisher,"",publisher,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 media ns2:media_common relation,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.relation,Media Handling Information,"",Relation,relationList,relation,string,n,y,n,"","" +anthro_6-0-5 media ns2:media_common copyrightStatement,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.copyrightStatement,Media Handling Information,"",Copyright statement,"",copyrightStatement,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common type,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.type,Media Handling Information,"",Type,typeList,type,string,n,y,n,option list: mediaTypes,"dataset, document, moving_image, sound, still_image" +anthro_6-0-5 media ns2:media_common coverage,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.coverage,Media Handling Information,"",Coverage,"",coverage,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common source,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.source,Media Handling Information,"",Source,"",source,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common subject,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.subject,Media Handling Information,"",Subject,subjectList,subject,string,n,y,n,"","" +anthro_6-0-5 media ns2:media_common rightsHolder,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.rightsHolder,Media Handling Information,"",Rights holder,"",rightsHolder,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 media ns2:media_common description,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.description,Media Handling Information,"",Description,"",description,string,n,n,n/a,"","" +anthro_6-0-5 media ns2:media_common altText,anthro_6-0-5,media,ns2:media_common,ns2:media_common,media_common.altText,Media Handling Information,"",Alt text,"",altText,string,n,n,n/a,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateDisplayDate,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.datePeriod,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,datePeriod,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateAssociation,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateAssociation,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateNote,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateNote,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestYear,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestMonth,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestDay,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,media,ns2:media_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Media Handling Information,media_common.dateGroup,"",dateGroupList > dateGroup,scalarValuesComputed,boolean,n,n,y,"","" +anthro_6-0-5 media not-mapped mediaFileURI,anthro_6-0-5,media,not-mapped,not-mapped,not-mapped.mediaFileURI,"","","","",mediaFileURI,string,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common movementReferenceNumber,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.movementReferenceNumber,Object Location Information,"",Reference number,"",movementReferenceNumber,string,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common normalLocation,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.normalLocation,Object Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +anthro_6-0-5 movement ns2:movements_common currentLocation,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocation,Object Location Information,Current location,Current location,"",currentLocation,string,y,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"" +anthro_6-0-5 movement ns2:movements_common currentLocationFitness,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationFitness,Object Location Information,Current location,Current location fitness,"",currentLocationFitness,string,n,n,n/a,option list: locationFitnesses,"dangerous, suitable, temporary, unsuitable" +anthro_6-0-5 movement ns2:movements_common currentLocationNote,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationNote,Object Location Information,Current location,Current location note,"",currentLocationNote,string,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common locationDate,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.locationDate,Object Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common reasonForMove,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.reasonForMove,Movement Information,"",Reason for move,"",reasonForMove,string,n,n,n/a,option list: moveReasons,"collections-facility-move, conservation, exhibition, inventory, loan, newstoragelocation, photography, research" +anthro_6-0-5 movement ns2:movements_common movementMethod,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.movementMethod,Movement Information,"",Movement method,movementMethods,movementMethod,string,n,y,n,option list: moveMethods,"forklift, handcarried, trolley" +anthro_6-0-5 movement ns2:movements_common plannedRemovalDate,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.plannedRemovalDate,Movement Information,"",Planned removal date,"",plannedRemovalDate,date,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common removalDate,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.removalDate,Movement Information,"",Removal date,"",removalDate,date,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common movementContact,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.movementContact,Movement Information,"",Movement contact,"",movementContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 movement ns2:movements_common movementNote,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.movementNote,Movement Information,"",Movement note,"",movementNote,string,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common inventoryActionRequired,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryActionRequired,Inventory Information,"",Inventory action required,"",inventoryActionRequired,string,n,n,n/a,option list: invActions,"conservation, preservation, re-housing" +anthro_6-0-5 movement ns2:movements_common frequencyForInventory,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.frequencyForInventory,Inventory Information,"",Inventory frequency,"",frequencyForInventory,string,n,n,n/a,option list: invFreqs,"annually, daily, monthly, semi-annually, weekly" +anthro_6-0-5 movement ns2:movements_common inventoryDate,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryDate,Inventory Information,"",Inventory date,"",inventoryDate,date,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common nextInventoryDate,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.nextInventoryDate,Inventory Information,"",Next inventory date,"",nextInventoryDate,date,n,n,n/a,"","" +anthro_6-0-5 movement ns2:movements_common inventoryContact,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryContact,Inventory Information,"",Inventory contact,inventoryContactList,inventoryContact,string,n,y,n,authority: person/local,"" +anthro_6-0-5 movement ns2:movements_common inventoryNote,anthro_6-0-5,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryNote,Inventory Information,"",Inventory note,"",inventoryNote,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common exitNumber,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNumber,Object Exit Information,"",Exit number,"",exitNumber,string,y,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common exitReason,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitReason,Object Exit Information,"",Exit reason,"",exitReason,string,n,n,n/a,option list: exitReasons,"deaccession, disposal, returnofloan" +anthro_6-0-5 objectexit ns2:objectexit_common exitMethod,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitMethod,Object Exit Information,"",Exit method,exitMethods,exitMethod,string,n,y,n,option list: exitMethods,"courier, inperson, post" +anthro_6-0-5 objectexit ns2:objectexit_common exitQuantity,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitQuantity,Object Exit Information,"",Exit quantity,"",exitQuantity,integer,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common currentOwner,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.currentOwner,Object Exit Information,"",Current owner,"",currentOwner,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common depositor,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.depositor,Object Exit Information,"",Depositor,"",depositor,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common exitNote,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNote,Object Exit Information,"",Exit note,"",exitNote,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common packingNote,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.packingNote,Object Exit Information,"",Packing note,"",packingNote,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common displosalNewObjectNumber,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNewObjectNumber,Deaccession and Disposal Information,"",Disposal new object number,"",displosalNewObjectNumber,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionAuthorizer,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionAuthorizer,Deaccession and Disposal Information,"",Deaccession authorizer,"",deaccessionAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common authorizationDate,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.authorizationDate,Deaccession and Disposal Information,"",Authorization date,"",authorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionApprovalGroup,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalGroup,Deaccession and Disposal Information,Deaccession approval,Deaccession approval group,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionApprovalIndividual,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalIndividual,Deaccession and Disposal Information,Deaccession approval,Deaccession approval individual,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalIndividual,string,n,n,y,authority: person/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionApprovalStatus,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalStatus,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionApprovalDate,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalDate,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status date,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalDate,date,n,n,y,"","" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionApprovalNote,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalNote,Deaccession and Disposal Information,Deaccession approval,Deaccession approval note,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalNote,string,n,n,y,"","" +anthro_6-0-5 objectexit ns2:objectexit_common deaccessionDate,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionDate,Deaccession and Disposal Information,"",Deaccession date,"",deaccessionDate,date,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common disposalDate,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalDate,Deaccession and Disposal Information,"",Disposal date,"",disposalDate,date,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common disposalMethod,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalMethod,Deaccession and Disposal Information,"",Disposal method,"",disposalMethod,string,n,n,n/a,vocabulary: disposalmethod,"" +anthro_6-0-5 objectexit ns2:objectexit_common displosalReason,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalReason,Deaccession and Disposal Information,"",Disposal reason,"",displosalReason,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common disposalProposedRecipient,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalProposedRecipient,Deaccession and Disposal Information,"",Disposal proposed recipient,"",disposalProposedRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common disposalRecipient,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalRecipient,Deaccession and Disposal Information,"",Disposal recipient,"",disposalRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 objectexit ns2:objectexit_common disposalCurrency,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalCurrency,Deaccession and Disposal Information,Disposal,Disposal currency,"",disposalCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 objectexit ns2:objectexit_common displosalValue,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalValue,Deaccession and Disposal Information,Disposal,Disposal value,"",displosalValue,float,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common groupDisposalCurrency,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisposalCurrency,Deaccession and Disposal Information,Group disposal,Group disposal currency,"",groupDisposalCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 objectexit ns2:objectexit_common groupDisplosalValue,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisplosalValue,Deaccession and Disposal Information,Group disposal,Group disposal value,"",groupDisplosalValue,float,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common displosalProvisos,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalProvisos,Deaccession and Disposal Information,"",Disposal provisos,"",displosalProvisos,string,n,n,n/a,"","" +anthro_6-0-5 objectexit ns2:objectexit_common displosalNote,anthro_6-0-5,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNote,Deaccession and Disposal Information,"",Disposal note,"",displosalNote,string,n,n,n/a,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.datePeriod,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateAssociation,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateNote,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,objectexit,ns2:objectexit_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Object Exit Information,objectexit_common.exitDateGroup,"",exitDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +anthro_6-0-5 organization ns2:organizations_common termDisplayName,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termDisplayName,Organization Information,Term,Term display name,orgTermGroupList > orgTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termName,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termName,Organization Information,Term,Term name,orgTermGroupList > orgTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termQualifier,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termQualifier,Organization Information,Term,Term qualifier,orgTermGroupList > orgTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termStatus,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termStatus,Organization Information,Term,Term status,orgTermGroupList > orgTermGroup,termStatus,string,n,n,y,option list: orgTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 organization ns2:organizations_common termType,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termType,Organization Information,Term,Term type,orgTermGroupList > orgTermGroup,termType,string,n,n,y,option list: orgTermTypes,"alternate descriptor, descriptor, used for term" +anthro_6-0-5 organization ns2:organizations_common termFlag,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termFlag,Organization Information,Term,Term flag,orgTermGroupList > orgTermGroup,termFlag,string,n,n,y,vocabulary: orgtermflag,"" +anthro_6-0-5 organization ns2:organizations_common termLanguage,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termLanguage,Organization Information,Term,Term language,orgTermGroupList > orgTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 organization ns2:organizations_common termPrefForLang,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termPrefForLang,Organization Information,Term,Term preferred for lang,orgTermGroupList > orgTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common mainBodyName,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.mainBodyName,Organization Information,Term > Name detail,Term main body name,orgTermGroupList > orgTermGroup,mainBodyName,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common additionsToName,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.additionsToName,Organization Information,Term > Name detail,Term name addition,orgTermGroupList > orgTermGroup,additionsToName,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termSource,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSource,Organization Information,Term > Source,Term source name,orgTermGroupList > orgTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 organization ns2:organizations_common termSourceDetail,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceDetail,Organization Information,Term > Source,Term source detail,orgTermGroupList > orgTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termSourceID,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceID,Organization Information,Term > Source,Term source ID,orgTermGroupList > orgTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common termSourceNote,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceNote,Organization Information,Term > Source,Term source note,orgTermGroupList > orgTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 organization ns2:organizations_common organizationRecordType,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.organizationRecordType,Organization Information,"",Organization type,organizationRecordTypes,organizationRecordType,string,n,y,n,vocabulary: organizationtype,"" +anthro_6-0-5 organization ns2:organizations_common foundingPlace,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingPlace,Organization Information,"",Foundation place,"",foundingPlace,string,n,n,n/a,"","" +anthro_6-0-5 organization ns2:organizations_common group,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.group,Organization Information,"",Group,groups,group,string,n,y,n,"","" +anthro_6-0-5 organization ns2:organizations_common function,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.function,Organization Information,"",Function,functions,function,string,n,y,n,"","" +anthro_6-0-5 organization ns2:organizations_common historyNote,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.historyNote,Organization Information,"",History,historyNotes,historyNote,string,n,y,n,"","" +anthro_6-0-5 organization ns2:organizations_common contactName,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactName,Organization Information,Contact person,Contact name,contactGroupList > contactGroup,contactName,string,n,n,y,authority: person/local,"" +anthro_6-0-5 organization ns2:organizations_common contactRole,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactRole,Organization Information,Contact person,Contact role,contactGroupList > contactGroup,contactRole,string,n,n,y,vocabulary: contactrole,"" +anthro_6-0-5 organization ns2:organizations_common contactStatus,anthro_6-0-5,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactStatus,Organization Information,Contact person,Contact status,contactGroupList > contactGroup,contactStatus,string,n,n,y,vocabulary: contactstatus,"" +anthro_6-0-5 organization ns2:contacts_common email,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common emailType,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal" +anthro_6-0-5 organization ns2:contacts_common telephoneNumber,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common telephoneNumberType,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other" +anthro_6-0-5 organization ns2:contacts_common faxNumber,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common faxNumberType,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other" +anthro_6-0-5 organization ns2:contacts_common webAddress,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common webAddressType,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal" +anthro_6-0-5 organization ns2:contacts_common addressPlace1,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common addressPlace2,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common addressMunicipality,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common addressStateOrProvince,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common addressPostCode,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","" +anthro_6-0-5 organization ns2:contacts_common addressCountry,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +anthro_6-0-5 organization ns2:contacts_common addressType,anthro_6-0-5,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,organizations_common.foundingDateGroup,"",foundingDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,organizations_common.dissolutionDateGroup,"",dissolutionDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,Contact person > organizations_common.contactDateGroup,"",contactGroupList > contactGroup > contactDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.datePeriod,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateAssociation,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateNote,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,organization,ns2:organizations_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Organization Information,Contact person > organizations_common.contactEndDateGroup,"",contactGroupList > contactGroup > contactEndDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 person ns2:persons_common termDisplayName,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termDisplayName,Person Information,Term,Term display name,personTermGroupList > personTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 person ns2:persons_common termName,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termName,Person Information,Term,Term name,personTermGroupList > personTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common termQualifier,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termQualifier,Person Information,Term,Term qualifier,personTermGroupList > personTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common termStatus,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termStatus,Person Information,Term,Term status,personTermGroupList > personTermGroup,termStatus,string,n,n,y,option list: personTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 person ns2:persons_common termType,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termType,Person Information,Term,Term type,personTermGroupList > personTermGroup,termType,string,n,n,y,option list: personTermTypes,"alternate descriptor, descriptor, used for term" +anthro_6-0-5 person ns2:persons_common termFlag,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termFlag,Person Information,Term,Term flag,personTermGroupList > personTermGroup,termFlag,string,n,n,y,vocabulary: persontermflag,"" +anthro_6-0-5 person ns2:persons_common termLanguage,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termLanguage,Person Information,Term,Term language,personTermGroupList > personTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 person ns2:persons_common termPrefForLang,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termPrefForLang,Person Information,Term,Term preferred for lang,personTermGroupList > personTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common salutation,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.salutation,Person Information,Term > Name detail,Term salutation,personTermGroupList > personTermGroup,salutation,string,n,n,y,option list: salutations,"dear, hello, to" +anthro_6-0-5 person ns2:persons_common title,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.title,Person Information,Term > Name detail,Term title,personTermGroupList > personTermGroup,title,string,n,n,y,option list: personTitles,"Admiral, Baron, Baroness, Captain, Commander, Commodore, Count, Countess, Dame, Dr, General, Governor, Honorable, Judge, King, Lady, Lord, Miss, Mr, Mrs, Ms, Prince, Princess, Professor, Queen, Reverend, Saint, Sir" +anthro_6-0-5 person ns2:persons_common foreName,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.foreName,Person Information,Term > Name detail,Term forename,personTermGroupList > personTermGroup,foreName,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common middleName,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.middleName,Person Information,Term > Name detail,Term middle name,personTermGroupList > personTermGroup,middleName,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common surName,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.surName,Person Information,Term > Name detail,Term surname,personTermGroupList > personTermGroup,surName,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common nameAdditions,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.nameAdditions,Person Information,Term > Name detail,Term name addition,personTermGroupList > personTermGroup,nameAdditions,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common initials,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.initials,Person Information,Term > Name detail,Term initials,personTermGroupList > personTermGroup,initials,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common termSource,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termSource,Person Information,Term > Source,Term source name,personTermGroupList > personTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 person ns2:persons_common termSourceDetail,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceDetail,Person Information,Term > Source,Term source detail,personTermGroupList > personTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common termSourceID,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceID,Person Information,Term > Source,Term source ID,personTermGroupList > personTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common termSourceNote,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceNote,Person Information,Term > Source,Term source note,personTermGroupList > personTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common personRecordType,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.personRecordType,Person Information,"",Person type,personRecordTypes,personRecordType,string,n,y,n,vocabulary: persontermtype,"" +anthro_6-0-5 person ns2:persons_common gender,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.gender,Person Information,"",Gender,"",gender,string,n,n,n/a,option list: genders,"agender, bigender, dyadic, female, feminine, gender-fluid, gender-neutral, gender-non-binary, genderqueer, intersex, male, masculine, pansexual, polygender, questioning, transgender, transsexual, two-spirit" +anthro_6-0-5 person ns2:persons_common occupation,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.occupation,Person Information,"",Occupation,occupations,occupation,string,n,y,n,"","" +anthro_6-0-5 person ns2:persons_common schoolOrStyle,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.schoolOrStyle,Person Information,"",School/style,schoolsOrStyles,schoolOrStyle,string,n,y,n,"","" +anthro_6-0-5 person ns2:persons_common group,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.group,Person Information,"",Group,groups,group,string,n,y,n,"","" +anthro_6-0-5 person ns2:persons_common nationality,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.nationality,Person Information,"",Nationality,nationalities,nationality,string,n,y,n,"","" +anthro_6-0-5 person ns2:persons_common nameNote,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.nameNote,Person Information,"",Name note,"",nameNote,string,n,n,n/a,"","" +anthro_6-0-5 person ns2:persons_common birthPlace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.birthPlace,Person Information,"",Place of birth,"",birthPlace,string,n,n,n/a,"","" +anthro_6-0-5 person ns2:persons_common deathPlace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.deathPlace,Person Information,"",Place of death,"",deathPlace,string,n,n,n/a,"","" +anthro_6-0-5 person ns2:persons_common bioNote,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.bioNote,Person Information,"",Biographical note,"",bioNote,string,n,n,n/a,"","" +anthro_6-0-5 person ns2:contacts_common email,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common emailType,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal" +anthro_6-0-5 person ns2:contacts_common telephoneNumber,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common telephoneNumberType,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other" +anthro_6-0-5 person ns2:contacts_common faxNumber,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common faxNumberType,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other" +anthro_6-0-5 person ns2:contacts_common webAddress,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common webAddressType,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal" +anthro_6-0-5 person ns2:contacts_common addressPlace1,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common addressPlace2,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common addressMunicipality,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common addressStateOrProvince,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common addressPostCode,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","" +anthro_6-0-5 person ns2:contacts_common addressCountry,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW" +anthro_6-0-5 person ns2:contacts_common addressType,anthro_6-0-5,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other" +anthro_6-0-5 person ns2:persons_common declinedToAnswerPronoun,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied declined to answer,pronounGroupList > pronounGroup,declinedToAnswerPronoun,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedPronoun,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied,pronounGroupList > pronounGroup > suppliedPronouns,suppliedPronoun,string,n,y,as part of larger repeating group,vocabulary: suppliedpronoun,"" +anthro_6-0-5 person ns2:persons_common useRestrictionPronoun,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied use restriction,pronounGroupList > pronounGroup,useRestrictionPronoun,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerGender,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerGender,Maker-Supplied Identity Information,Gender,Gender supplied declined to answer,genderGroupList > genderGroup,declinedToAnswerGender,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedGender,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedGender,Maker-Supplied Identity Information,Gender,Gender supplied,genderGroupList > genderGroup > suppliedGenders,suppliedGender,string,n,y,as part of larger repeating group,vocabulary: suppliedgender,"" +anthro_6-0-5 person ns2:persons_common useRestrictionGender,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionGender,Maker-Supplied Identity Information,Gender,Gender supplied use restriction,genderGroupList > genderGroup,useRestrictionGender,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerRace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerRace,Maker-Supplied Identity Information,Race,Race supplied declined to answer,raceGroupList > raceGroup,declinedToAnswerRace,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedRace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedRace,Maker-Supplied Identity Information,Race,Race supplied,raceGroupList > raceGroup > suppliedRaces,suppliedRace,string,n,y,as part of larger repeating group,vocabulary: suppliedrace,"" +anthro_6-0-5 person ns2:persons_common useRestrictionRace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionRace,Maker-Supplied Identity Information,Race,Race supplied use restriction,raceGroupList > raceGroup,useRestrictionRace,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerEthnicity,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied declined to answer,ethnicityGroupList > ethnicityGroup,declinedToAnswerEthnicity,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedEthnicity,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied,ethnicityGroupList > ethnicityGroup > suppliedEthnicities,suppliedEthnicity,string,n,y,as part of larger repeating group,vocabulary: suppliedethnicity,"" +anthro_6-0-5 person ns2:persons_common useRestrictionEthnicity,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied use restriction,ethnicityGroupList > ethnicityGroup,useRestrictionEthnicity,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerSexuality,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied declined to answer,sexualityGroupList > sexualityGroup,declinedToAnswerSexuality,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedSexuality,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied,sexualityGroupList > sexualityGroup > suppliedSexualities,suppliedSexuality,string,n,y,as part of larger repeating group,vocabulary: suppliedsexuality,"" +anthro_6-0-5 person ns2:persons_common useRestrictionSexuality,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied use restriction,sexualityGroupList > sexualityGroup,useRestrictionSexuality,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerBirthPlace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied declined to answer,birthPlaceGroupList > birthPlaceGroup,declinedToAnswerBirthPlace,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common suppliedBirthPlace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied,birthPlaceGroupList > birthPlaceGroup,suppliedBirthPlace,string,n,n,y,authority: place/local,"" +anthro_6-0-5 person ns2:persons_common useRestrictionBirthPlace,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied use restriction,birthPlaceGroupList > birthPlaceGroup,useRestrictionBirthPlace,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common declinedToAnswerBirthDate,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied declined to answer,suppliedBirthDateGroupList > suppliedBirthDateGroup,declinedToAnswerBirthDate,boolean,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common useRestrictionBirthDate,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied use restriction,suppliedBirthDateGroupList > suppliedBirthDateGroup,useRestrictionBirthDate,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common informationAuthor,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.informationAuthor,Maker-Supplied Identity Information,Other information,Other information author,otherGroupList > otherGroup,informationAuthor,string,n,n,y,authority: person/local,"" +anthro_6-0-5 person ns2:persons_common informationDate,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.informationDate,Maker-Supplied Identity Information,Other information,Other information date,otherGroupList > otherGroup,informationDate,date,n,n,y,"","" +anthro_6-0-5 person ns2:persons_common informationUseRestriction,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.informationUseRestriction,Maker-Supplied Identity Information,Other information,Other information use restriction,otherGroupList > otherGroup,informationUseRestriction,string,n,n,y,vocabulary: userestriction,"" +anthro_6-0-5 person ns2:persons_common otherInformation,anthro_6-0-5,person,ns2:persons_common,ns2:persons_common,persons_common.otherInformation,Maker-Supplied Identity Information,Other information,Other information note,otherGroupList > otherGroup,otherInformation,string,n,n,y,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Person Information,persons_common.birthDateGroup,"",birthDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Person Information,persons_common.birthDateGroup,"",birthDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Person Information,persons_common.birthDateGroup,"",birthDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateDisplayDate,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Person Information,persons_common.deathDateGroup,"",deathDateGroup,datePeriod,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateAssociation,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateNote,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleYear,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleMonth,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleDay,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestSingleQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestYear,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestMonth,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestDay,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestEra,string,n,n,n,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestCertainty,string,n,n,n,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifier,string,n,n,n,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifierValue,integer,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestQualifierUnit,string,n,n,n,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateEarliestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Person Information,persons_common.deathDateGroup,"",deathDateGroup,dateLatestScalarValue,string,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Person Information,persons_common.deathDateGroup,"",deathDateGroup,scalarValuesComputed,boolean,n,n,n,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.datePeriod,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateAssociation,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateNote,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,person,ns2:persons_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Maker-Supplied Identity Information,Supplied birth date > persons_common.suppliedStructuredBirthDateGroup,"",suppliedBirthDateGroupList > suppliedBirthDateGroup > suppliedStructuredBirthDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 place ns2:places_common termDisplayName,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termDisplayName,Place Information,Term,Term display name,placeTermGroupList > placeTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 place ns2:places_common termName,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termName,Place Information,Term,Term name,placeTermGroupList > placeTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common termQualifier,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termQualifier,Place Information,Term,Term qualifier,placeTermGroupList > placeTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common termStatus,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termStatus,Place Information,Term,Term status,placeTermGroupList > placeTermGroup,termStatus,string,n,n,y,option list: placeTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 place ns2:places_common termType,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termType,Place Information,Term,Term type,placeTermGroupList > placeTermGroup,termType,string,n,n,y,option list: placeTermTypes,"common, descriptive, local, native, non-native, spelling-variant, technical-scientific" +anthro_6-0-5 place ns2:places_common termFlag,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termFlag,Place Information,Term,Term flag,placeTermGroupList > placeTermGroup,termFlag,string,n,n,y,vocabulary: placetermflag,"" +anthro_6-0-5 place ns2:places_common historicalStatus,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.historicalStatus,Place Information,Term,Term historical status,placeTermGroupList > placeTermGroup,historicalStatus,string,n,n,y,option list: placeHistoricalStatuses,"both, current, historical" +anthro_6-0-5 place ns2:places_common termLanguage,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termLanguage,Place Information,Term,Term language,placeTermGroupList > placeTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 place ns2:places_common termPrefForLang,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termPrefForLang,Place Information,Term,Term preferred for lang,placeTermGroupList > placeTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 place ns2:places_common nameAbbrev,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.nameAbbrev,Place Information,Term,Term abbreviation,placeTermGroupList > placeTermGroup,nameAbbrev,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common nameNote,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.nameNote,Place Information,Term,Term note,placeTermGroupList > placeTermGroup,nameNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common termSource,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termSource,Place Information,Term > Source,Term source name,placeTermGroupList > placeTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 place ns2:places_common termSourceDetail,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termSourceDetail,Place Information,Term > Source,Term source detail,placeTermGroupList > placeTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common termSourceID,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termSourceID,Place Information,Term > Source,Term source ID,placeTermGroupList > placeTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common termSourceNote,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.termSourceNote,Place Information,Term > Source,Term source note,placeTermGroupList > placeTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common placeType,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.placeType,Place Information,"",Place type,"",placeType,string,n,n,n/a,option list: placeTypes,"autonomous-region, borough, city, collection-site, continent, country, country-code, county, dependent-state, deserted-settlement, district-national, general-region, governorate, inhabited-place, island, island-group, localilty, metropolitan-area, municipality, nation, national-division, neighborhood, occupied-territory, prefecture, province, region, state, state-province, territory, township, union-territory, unitary-authority, urban-prefecture, water-body" +anthro_6-0-5 place ns2:places_common placeSource,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.placeSource,Place Information,"",Place source,"",placeSource,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common owner,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.owner,Place Information,Ownership,Owner,placeOwnerGroupList > placeOwnerGroup,owner,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 place ns2:places_common ownershipNote,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.ownershipNote,Place Information,Ownership,Ownership note,placeOwnerGroupList > placeOwnerGroup,ownershipNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common placeNote,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.placeNote,Place Information,"",Place note,"",placeNote,string,n,n,n/a,"","" +anthro_6-0-5 place ext.address addressPlace1,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressPlace1,Place Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","" +anthro_6-0-5 place ext.address addressPlace2,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressPlace2,Place Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","" +anthro_6-0-5 place ext.address addressMunicipality,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressMunicipality,Place Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 place ext.address addressStateOrProvince,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressStateOrProvince,Place Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 place ext.address addressPostCode,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressPostCode,Place Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","" +anthro_6-0-5 place ext.address addressCountry,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressCountry,Place Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 place ext.address addressType,anthro_6-0-5,place,ns2:places_common,ext.address,ext.address.addressType,Place Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"" +anthro_6-0-5 place ns2:places_nagpra basicInfo,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.basicInfo,Background Research and Additional Information,"",Basic information,basicInfoList,basicInfo,string,n,n,n,"","" +anthro_6-0-5 place ns2:places_nagpra nagpraHistory,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.nagpraHistory,Background Research and Additional Information,"",NAGPRA inventory history,nagpraHistoryList,nagpraHistory,string,n,n,n,"","" +anthro_6-0-5 place ns2:places_nagpra backgroundSummary,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.backgroundSummary,Background Research and Additional Information,"",Background and records summary,backgroundSummaryList,backgroundSummary,string,n,n,n,"","" +anthro_6-0-5 place ns2:places_nagpra landOwnershipInfo,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.landOwnershipInfo,Background Research and Additional Information,"",Land ownership information,landOwnershipInfoList,landOwnershipInfo,string,n,n,n,"","" +anthro_6-0-5 place ns2:places_nagpra assertionName,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionName,Cultural Affiliation Lines of Evidence,"",Assertion name,assertionGroupList > assertionGroup,assertionName,string,n,n,y,vocabulary: nagpraassertionnames,"" +anthro_6-0-5 place ns2:places_nagpra assertionDescription,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionDescription,Cultural Affiliation Lines of Evidence,"",Assertion description,assertionGroupList > assertionGroup,assertionDescription,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra assertionSourceBy,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceBy,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion by,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceBy,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"" +anthro_6-0-5 place ns2:places_nagpra assertionSourceDate,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceDate,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source date,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceDate,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra assertionSourceNote,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source note,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra assertionRelatedRecords,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionRelatedRecords,Cultural Affiliation Lines of Evidence,Assertion Information,Museum records,assertionGroupList > assertionGroup,assertionRelatedRecords,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra assertionReference,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReference,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion reference name,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 place ns2:places_nagpra assertionReferenceNote,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReferenceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion refence note,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReferenceNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra museumRecords,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.museumRecords,Documents Consulted for Cultural Affiliation Research,"",Museum records,museumRecordsList,museumRecords,string,n,n,n,"","" +anthro_6-0-5 place ns2:places_nagpra manuscriptReferences,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptReferences,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript reference,manuscriptGroupList > manuscriptGroup,manuscriptReferences,string,n,n,y,authority: citation/local,"" +anthro_6-0-5 place ns2:places_nagpra manuscriptNote,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptNote,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript note,manuscriptGroupList > manuscriptGroup,manuscriptNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_nagpra reportReferences,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportReferences,Documents Consulted for Cultural Affiliation Research,Published report,Published report reference,reportRefGroupList > reportRefGroup,reportReferences,string,n,n,y,authority: citation/local,"" +anthro_6-0-5 place ns2:places_nagpra reportNote,anthro_6-0-5,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportNote,Documents Consulted for Cultural Affiliation Research,Published report,Published report note,reportRefGroupList > reportRefGroup,reportNote,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common vCoordinates,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vCoordinates,Locality Information,"",Verbatim coords,"",vCoordinates,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vLatitude,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vLatitude,Locality Information,"",Verbatim latitude,"",vLatitude,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vLongitude,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vLongitude,Locality Information,"",Verbatim longitude,"",vLongitude,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vCoordSys,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vCoordSys,Locality Information,"",Coordinate system,"",vCoordSys,string,n,n,n/a,option list: coordinateSystems,"altitude-depth, latitude-longitude, national-grid-reference, utm" +anthro_6-0-5 place ns2:places_common vSpatialReferenceSystem,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vSpatialReferenceSystem,Locality Information,"",Spatial ref system,"",vSpatialReferenceSystem,string,n,n,n/a,option list: spatialRefSystems,"epsg4267-nad27, epsg4269-nad83, epsg4326-wgs84, unknown" +anthro_6-0-5 place ns2:places_common vElevation,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vElevation,Locality Information,"",Elevation,"",vElevation,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vDepth,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vDepth,Locality Information,"",Depth,"",vDepth,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vDistanceAboveSurface,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vDistanceAboveSurface,Locality Information,"",Distance above surface,"",vDistanceAboveSurface,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vUnitofMeasure,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vUnitofMeasure,Locality Information,"",Unit of measure,"",vUnitofMeasure,string,n,n,n/a,option list: localityUnits,"acres, centimeters, feet, hectares, inches, kilometers, meters, miles, millimeters, square-feet, square-meters, square-yards, stories" +anthro_6-0-5 place ns2:places_common minElevationInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.minElevationInMeters,Locality Information,"",Min elevation (m),"",minElevationInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common maxElevationInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.maxElevationInMeters,Locality Information,"",Max elevation (m),"",maxElevationInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common minDepthInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.minDepthInMeters,Locality Information,"",Min depth (m),"",minDepthInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common maxDepthInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.maxDepthInMeters,Locality Information,"",Max depth (m),"",maxDepthInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common minDistanceAboveSurfaceInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.minDistanceAboveSurfaceInMeters,Locality Information,"",Min distance above surface (m),"",minDistanceAboveSurfaceInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common maxDistanceAboveSurfaceInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.maxDistanceAboveSurfaceInMeters,Locality Information,"",Max distance above surface (m),"",maxDistanceAboveSurfaceInMeters,float,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vCoordSource,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vCoordSource,Locality Information,"",Coordinate source,"",vCoordSource,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common vCoordSourceRefId,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.vCoordSourceRefId,Locality Information,"",Coordinate source detail,"",vCoordSourceRefId,string,n,n,n/a,"","" +anthro_6-0-5 place ns2:places_common decimalLatitude,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.decimalLatitude,Georeference Information,Georeference,Georeference decimal latitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLatitude,float,n,n,y,"","" +anthro_6-0-5 place ns2:places_common decimalLongitude,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.decimalLongitude,Georeference Information,Georeference,Georeference decimal longitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLongitude,float,n,n,y,"","" +anthro_6-0-5 place ns2:places_common geodeticDatum,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geodeticDatum,Georeference Information,Georeference,Georeference datum,placeGeoRefGroupList > placeGeoRefGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84" +anthro_6-0-5 place ns2:places_common coordUncertaintyInMeters,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.coordUncertaintyInMeters,Georeference Information,Georeference,Georeference uncertainty (m),placeGeoRefGroupList > placeGeoRefGroup,coordUncertaintyInMeters,integer,n,n,y,"","" +anthro_6-0-5 place ns2:places_common coordPrecision,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.coordPrecision,Georeference Information,Georeference,Georeference precision,placeGeoRefGroupList > placeGeoRefGroup,coordPrecision,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common pointRadiusSpatialFit,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.pointRadiusSpatialFit,Georeference Information,Georeference,Georeference point radius spatial fit,placeGeoRefGroupList > placeGeoRefGroup,pointRadiusSpatialFit,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common footprintWKT,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.footprintWKT,Georeference Information,Georeference,Georeference footprint WKT,placeGeoRefGroupList > placeGeoRefGroup,footprintWKT,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common footprintSRS,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.footprintSRS,Georeference Information,Georeference,Georeference footprint SRS,placeGeoRefGroupList > placeGeoRefGroup,footprintSRS,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common footprintSpatialFit,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.footprintSpatialFit,Georeference Information,Georeference,Georeference footprint spatial fit,placeGeoRefGroupList > placeGeoRefGroup,footprintSpatialFit,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common geoReferencedBy,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoReferencedBy,Georeference Information,Georeference,Georeferenced by,placeGeoRefGroupList > placeGeoRefGroup,geoReferencedBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 place ns2:places_common geoRefProtocol,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoRefProtocol,Georeference Information,Georeference,Georeference protocol,placeGeoRefGroupList > placeGeoRefGroup,geoRefProtocol,string,n,n,y,option list: geoRefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines" +anthro_6-0-5 place ns2:places_common geoRefSource,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoRefSource,Georeference Information,Georeference,Georeference source,placeGeoRefGroupList > placeGeoRefGroup,geoRefSource,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common geoRefVerificationStatus,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoRefVerificationStatus,Georeference Information,Georeference,Georeference verification,placeGeoRefGroupList > placeGeoRefGroup,geoRefVerificationStatus,string,n,n,y,option list: geoRefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian" +anthro_6-0-5 place ns2:places_common geoRefRemarks,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoRefRemarks,Georeference Information,Georeference,Georeference remarks,placeGeoRefGroupList > placeGeoRefGroup,geoRefRemarks,string,n,n,y,"","" +anthro_6-0-5 place ns2:places_common geoRefPlaceName,anthro_6-0-5,place,ns2:places_common,ns2:places_common,places_common.geoRefPlaceName,Georeference Information,Georeference,Georeference place name,placeGeoRefGroupList > placeGeoRefGroup,geoRefPlaceName,string,n,n,y,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Place Information,Term > places_common.nameDateGroup,"",placeTermGroupList > placeTermGroup > nameDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Place Information,Ownership > places_common.ownershipDateGroup,"",placeOwnerGroupList > placeOwnerGroup > ownershipDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.datePeriod,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateAssociation,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateNote,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,place,ns2:places_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Georeference Information,Georeference > places_common.geoRefDateGroup,"",placeGeoRefGroupList > placeGeoRefGroup > geoRefDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 transport ns2:transports_common transportReferenceNumber,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportReferenceNumber,Transport Information,"",Transport reference number,"",transportReferenceNumber,string,y,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportMethod,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportMethod,Transport Information,"",Transport method,"",transportMethod,string,n,n,n/a,option list: transportMethodTypes,"LOFO freight, cargo aircraft, combi aircraft, common carrier, exclusive-use truck, expedited use freight, mail, non-commercial carrier, ocean freight, passenger aircraft, shuttle service" +anthro_6-0-5 transport ns2:transports_common numberOfCrates,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.numberOfCrates,Transport Information,"",Number of crates/objects,"",numberOfCrates,integer,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transporter,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transporter,Transport Information,Transporter,Transporter name,"",transporter,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 transport ns2:transports_common transporterContact,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContact,Transport Information,Transporter,Transporter contact,"",transporterContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 transport ns2:transports_common transporterContactNumber,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContactNumber,Transport Information,Transporter,Transporter contact number,"",transporterContactNumber,string,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportAuthorizer,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizer,Transport Information,Authorization,Transport authorizer,"",transportAuthorizer,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 transport ns2:transports_common transportAuthorizationDate,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizationDate,Transport Information,Authorization,Authorization date,"",transportAuthorizationDate,date,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportTrackingNumber,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumber,Transport Information,Tracking number,Tracking number,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumber,string,n,n,y,"","" +anthro_6-0-5 transport ns2:transports_common transportTrackingNumberNote,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumberNote,Transport Information,Tracking number,Tracking number note,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumberNote,string,n,n,y,"","" +anthro_6-0-5 transport ns2:transports_common departurePoint,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.departurePoint,Transport Information,Departure,Departure point,"",departurePoint,string,n,n,n/a,authority: organization/local; authority: place/local,"" +anthro_6-0-5 transport ns2:transports_common transportDepartureDate,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureDate,Transport Information,Departure,Departure date,"",transportDepartureDate,date,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportDepartureTime,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureTime,Transport Information,Departure,Departure time,"",transportDepartureTime,string,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common destination,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.destination,Transport Information,Arrival,Arrival point,"",destination,string,n,n,n/a,authority: place/local; authority: organization/local,"" +anthro_6-0-5 transport ns2:transports_common transportArrivalDate,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalDate,Transport Information,Arrival,Arrival date,"",transportArrivalDate,date,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportArrivalTime,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalTime,Transport Information,Arrival,Arrival time,"",transportArrivalTime,string,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common courier,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.courier,Transport Information,Courier,Courier name,courierGroupList > courierGroup,courier,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 transport ns2:transports_common courierContactNumber,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.courierContactNumber,Transport Information,Courier,Courier contact number,courierGroupList > courierGroup,courierContactNumber,string,n,n,y,"","" +anthro_6-0-5 transport ns2:transports_common transportRemarks,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportRemarks,Transport Information,"",Note,"",transportRemarks,string,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common transportCostType,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostType,Cost Information,"",Transport cost type,"",transportCostType,string,n,n,n/a,vocabulary: transportcosttype,"" +anthro_6-0-5 transport ns2:transports_common transportCostResponsibleParty,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostResponsibleParty,Cost Information,"",Transport cost responsible party,"",transportCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"" +anthro_6-0-5 transport ns2:transports_common insuranceCostResponsibleParty,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.insuranceCostResponsibleParty,Cost Information,"",Insurance/indemnity cost responsible party,"",insuranceCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"" +anthro_6-0-5 transport ns2:transports_common finalShippingCostCurrency,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostCurrency,Cost Information,Final shipping cost,Final shipping cost currency,"",finalShippingCostCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 transport ns2:transports_common finalShippingCostValue,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostValue,Cost Information,Final shipping cost,Final shipping cost value,"",finalShippingCostValue,float,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common customsBroker,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBroker,Cost Information,Customs broker,Customs broker name,"",customsBroker,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 transport ns2:transports_common customsBrokerContact,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBrokerContact,Cost Information,Customs broker,Customs broker contact,"",customsBrokerContact,string,n,n,n/a,authority: person/local,"" +anthro_6-0-5 transport ns2:transports_common customsDeclaredValueCurrency,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueCurrency,Cost Information,Declared value for customs,Declared value for customs currency,"",customsDeclaredValueCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 transport ns2:transports_common customsDeclaredValueAmount,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueAmount,Cost Information,Declared value for customs,Declared value for customs amount,"",customsDeclaredValueAmount,float,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common customsFeeCurrency,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeCurrency,Cost Information,Customs fee,Customs fee currency,"",customsFeeCurrency,string,n,n,n/a,vocabulary: currency,"" +anthro_6-0-5 transport ns2:transports_common customsFeeValue,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeValue,Cost Information,Customs fee,Customs fee value,"",customsFeeValue,float,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common customsFeeNote,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeNote,Cost Information,Customs fee,Customs fee note,"",customsFeeNote,string,n,n,n/a,"","" +anthro_6-0-5 transport ns2:transports_common additionalCostsType,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsType,Cost Information,Additional cost,Additional cost type,additionalCostsGroupList > additionalCostsGroup,additionalCostsType,string,n,n,y,vocabulary: transportadditionalcosttype,"" +anthro_6-0-5 transport ns2:transports_common additionalCostsCurrency,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsCurrency,Cost Information,Additional cost,Additional cost currency,additionalCostsGroupList > additionalCostsGroup,additionalCostsCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 transport ns2:transports_common additionalCostsValue,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsValue,Cost Information,Additional cost,Additional cost value,additionalCostsGroupList > additionalCostsGroup,additionalCostsValue,float,n,n,y,"","" +anthro_6-0-5 transport ns2:transports_common shippingQuoteProvider,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteProvider,Cost Information,"",Shipping quote provider,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteProvider,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 transport ns2:transports_common shippingQuoteCurrency,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteCurrency,Cost Information,"",Shipping quote currency,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 transport ns2:transports_common shippingQuoteValue,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteValue,Cost Information,"",Shipping quote value,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteValue,float,n,n,y,"","" +anthro_6-0-5 transport ns2:transports_common shippingQuoteDate,anthro_6-0-5,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteDate,Cost Information,"",Shipping quote date,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteDate,date,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common referenceNumber,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.referenceNumber,Use of Collections Information,"",Reference number,"",referenceNumber,string,y,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common method,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.method,Use of Collections Information,"",Method,methodList,method,string,n,y,n,vocabulary: uocmethods,"" +anthro_6-0-5 uoc ns2:uoc_common collectionType,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.collectionType,Use of Collections Information,"",Collection type,collectionTypeList,collectionType,string,n,y,n,vocabulary: uoccollectiontypes,"" +anthro_6-0-5 uoc ns2:uoc_common projectId,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectId,Use of Collections Information,"",Project ID,"",projectId,string,n,n,n/a,vocabulary: uocprojectid,"" +anthro_6-0-5 uoc ns2:uoc_common subcollection,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.subcollection,Use of Collections Information,"",Subcollection,"",subcollection,string,n,n,n/a,vocabulary: uocsubcollections,"" +anthro_6-0-5 uoc ns2:uoc_common materialType,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.materialType,Use of Collections Information,"",Material type,materialTypeList,materialType,string,n,y,n,vocabulary: uocmaterialtypes,"" +anthro_6-0-5 uoc ns2:uoc_common user,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.user,Use of Collections Information,User,User name,userGroupList > userGroup,user,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 uoc ns2:uoc_common userUocRole,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userUocRole,Use of Collections Information,User,User role,userGroupList > userGroup,userUocRole,string,n,n,y,vocabulary: uocuserroles,"" +anthro_6-0-5 uoc ns2:uoc_common userInstitution,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitution,Use of Collections Information,User,User institution,userGroupList > userGroup,userInstitution,string,n,n,y,authority: organization/local,"" +anthro_6-0-5 uoc ns2:uoc_common userInstitutionRole,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitutionRole,Use of Collections Information,User,User institution role,userGroupList > userGroup,userInstitutionRole,string,n,n,y,vocabulary: uocusertypes,"" +anthro_6-0-5 uoc ns2:uoc_common title,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.title,Use of Collections Information,"",Title,"",title,string,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common dateRequested,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateRequested,Use of Collections Information,"",Date requested,"",dateRequested,date,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common dateCompleted,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateCompleted,Use of Collections Information,"",Date completed,"",dateCompleted,date,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common occasion,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.occasion,Use of Collections Information,"",Occasion,occasionList,occasion,string,n,y,n,authority: concept/occasion,"" +anthro_6-0-5 uoc ns2:uoc_common projectDescription,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectDescription,Use of Collections Information,"",Project description,"",projectDescription,string,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common authorizedBy,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizedBy,Use of Collections Information,Authorization,Authorized by,authorizationGroupList > authorizationGroup,authorizedBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 uoc ns2:uoc_common authorizationDate,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationDate,Use of Collections Information,Authorization,Authorization date,authorizationGroupList > authorizationGroup,authorizationDate,date,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common authorizationStatus,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationStatus,Use of Collections Information,Authorization,Authorization status,authorizationGroupList > authorizationGroup,authorizationStatus,string,n,n,y,vocabulary: uocauthorizationstatuses,"" +anthro_6-0-5 uoc ns2:uoc_common authorizationNote,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationNote,Use of Collections Information,Authorization,Authorization note,authorizationGroupList > authorizationGroup,authorizationNote,string,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common useDate,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDate,Use of Collections Information,Start/ongoing date,Start/ongoing date,useDateGroupList > useDateGroup,useDate,date,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common useDateTimeNote,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateTimeNote,Use of Collections Information,Start/ongoing date,Start/ongoing date time note,useDateGroupList > useDateGroup,useDateTimeNote,string,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common useDateNumberOfVisitors,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateNumberOfVisitors,Use of Collections Information,Start/ongoing date,Start/ongoing date no. of visitors,useDateGroupList > useDateGroup,useDateNumberOfVisitors,integer,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common useDateHoursSpent,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateHoursSpent,Use of Collections Information,Start/ongoing date,Start/ongoing date hours spent,useDateGroupList > useDateGroup,useDateHoursSpent,float,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common useDateVisitorNote,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateVisitorNote,Use of Collections Information,Start/ongoing date,Start/ongoing date visitor note,useDateGroupList > useDateGroup,useDateVisitorNote,string,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common endDate,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.endDate,Use of Collections Information,"",End date,"",endDate,date,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common staffName,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffName,Use of Collections Information,Staff,Staff name,staffGroupList > staffGroup,staffName,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 uoc ns2:uoc_common staffRole,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffRole,Use of Collections Information,Staff,Staff role,staffGroupList > staffGroup,staffRole,string,n,n,y,vocabulary: uocstaffroles,"" +anthro_6-0-5 uoc ns2:uoc_common staffHours,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffHours,Use of Collections Information,Staff,Staff hours spent,staffGroupList > staffGroup,staffHours,float,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common staffNote,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffNote,Use of Collections Information,Staff,Staff note,staffGroupList > staffGroup,staffNote,string,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common location,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.location,Use of Collections Information,"",Location,locationList,location,string,n,y,n,authority: organization/local; authority: place/local; authority: location/local,"" +anthro_6-0-5 uoc ns2:uoc_common feeCurrency,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeCurrency,Use of Collections Information,Fee charged,Fee currency,feeGroupList > feeGroup,feeCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 uoc ns2:uoc_common feeValue,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeValue,Use of Collections Information,Fee charged,Fee value,feeGroupList > feeGroup,feeValue,float,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common feePaid,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feePaid,Use of Collections Information,Fee charged,Fee paid,feeGroupList > feeGroup,feePaid,boolean,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common feeNote,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeNote,Use of Collections Information,Fee charged,Fee note,feeGroupList > feeGroup,feeNote,string,n,n,y,"","" +anthro_6-0-5 uoc ns2:uoc_common note,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.note,Use of Collections Information,"",Note,"",note,string,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common provisos,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.provisos,Use of Collections Information,"",Provisos,"",provisos,string,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common obligationsFulfilled,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.obligationsFulfilled,Use of Collections Information,"",Obligations fulfilled,"",obligationsFulfilled,boolean,n,n,n/a,"","" +anthro_6-0-5 uoc ns2:uoc_common result,anthro_6-0-5,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.result,Use of Collections Information,"",Result,"",result,string,n,n,n/a,"","" +anthro_6-0-5 valuation ns2:valuationcontrols_common valuationcontrolRefNumber,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valuationcontrolRefNumber,Object Valuation Information,"",Reference number,"",valuationcontrolRefNumber,string,y,n,n/a,"","" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueCurrency,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueCurrency,Object Valuation Information,Amount,Amount currency,valueAmountsList > valueAmounts,valueCurrency,string,n,n,y,vocabulary: currency,"" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueAmount,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueAmount,Object Valuation Information,Amount,Amount value,valueAmountsList > valueAmounts,valueAmount,float,n,n,y,"","" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueDate,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueDate,Object Valuation Information,"",Date,"",valueDate,date,n,n,n/a,"","" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueRenewalDate,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueRenewalDate,Object Valuation Information,"",Renewal date,"",valueRenewalDate,date,n,n,n/a,"","" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueSource,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueSource,Object Valuation Information,"",Source,"",valueSource,string,n,n,n/a,authority: person/local; authority: organization/local,"" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueType,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueType,Object Valuation Information,"",Type,"",valueType,string,n,n,n/a,option list: valueTypes,"Current Value, Original Value, Replacement Value" +anthro_6-0-5 valuation ns2:valuationcontrols_common valueNote,anthro_6-0-5,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueNote,Object Valuation Information,"",Note,"",valueNote,string,n,n,n/a,"","" +anthro_6-0-5 work ns2:works_common termDisplayName,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termDisplayName,Work Information,Term,Term display name,workTermGroupList > workTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 work ns2:works_common termName,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termName,Work Information,Term,Term name,workTermGroupList > workTermGroup,termName,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termQualifier,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termQualifier,Work Information,Term,Term qualifier,workTermGroupList > workTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termStatus,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termStatus,Work Information,Term,Term status,workTermGroupList > workTermGroup,termStatus,string,n,n,y,option list: workTermStatuses,"complete, inprogress, quickaddedneedsattention" +anthro_6-0-5 work ns2:works_common termType,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termType,Work Information,Term,Term type,workTermGroupList > workTermGroup,termType,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termFlag,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termFlag,Work Information,Term,Term flag,workTermGroupList > workTermGroup,termFlag,string,n,n,y,vocabulary: worktermflag,"" +anthro_6-0-5 work ns2:works_common termLanguage,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termLanguage,Work Information,Term,Term language,workTermGroupList > workTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 work ns2:works_common termPrefForLang,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termPrefForLang,Work Information,Term,Term preferred for lang,workTermGroupList > workTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termSource,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termSource,Work Information,Term > Source,Term source name,workTermGroupList > workTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 work ns2:works_common termSourceDetail,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termSourceDetail,Work Information,Term > Source,Term source detail,workTermGroupList > workTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termSourceID,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termSourceID,Work Information,Term > Source,Term source ID,workTermGroupList > workTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common termSourceNote,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.termSourceNote,Work Information,Term > Source,Term source note,workTermGroupList > workTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 work ns2:works_common workType,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.workType,Work Information,"",Work type,"",workType,string,n,n,n/a,vocabulary: worktype,"" +anthro_6-0-5 work ns2:works_common workHistoryNote,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.workHistoryNote,Work Information,"",History note,"",workHistoryNote,string,n,n,n/a,"","" +anthro_6-0-5 work ns2:works_common creator,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.creator,Work Information,Creator,Creator name,creatorGroupList > creatorGroup,creator,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 work ns2:works_common creatorType,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.creatorType,Work Information,Creator,Creator type,creatorGroupList > creatorGroup,creatorType,string,n,n,y,vocabulary: workcreatortype,"" +anthro_6-0-5 work ns2:works_common publisher,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.publisher,Work Information,Publisher,Publisher name,publisherGroupList > publisherGroup,publisher,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 work ns2:works_common publisherType,anthro_6-0-5,work,ns2:works_common,ns2:works_common,works_common.publisherType,Work Information,Publisher,Publisher type,publisherGroupList > publisherGroup,publisherType,string,n,n,y,vocabulary: workpublishertype,"" +anthro_6-0-5 work ext.address addressPlace1,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressPlace1,Work Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","" +anthro_6-0-5 work ext.address addressPlace2,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressPlace2,Work Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","" +anthro_6-0-5 work ext.address addressMunicipality,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressMunicipality,Work Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 work ext.address addressStateOrProvince,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressStateOrProvince,Work Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 work ext.address addressPostCode,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressPostCode,Work Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","" +anthro_6-0-5 work ext.address addressCountry,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressCountry,Work Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"" +anthro_6-0-5 work ext.address addressType,anthro_6-0-5,work,ns2:works_common,ext.address,ext.address.addressType,Work Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateDisplayDate,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.datePeriod,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,datePeriod,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateAssociation,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateAssociation,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateNote,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateNote,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleYear,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleMonth,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleDay,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestSingleQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestYear,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestMonth,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestDay,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestEra,string,n,n,y,vocabulary: dateera,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestCertainty,string,n,n,y,vocabulary: datecertainty,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifier,string,n,n,y,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifierValue,integer,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestQualifierUnit,string,n,n,y,vocabulary: datequalifier,"" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateEarliestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,dateLatestScalarValue,string,n,n,y,"","" +"",anthro_6-0-5,work,ns2:works_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Work Information,works_common.workDateGroup,"",workDateGroupList > workDateGroup,scalarValuesComputed,boolean,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common InventoryID,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryID,Osteology Information,"",Inventory ID,"",InventoryID,string,y,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common osteoAgeEstimateVerbatim,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateVerbatim,Osteology Information,Age estimate,Age estimate verbatim,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateVerbatim,string,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common osteoAgeEstimateLower,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateLower,Osteology Information,Age estimate,Age estimate lower,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateLower,float,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common osteoAgeEstimateUpper,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateUpper,Osteology Information,Age estimate,Age estimate upper,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateUpper,float,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common osteoAgeEstimateAnalyst,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateAnalyst,Osteology Information,Age estimate,Age estimate analyst,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateAnalyst,string,n,n,y,authority: person/local,"" +anthro_6-0-5 osteology ns2:osteology_common osteoAgeEstimateNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateNote,Osteology Information,Age estimate,Age estimate note,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateNote,string,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common sexDetermination,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDetermination,Osteology Information,Sex determination,Sex determination,sexDeterminationGroupList > sexDeterminationGroup,sexDetermination,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown" +anthro_6-0-5 osteology ns2:osteology_common sexDeterminationAnalyst,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationAnalyst,Osteology Information,Sex determination,Sex determination analyst,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationAnalyst,string,n,n,y,authority: person/local,"" +anthro_6-0-5 osteology ns2:osteology_common sexDeterminationNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationNote,Osteology Information,Sex determination,Sex determination note,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationNote,string,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_common completeness,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completeness,Osteology Information,Completeness,Completeness level,"",completeness,string,n,n,n/a,vocabulary: osteocompleteness,"" +anthro_6-0-5 osteology ns2:osteology_common completenessNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completenessNote,Osteology Information,Completeness,Completeness note,"",completenessNote,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common molarsPresent,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.molarsPresent,Osteology Information,Dentition,Molars present,"",molarsPresent,boolean,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common dentitionScore,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionScore,Osteology Information,Dentition,Dentition score,"",dentitionScore,string,n,n,n/a,vocabulary: dentitionscore,"" +anthro_6-0-5 osteology ns2:osteology_common dentitionNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionNote,Osteology Information,Dentition,Dentition note,"",dentitionNote,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common mortuaryTreatment,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatment,Osteology Information,Mortuary treatment,Mortuary treatment,"",mortuaryTreatment,string,n,n,n/a,vocabulary: mortuarytreatment,"" +anthro_6-0-5 osteology ns2:osteology_common mortuaryTreatmentNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatmentNote,Osteology Information,Mortuary treatment,Mortuary treatment note,"",mortuaryTreatmentNote,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common behrensmeyerSingleLower,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerSingleLower,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Single/lower,"",behrensmeyerSingleLower,string,n,n,n/a,vocabulary: behrensmeyer,"" +anthro_6-0-5 osteology ns2:osteology_common behrensmeyerUpper,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerUpper,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Upper,"",behrensmeyerUpper,string,n,n,n/a,vocabulary: behrensmeyer,"" +anthro_6-0-5 osteology ns2:osteology_common NotesOnElementInventory,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.NotesOnElementInventory,Osteology Information,"",Inventory note,"",NotesOnElementInventory,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common pathologyNote,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.pathologyNote,Osteology Information,"",General pathology and trauma note,"",pathologyNote,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common InventoryIsComplete,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryIsComplete,Osteology Information,"",Inventory complete,"",InventoryIsComplete,boolean,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_common inventoryAnalyst,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryAnalyst,Osteology Information,"",Inventory analyst,"",inventoryAnalyst,string,y,n,n/a,authority: person/local,"" +anthro_6-0-5 osteology ns2:osteology_common inventoryDate,anthro_6-0-5,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryDate,Osteology Information,"",Inventory date,"",inventoryDate,date,y,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_DentalPathology,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_DentalPathology,Osteology Information,"",Dental pathology (incl. alveolar),"",Notes_DentalPathology,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_CranialPathology,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CranialPathology,Osteology Information,"",Cranial bony pathology,"",Notes_CranialPathology,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_PostcranialPathology,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_PostcranialPathology,Osteology Information,"",Postcranial bony pathology,"",Notes_PostcranialPathology,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_CulturalModifications,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CulturalModifications,Osteology Information,"",Cultural modification,"",Notes_CulturalModifications,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_NHTaphonomicAlterations,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_NHTaphonomicAlterations,Osteology Information,"",Nonhuman taphonomic alteration,"",Notes_NHTaphonomicAlterations,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology Notes_CuratorialSuffixing,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CuratorialSuffixing,Osteology Information,"",Curatorial suffixing note,"",Notes_CuratorialSuffixing,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology cranialDeformationPresent,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationPresent,Cultural Modification Information,Cranial Deformation Information,Is any evidence of cranial deformation present?,"",cranialDeformationPresent,boolean,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology cranialDeformationCategory,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationCategory,Cultural Modification Information,Cranial Deformation Information,Cranial deformation general category,cranialDeformationCategories,cranialDeformationCategory,string,n,y,n,vocabulary: cranialdeformationcategory,"" +anthro_6-0-5 osteology ns2:osteology_anthropology cranialDeformationNote,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationNote,Cultural Modification Information,Cranial Deformation Information,Cranial deformation comment,"",cranialDeformationNote,string,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationPresent,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationPresent,Cultural Modification Information,Trepanation Information,Is any evidence of trepanation present?,"",trepanationPresent,boolean,n,n,n/a,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationLocation,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationLocation,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation location (bone and side),trepanationGroupList > trepanationGroup,trepanationLocation,string,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationDimensionMax,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMax,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension max.,trepanationGroupList > trepanationGroup,trepanationDimensionMax,float,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationDimensionMin,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMin,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension min.,trepanationGroupList > trepanationGroup,trepanationDimensionMin,float,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationTechnique,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationTechnique,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation technique,trepanationGroupList > trepanationGroup,trepanationTechnique,string,n,n,y,vocabulary: trepanationtechnique,"" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationHealing,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationHealing,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation healing,trepanationGroupList > trepanationGroup,trepanationHealing,string,n,n,y,vocabulary: trepanationhealing,"" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationCertainty,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationCertainty,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation certainty,trepanationGroupList > trepanationGroup,trepanationCertainty,string,n,n,y,vocabulary: trepanationcertainty,"" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationNote,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationNote,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation comment,trepanationGroupList > trepanationGroup,trepanationNote,string,n,n,y,"","" +anthro_6-0-5 osteology ns2:osteology_anthropology trepanationGeneralNote,anthro_6-0-5,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationGeneralNote,Cultural Modification Information,Trepanation Information,Trepanation general comment,"",trepanationGeneralNote,string,n,n,n/a,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.datePeriod,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateAssociation,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateNote,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Osteology Information,Age estimate > osteology_common.osteoAgeEstimateDateGroup,"",osteoAgeEstimateGroupList > osteoAgeEstimateGroup > osteoAgeEstimateDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateDisplayDate,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.datePeriod,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateAssociation,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateNote,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestYear,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestMonth,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestDay,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestEra,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,osteology,ns2:osteology_common,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Osteology Information,Sex determination > osteology_common.sexDeterminationDateGroup,"",sexDeterminationGroupList > sexDeterminationGroup > sexDeterminationDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" +anthro_6-0-5 taxon ns2:taxon_common termDisplayName,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termDisplayName,Taxonomic Name Information,Term,Term display name,taxonTermGroupList > taxonTermGroup,termDisplayName,string,y,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termFormattedDisplayName,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFormattedDisplayName,Taxonomic Name Information,Term,Formatted display name,taxonTermGroupList > taxonTermGroup,termFormattedDisplayName,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termQualifier,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termQualifier,Taxonomic Name Information,Term,Term qualifier,taxonTermGroupList > taxonTermGroup,termQualifier,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termStatus,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termStatus,Taxonomic Name Information,Term,Term status,taxonTermGroupList > taxonTermGroup,termStatus,string,n,n,y,option list: taxonTermStatuses,"accepted, provisional, rejected, under review" +anthro_6-0-5 taxon ns2:taxon_common termType,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termType,Taxonomic Name Information,Term,Term type,taxonTermGroupList > taxonTermGroup,termType,string,n,n,y,option list: taxonTermTypes,"alternate descriptor, descriptor, used for term" +anthro_6-0-5 taxon ns2:taxon_common termFlag,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFlag,Taxonomic Name Information,Term,Term flag,taxonTermGroupList > taxonTermGroup,termFlag,string,n,n,y,vocabulary: taxontermflag,"" +anthro_6-0-5 taxon ns2:taxon_common taxonomicStatus,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonomicStatus,Taxonomic Name Information,Term,Taxonomic status,taxonTermGroupList > taxonTermGroup,taxonomicStatus,string,n,n,y,option list: taxonomicStatuses,"accepted, invalid, misapplied name, valid" +anthro_6-0-5 taxon ns2:taxon_common termLanguage,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termLanguage,Taxonomic Name Information,Term,Term language,taxonTermGroupList > taxonTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 taxon ns2:taxon_common termPrefForLang,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termPrefForLang,Taxonomic Name Information,Term,Term preferred for lang,taxonTermGroupList > taxonTermGroup,termPrefForLang,boolean,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termSource,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSource,Taxonomic Name Information,Term > Source,Term source name,taxonTermGroupList > taxonTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 taxon ns2:taxon_common termSourceDetail,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceDetail,Taxonomic Name Information,Term > Source,Term source detail,taxonTermGroupList > taxonTermGroup,termSourceDetail,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termSourceID,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceID,Taxonomic Name Information,Term > Source,Term source ID,taxonTermGroupList > taxonTermGroup,termSourceID,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common termSourceNote,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceNote,Taxonomic Name Information,Term > Source,Term source note,taxonTermGroupList > taxonTermGroup,termSourceNote,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common taxonRank,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonRank,Taxonomic Name Information,"",Rank,"",taxonRank,string,n,n,n/a,option list: taxonRanks,"class, division, domain, family, genus, kingdom, order, phylum, species" +anthro_6-0-5 taxon ns2:taxon_common taxonCurrency,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCurrency,Taxonomic Name Information,"",Currency,"",taxonCurrency,string,n,n,n/a,option list: taxonCurrencies,"archaic, current, obsolete" +anthro_6-0-5 taxon ns2:taxon_common taxonAuthor,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthor,Taxonomic Name Information,Author,Author name,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthor,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 taxon ns2:taxon_common taxonAuthorType,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthorType,Taxonomic Name Information,Author,Author type,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthorType,string,n,n,y,option list: taxonAuthorTypes,"ascribed, parenthetical" +anthro_6-0-5 taxon ns2:taxon_common taxonYear,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonYear,Taxonomic Name Information,"",Year,"",taxonYear,string,n,n,n/a,"","" +anthro_6-0-5 taxon ns2:taxon_common taxonIsNamedHybrid,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonIsNamedHybrid,Taxonomic Name Information,"",Is named hybrid,"",taxonIsNamedHybrid,boolean,n,n,n/a,"","" +anthro_6-0-5 taxon ns2:taxon_common taxonCitation,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCitation,Taxonomic Name Information,"",Citation,taxonCitationList,taxonCitation,string,n,y,n,authority: citation/local; authority: citation/worldcat,"" +anthro_6-0-5 taxon ns2:taxon_common taxonNote,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonNote,Taxonomic Name Information,"",Note,"",taxonNote,string,n,n,n/a,"","" +anthro_6-0-5 taxon ns2:taxon_common commonName,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonName,Taxonomic Name Information,Common name,Common name,commonNameGroupList > commonNameGroup,commonName,string,n,n,y,"","" +anthro_6-0-5 taxon ns2:taxon_common commonNameLanguage,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameLanguage,Taxonomic Name Information,Common name,Common name language,commonNameGroupList > commonNameGroup,commonNameLanguage,string,n,n,y,vocabulary: languages,"" +anthro_6-0-5 taxon ns2:taxon_common commonNameSource,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSource,Taxonomic Name Information,Common name,Common name source,commonNameGroupList > commonNameGroup,commonNameSource,string,n,n,y,authority: citation/local,"" +anthro_6-0-5 taxon ns2:taxon_common commonNameSourceDetail,anthro_6-0-5,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSourceDetail,Taxonomic Name Information,Common name,Common name source detail,commonNameGroupList > commonNameGroup,commonNameSourceDetail,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_common claimNumber,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimNumber,Claim Information,"",Claim number,"",claimNumber,string,y,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimName,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimName,Claim Information,"",Claim name,"",nagpraClaimName,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimAltName,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltName,Claim Information,Alternate name/number,Alternate name/number,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltName,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimAltNameNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltNameNote,Claim Information,Alternate name/number,Alternate name/number note,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltNameNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_common claimFiledBy,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledBy,Claim Information,Claimant,Claim filed by,claimantGroupList > claimantGroup,claimFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 claim ns2:claims_common claimFiledOnBehalfOf,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledOnBehalfOf,Claim Information,Claimant,Claim filed on behalf of,claimantGroupList > claimantGroup,claimFiledOnBehalfOf,string,n,n,y,authority: person/local; authority: organization/local,"" +anthro_6-0-5 claim ns2:claims_common claimantNote,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimantNote,Claim Information,Claimant,Claimant note,claimantGroupList > claimantGroup,claimantNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimType,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimType,Claim Information,"",Claim type,nagpraClaimTypes,nagpraClaimType,string,n,y,n,vocabulary: nagpraclaimtype,"" +anthro_6-0-5 claim ns2:claims_common claimReceivedDate,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedDate,Claim Information,Claim filed,Claim filed date,claimReceivedGroupList > claimReceivedGroup,claimReceivedDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_common claimReceivedNote,anthro_6-0-5,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedNote,Claim Information,Claim filed,Claim filed note,claimReceivedGroupList > claimReceivedGroup,claimReceivedNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNote,Claim Information,"",Note,nagpraClaimNotes,nagpraClaimNote,string,n,y,n,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSiteName,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteName,Claim Context,Site/place involved,Site/place involved name,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteName,string,n,n,y,authority: place/local,"" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSiteNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteNote,Claim Context,Site/place involved,Site/place involved note,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimGroupName,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupName,Claim Context,Cultural group involved,Cultural group involved name,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupName,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimGroupNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupNote,Claim Context,Cultural group involved,Cultural group involved note,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimPeriodNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimPeriodNote,Claim Context,Time period represented,Time period represented note,nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup,nagpraClaimPeriodNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimInitialResponseDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseDate,Claim Processing Information,Initial response,Initial response date,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimInitialResponseNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseNote,Claim Processing Information,Initial response,Initial response note,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSentToLocalDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalDate,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee date,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSentToLocalNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalNote,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee note,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimLocalRecDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecDate,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee date,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimLocalRecNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecNote,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee note,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSentToNatlDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlDate,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA date,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimSentToNatlNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlNote,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA note,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNatlRespDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespDate,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA date,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNatlRespNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespNote,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA note,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNatlApprovalDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalDate,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA date,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNatlApprovalNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalNote,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA note,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNoticeDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDate,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNoticeDateType,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDateType,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date type,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDateType,string,n,n,y,option list: nagpraNoticeDateTypes,"begin, end" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimNoticeNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeNote,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice note,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimTransferDate,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferDate,Claim Processing Information,Transfer,Transfer date,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferDate,date,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra nagpraClaimTransferNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferNote,Claim Processing Information,Transfer,Transfer note,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferNote,string,n,n,y,"","" +anthro_6-0-5 claim ns2:claims_nagpra dispositionPossibilitiesDiscussed,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussed,Claim Processing Information,Tasks Completed,Disposition possibilities discussed,"",dispositionPossibilitiesDiscussed,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra dispositionPossibilitiesDiscussedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussedNote,Claim Processing Information,Tasks Completed,Disposition possibilities discussed note,"",dispositionPossibilitiesDiscussedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra surroundingTribesContacted,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContacted,Claim Processing Information,Tasks Completed,Surrounding tribes contacted,"",surroundingTribesContacted,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra surroundingTribesContactedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContactedNote,Claim Processing Information,Tasks Completed,Surrounding tribes contacted note,"",surroundingTribesContactedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra workingTeamNotified,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotified,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified,"",workingTeamNotified,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra workingTeamNotifiedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotifiedNote,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified note,"",workingTeamNotifiedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra siteFileResearchCompleted,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompleted,Claim Processing Information,Tasks Completed,Site file research completed,"",siteFileResearchCompleted,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra siteFileResearchCompletedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Site file research completed note,"",siteFileResearchCompletedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra accessionFileResearchCompleted,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompleted,Claim Processing Information,Tasks Completed,Accession file research completed,"",accessionFileResearchCompleted,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra accessionFileResearchCompletedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Accession file research completed note,"",accessionFileResearchCompletedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsLocatedAndCounted,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCounted,Claim Processing Information,Tasks Completed,Objects located and counted,"",objectsLocatedAndCounted,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsLocatedAndCountedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCountedNote,Claim Processing Information,Tasks Completed,Objects located and counted note,"",objectsLocatedAndCountedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsConsolidated,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidated,Claim Processing Information,Tasks Completed,Objects consolidated,"",objectsConsolidated,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsConsolidatedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidatedNote,Claim Processing Information,Tasks Completed,Objects consolidated note,"",objectsConsolidatedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsPhotographed,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographed,Claim Processing Information,Tasks Completed,Objects photographed,"",objectsPhotographed,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsPhotographedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographedNote,Claim Processing Information,Tasks Completed,Objects photographed note,"",objectsPhotographedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra registrationDocumentsDrafted,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDrafted,Claim Processing Information,Tasks Completed,Registration documents drawn up,"",registrationDocumentsDrafted,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra registrationDocumentsDraftedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDraftedNote,Claim Processing Information,Tasks Completed,Registration documents drawn up note,"",registrationDocumentsDraftedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra tribeContactedForPackingPreferences,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferences,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions,"",tribeContactedForPackingPreferences,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra tribeContactedForPackingPreferencesNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferencesNote,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions note,"",tribeContactedForPackingPreferencesNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra dateArrangedForTransfer,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransfer,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer,"",dateArrangedForTransfer,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra dateArrangedForTransferNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransferNote,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer note,"",dateArrangedForTransferNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsMarkedAsDeaccessioned,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessioned,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned,"",objectsMarkedAsDeaccessioned,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra objectsMarkedAsDeaccessionedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessionedNote,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned note,"",objectsMarkedAsDeaccessionedNote,string,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra documentsArchived,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchived,Claim Processing Information,Tasks Completed,Claim documents archived,"",documentsArchived,boolean,n,n,n/a,"","" +anthro_6-0-5 claim ns2:claims_nagpra documentsArchivedNote,anthro_6-0-5,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchivedNote,Claim Processing Information,Tasks Completed,Claim documents archived note,"",documentsArchivedNote,string,n,n,n/a,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateDisplayDate,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateDisplayDate,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.datePeriod,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,datePeriod,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateAssociation,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateAssociation,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateNote,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateNote,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleYear,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleMonth,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleDay,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleEra,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleCertainty,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifier,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierValue,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestSingleQualifierUnit,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestSingleQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestYear,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestYear,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestMonth,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestMonth,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestDay,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestDay,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestEra,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestEra,string,n,n,as part of larger repeating group,vocabulary: dateera,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestCertainty,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestCertainty,string,n,n,as part of larger repeating group,vocabulary: datecertainty,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifier,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestQualifier,string,n,n,as part of larger repeating group,option list: dateQualifiers,", +, +/-, -" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifierValue,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestQualifierValue,integer,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestQualifierUnit,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestQualifierUnit,string,n,n,as part of larger repeating group,vocabulary: datequalifier,"" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateEarliestScalarValue,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateEarliestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.dateLatestScalarValue,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,dateLatestScalarValue,string,n,n,as part of larger repeating group,"","" +"",anthro_6-0-5,claim,ns2:claims_nagpra,ext.structuredDate,ext.structuredDate.scalarValuesComputed,Claim Context,Time period represented > claims_nagpra.nagpraClaimPeriodDateGroup,"",nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup > nagpraClaimPeriodDateGroup,scalarValuesComputed,boolean,n,n,as part of larger repeating group,"","" diff --git a/spec/fixtures/configs/anthro_7-0-0.json b/spec/fixtures/configs/anthro_7-0-0.json new file mode 100644 index 00000000..f06a94c5 --- /dev/null +++ b/spec/fixtures/configs/anthro_7-0-0.json @@ -0,0 +1,126389 @@ +{ + "allowDeleteHierarchyLeaves": false, + "autocompleteFindDelay": 500, + "autocompleteMinLength": 3, + "basename": "/cspace/anthro", + "className": "", + "container": "#cspace", + "defaultAdvancedSearchBooleanOp": "or", + "defaultDropdownFilter": "substring", + "defaultSearchPageSize": 20, + "defaultSearchPanelSize": 5, + "defaultUserPrefs": { + "panels": { + "collectionobject": { + "mediaSnapshotPanel": { + "collapsed": false + } + } + } + }, + "disableAltTerms": false, + "index": "/search", + "locale": "en-US", + "logo": "data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNzIuODYgNDQiIHdpZHRoPSIyNzIuODZweCIgaGVpZ2h0PSI0NHB4Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6Izc2Nzc3Qjt9LmNscy0ye2ZpbGw6IzNENUNBOTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmNvbGxlY3Rpb25zcGFjZTI8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIzLjYzLDI2LjA1YTgsOCwwLDAsMSw4LjExLTguMjVBNy44OSw3Ljg5LDAsMCwxLDM4LDIwLjMzbC0yLDEuNzZhNS41OCw1LjU4LDAsMCwwLTQuMjUtMS43NmMtMy4wNSwwLTUuMDYsMi40OC01LjA2LDUuNzJzMiw1LjY4LDUuMDYsNS42OGE2LDYsMCwwLDAsNC42My0xLjk1bDEuOTUsMS43MmE4LjEsOC4xLDAsMCwxLTYuNTksMi43N0E4LDgsMCwwLDEsMjMuNjMsMjYuMDVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNDEuNTgsMjYuMDVhOC4zOCw4LjM4LDAsMSwxLDguNyw4LjIxaC0uMzZBOC4xNCw4LjE0LDAsMCwxLDQxLjU4LDI2LjA1Wm0xMy42NCwwYzAtMy4yOS0yLjE1LTUuNzctNS4zLTUuNzdzLTUuMjksMi41LTUuMjksNS43NywyLjE1LDUuNzMsNS4yOSw1LjczLDUuMy0yLjQ4LDUuMy01LjczWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTYzLjE5LDBoM1YzMy44OGgtM1oiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik03Mi4yNiwwaDNWMzMuODhoLTNaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNODguNzIsMzEuNzhhNiw2LDAsMCwwLDQuOTEtMi4wNWwxLjgyLDEuNzZhOC4yLDguMiwwLDAsMS02LjY5LDIuNzdjLTUuMSwwLTguNTctMy41My04LjU3LTguMjFhOC4xMyw4LjEzLDAsMCwxLDgtOC4yNWguMjNjNSwwLDguMDcsMy45LDgsOS4zSDgzLjIzQTUuMTYsNS4xNiwwLDAsMCw4OC43MiwzMS43OFptNC42Mi03LjExYy0uMzktMi40OS0xLjk0LTQuMzktNC45MS00LjM5YTUsNSwwLDAsMC01LjExLDQuMzlaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTAwLjIyLDI2LjA1YTgsOCwwLDAsMSw4LjExLTguMjUsNy44Niw3Ljg2LDAsMCwxLDYuMiwyLjUzbC0yLDEuNzZhNS41Niw1LjU2LDAsMCwwLTQuMjQtMS43NmMtMy4wNiwwLTUuMDcsMi40OC01LjA3LDUuNzJzMiw1LjY4LDUuMDcsNS42OEE2LDYsMCwwLDAsMTEzLDI5Ljc4bDIsMS43MmE4LjQ0LDguNDQsMCwwLDEtMTQuNjktNS40NVoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xMTguMiwyMC42NlYxOC4xOGgyVjguNGgyLjkydjkuNzhoMy45djIuNDhoLTMuOXY5YzAsMS40My41MywyLjExLDEuNjcsMi4xMWEyLjg2LDIuODYsMCwwLDAsMS43Mi0uNjdsMS4yNCwyLjA1YTQuODQsNC44NCwwLDAsMS0zLjMsMS4xNWMtMi41NywwLTQuMjQtMS4zOS00LjI0LTQuNDlWMjAuNjZaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTMxLjcxLDEwLjQ1YTIsMiwwLDEsMSwyLDJBMiwyLDAsMCwxLDEzMS43MSwxMC40NVptLjUyLDcuNzNoM3YxNS43aC0zWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE0MC4xLDI2LjA1YTguMzgsOC4zOCwwLDEsMSw4LjcxLDguMjFoLS4zNkE4LjE1LDguMTUsMCwwLDEsMTQwLjEsMjYuMDVabTEzLjY1LDBjMC0zLjI5LTIuMTUtNS43Ny01LjMtNS43N3MtNS4zLDIuNDgtNS4zLDUuNzcsMi4xNSw1LjczLDUuMyw1LjczLDUuMy0yLjQ4LDUuMy01LjczWiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE2MS41OCwxOC4xOGgyLjkxdjIuNTNhNS43Nyw1Ljc3LDAsMCwxLDUuMzktMi45MWMzLjQzLDAsNiwyLjE5LDYsNi40NHY5LjY0SDE3M1YyNC41M2MwLTIuNzctMS4zNC00LjExLTMuODItNC4xMWE0LjM5LDQuMzksMCwwLDAtNC42Nyw0Ljc3djguNjloLTIuOTJaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTgwLjA4LDMwLjczbDIuMS0xLjQ4YTUuMTUsNS4xNSwwLDAsMCw0LjYzLDIuNTNjMiwwLDMuMTQtLjgxLDMuMTQtMi4xcy0xLjA5LTEuOTUtMy44MS0yLjczYy0zLjEyLS44Ni01LTIuMDUtNS00LjgyLDAtMi41NywyLTQuMzQsNS4xNS00LjM0YTYuMjksNi4yOSwwLDAsMSw1LjM5LDIuNTNsLTEuOTUsMS42MmEzLjkzLDMuOTMsMCwwLDAtMy4zOS0xLjY3Yy0xLjU1LDAtMi40OC43OC0yLjQ4LDEuNzcsMCwxLjM4LDEsMS43NiwzLjQ0LDIuMzgsMy4zNC44Niw1LjQ1LDIuMjQsNS40NSw1LjExcy0yLjI0LDQuNzItNiw0LjcyQTcuNzIsNy43MiwwLDAsMSwxODAuMDgsMzAuNzNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTk3LjY1LDE4LjE4aDIuOTF2Mi42N2E2LjE0LDYuMTQsMCwwLDEsNS42OC0zLjA1YzQuMzksMCw3LjczLDMuNTMsNy43Myw4LjI2cy0zLjM0LDguMi03LjczLDguMmE2LjEzLDYuMTMsMCwwLDEtNS42OC0zVjQ0aC0yLjkxWk0yMTEsMjYuMDVjMC0zLjM0LTIuMTUtNS42OC01LjMtNS42OHMtNS4yLDIuMzQtNS4yLDUuNjgsMi4xLDUuNjMsNS4yLDUuNjMsNS4zLTIuMzQsNS4zLTUuNjNaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjE3Ljc4LDI2LjA1YzAtNC43MiwzLjMtOC4yNSw3LjY0LTguMjVBNS45NCw1Ljk0LDAsMCwxLDIzMSwyMC44NVYxOC4xOGgyLjkyVjMzLjg3SDIzMVYzMS4yYTUuOTQsNS45NCwwLDAsMS01LjUzLDMuMDVDMjIxLjA4LDM0LjI2LDIxNy43OCwzMC43MywyMTcuNzgsMjYuMDVabTEzLjI2LDBjMC0zLjM0LTItNS42OC01LjA3LTUuNjhzLTUuMTYsMi4zNC01LjE2LDUuNjgsMi4wNiw1LjYzLDUuMTYsNS42Myw1LjA4LTIuMzQsNS4wOC01LjYzWiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIzOC42OCwyNi4wNWE4LDgsMCwwLDEsOC4xMS04LjI1QTcuODksNy44OSwwLDAsMSwyNTMsMjAuMzNsLTEuOTUsMS43NmE1LjU4LDUuNTgsMCwwLDAtNC4yNS0xLjc2Yy0zLjA1LDAtNS4wNywyLjQ4LTUuMDcsNS43MnMyLDUuNjgsNS4wNyw1LjY4YTYsNiwwLDAsMCw0LjYxLTEuOTRsMiwxLjcyYTguNDMsOC40MywwLDAsMS0xNC42OC01LjQ2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTI2NS4xNywzMS43OGE2LDYsMCwwLDAsNC45MS0yLjA1bDEuODEsMS43NmE4LjE3LDguMTcsMCwwLDEtNi42OCwyLjc3Yy01LjEsMC04LjU3LTMuNTMtOC41Ny04LjIxYTguMTMsOC4xMywwLDAsMSw4LTguMjVoLjIzYzUsMCw4LjA3LDMuOSw4LDkuM0gyNTkuNjhBNS4xNiw1LjE2LDAsMCwwLDI2NS4xNywzMS43OFptNC42Mi03LjExYy0uMzktMi40OS0yLTQuMzktNC45MS00LjM5YTUsNSwwLDAsMC01LjExLDQuMzlaIi8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSI2LjM5IiB5PSIxNy41MyIgd2lkdGg9IjQuMDEiIGhlaWdodD0iNC4wMSIgcng9IjAuNTciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjYuMzkiIHk9IjIzLjk5IiB3aWR0aD0iNC4wMSIgaGVpZ2h0PSI0LjAxIiByeD0iMC41NyIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTIuNzEiIHk9IjIzLjk5IiB3aWR0aD0iNC4wMSIgaGVpZ2h0PSI0LjAxIiByeD0iMC41NyIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeT0iMjMuOTkiIHdpZHRoPSI0LjAxIiBoZWlnaHQ9IjQuMDEiIHJ4PSIwLjU3Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSI2LjM5IiB5PSIzMC4yNCIgd2lkdGg9IjQuMDEiIGhlaWdodD0iNC4wMSIgcng9IjAuNTciLz48L3N2Zz4K", + "mediaSnapshotSort": "title", + "messages": { + "about.title": "Welcome to CollectionSpace: Anthropology", + "record.claim.name": "NAGPRA Claim", + "record.claim.collectionName": "NAGPRA Claims", + "field.collectionobjects_common.assocPeopleGroup.name": "Associated cultural group", + "field.collectionobjects_common.assocPeople.fullName": "Associated cultural group", + "field.collectionobjects_common.assocPeople.name": "Cultural group", + "field.collectionobjects_common.assocPeopleType.fullName": "Associated cultural group type of assoc.", + "field.collectionobjects_common.assocPeopleType.name": "Type of assoc.", + "field.collectionobjects_common.assocPeopleNote.fullName": "Associated cultural group note", + "field.collectionobjects_common.usageGroup.name": "Context of use", + "field.collectionobjects_common.objectProductionPeopleGroup.name": "Production cultural group", + "field.collectionobjects_common.objectProductionPeople.fullName": "Production cultural group", + "field.collectionobjects_common.objectProductionPeople.name": "Cultural group", + "field.collectionobjects_common.objectProductionPeopleRole.fullName": "Production cultural group role", + "panel.collectionobject.reference": "Bibliographic Reference Information" + }, + "prettyUrls": true, + "relationMemberPerm": "U", + "serverUrl": "", + "showTermListStateIcon": false, + "structDateOptionListNames": [ + "dateQualifiers" + ], + "structDateVocabNames": [ + "dateera", + "datecertainty", + "datequalifier" + ], + "tenantId": "1500", + "termDeprecationEnabled": false, + "extensions": { + "address": { + "fields": { + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address" + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "authItem": { + "fields": { + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + } + } + }, + "core": { + "advancedSearch": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ], + "fields": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "dimension": { + "fields": { + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension" + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "structuredDate": { + "fields": { + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate" + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate" + } + } + } + }, + "associatedAuthority": { + "fields": { + "assocPersonAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPersonAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPersonAuthGroup.name", + "defaultMessage": "Person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "person": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.person.fullName", + "defaultMessage": "Person associated" + }, + "name": { + "id": "field.ext.associatedAuthority.person.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/ulan" + } + } + } + }, + "personType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personType.fullName", + "defaultMessage": "Person relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.personType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologypersonrelations" + } + } + } + }, + "personStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "personCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "personCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personCitation.fullName", + "defaultMessage": "Person citation" + }, + "name": { + "id": "field.ext.associatedAuthority.personCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "personNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personNote.fullName", + "defaultMessage": "Person note" + }, + "name": { + "id": "field.ext.associatedAuthority.personNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPeopleAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPeopleAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPeopleAuthGroup.name", + "defaultMessage": "People" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "people": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.people.fullName", + "defaultMessage": "People associated" + }, + "name": { + "id": "field.ext.associatedAuthority.people.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated" + } + } + } + }, + "peopleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleType.fullName", + "defaultMessage": "People relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologypeoplerelations" + } + } + } + }, + "peopleStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "peopleCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "peopleCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleCitation.fullName", + "defaultMessage": "People citation" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "peopleNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleNote.fullName", + "defaultMessage": "People note" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocOrganizationAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocOrganizationAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocOrganizationAuthGroup.name", + "defaultMessage": "Organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "organization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organization.fullName", + "defaultMessage": "Organization associated" + }, + "name": { + "id": "field.ext.associatedAuthority.organization.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/ulan" + } + } + } + }, + "organizationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationType.fullName", + "defaultMessage": "Organization relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyorganizationrelations" + } + } + } + }, + "organizationStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "organizationCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizationCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationCitation.fullName", + "defaultMessage": "Organization citation" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "organizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationNote.fullName", + "defaultMessage": "Organization note" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocConceptAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocConceptAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocConceptAuthGroup.name", + "defaultMessage": "Concept" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "concept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.concept.fullName", + "defaultMessage": "Concept associated" + }, + "name": { + "id": "field.ext.associatedAuthority.concept.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/activity,concept/associated,concept/material,concept/nomenclature,concept/occasion" + } + } + } + }, + "conceptType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptType.fullName", + "defaultMessage": "Concept relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyconceptrelations" + } + } + } + }, + "conceptStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "conceptCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conceptCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptCitation.fullName", + "defaultMessage": "Concept citation" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "conceptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptNote.fullName", + "defaultMessage": "Concept note" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPlaceAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPlaceAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPlaceAuthGroup.name", + "defaultMessage": "Place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "place": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.place.fullName", + "defaultMessage": "Place associated" + }, + "name": { + "id": "field.ext.associatedAuthority.place.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "placeType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeType.fullName", + "defaultMessage": "Place relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.placeType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyplacerelations" + } + } + } + }, + "placeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "placeCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeCitation.fullName", + "defaultMessage": "Place citation" + }, + "name": { + "id": "field.ext.associatedAuthority.placeCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "placeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeNote.fullName", + "defaultMessage": "Place note" + }, + "name": { + "id": "field.ext.associatedAuthority.placeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocChronologyAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocChronologyAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocChronologyAuthGroup.name", + "defaultMessage": "Related chronology" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "chronology": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronology.fullName", + "defaultMessage": "Related chronology associated" + }, + "name": { + "id": "field.ext.associatedAuthority.chronology.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/era,chronology/event" + } + } + } + }, + "chronologyType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyType.fullName", + "defaultMessage": "Related chronology relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyrelations" + } + } + } + }, + "chronologyStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "chronologyCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "chronologyCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyCitation.fullName", + "defaultMessage": "Related chronology citation" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "chronologyNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyNote.fullName", + "defaultMessage": "Related chronology note" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "person" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "people" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "peopleCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "organization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizationCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "concept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "place" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocChronologyAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocChronologyAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "chronologyCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "culturalcare": { + "collectionobject": { + "messages": { + "panel": { + "culturalCare": { + "id": "panel.collectionobject.culturalCare", + "defaultMessage": "Cultural Care Information" + } + } + }, + "fields": { + "ns2:collectionobjects_culturalcare": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/collectionobject" + } + }, + "culturalCareNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "culturalCareNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.culturalCareNote.name", + "defaultMessage": "Cultural care note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "accessLimitationsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "accessLimitationsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.accessLimitationsGroup.name", + "defaultMessage": "Access limitation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "limitationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationType.fullName", + "defaultMessage": "Access limitation type" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationtype" + } + } + } + }, + "limitationLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationLevel.fullName", + "defaultMessage": "Access limitation level" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationlevel" + } + } + } + }, + "limitationDetails": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationDetails.fullName", + "defaultMessage": "Access limitation detail" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationDetails.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "requester": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requester.fullName", + "defaultMessage": "Access limitation requestor" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requester.name", + "defaultMessage": "Requestor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "requestOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.fullName", + "defaultMessage": "Access limitation requested on behalf of" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "requestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestDate.fullName", + "defaultMessage": "Access limitation request date" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "locality": { + "messages": { + "inputTable": { + "depth": { + "id": "inputTable.ext.locality.depth", + "defaultMessage": "Depth" + }, + "elevation": { + "id": "inputTable.ext.locality.elevation", + "defaultMessage": "Elevation" + }, + "distanceAboveSurface": { + "id": "inputTable.ext.locality.distanceAboveSurface", + "defaultMessage": "Distance above surface" + } + }, + "panel": { + "georefDetail": { + "id": "panel.ext.locality.georefDetail", + "defaultMessage": "Georeference Detail" + } + } + }, + "fields": { + "localityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "locality" + }, + "localityGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localityGroup.fullName", + "defaultMessage": "Locality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocVerbatim.name", + "defaultMessage": "Field collection location verbatim" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldLocPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + }, + "taxonomicRange": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.taxonomicRange.name", + "defaultMessage": "Geographic range of taxon" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldLocCounty": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCounty.name", + "defaultMessage": "County" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-county", + "source": "counties" + } + } + } + }, + "fieldLocState": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocState.name", + "defaultMessage": "State" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-state", + "source": "states" + } + } + } + }, + "fieldLocCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "countries" + } + } + } + }, + "fieldLocHigherGeography": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocHigherGeography.name", + "defaultMessage": "Higher geography" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "higherGeographies" + } + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordinates.name", + "defaultMessage": "TRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vOtherCoords": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vOtherCoords.name", + "defaultMessage": "Other coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordSys.name", + "defaultMessage": "Other coords system" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vcoordsys" + } + } + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertainty": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertainty.fullName", + "defaultMessage": "Coord uncertainty" + }, + "name": { + "id": "field.ext.locality.coordUncertainty.name", + "defaultMessage": "Uncertainty" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordUncertaintyUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertaintyUnit.fullName", + "defaultMessage": "Coord uncertainty unit" + }, + "name": { + "id": "field.ext.locality.coordUncertaintyUnit.name", + "defaultMessage": "Uncertainty unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordUncertaintyUnits" + } + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDepth.fullName", + "defaultMessage": "Depth verbatim" + }, + "name": { + "id": "field.ext.locality.vDepth.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDepth.fullName", + "defaultMessage": "Depth min" + }, + "name": { + "id": "field.ext.locality.minDepth.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDepth.fullName", + "defaultMessage": "Depth max" + }, + "name": { + "id": "field.ext.locality.maxDepth.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "depthUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.depthUnit.fullName", + "defaultMessage": "Depth unit" + }, + "name": { + "id": "field.ext.locality.depthUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "depthUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vElevation.fullName", + "defaultMessage": "Elevation verbatim" + }, + "name": { + "id": "field.ext.locality.vElevation.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minElevation.fullName", + "defaultMessage": "Elevation min" + }, + "name": { + "id": "field.ext.locality.minElevation.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxElevation.fullName", + "defaultMessage": "Elevation max" + }, + "name": { + "id": "field.ext.locality.maxElevation.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "elevationUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.elevationUnit.fullName", + "defaultMessage": "Elevation unit" + }, + "name": { + "id": "field.ext.locality.elevationUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "elevationUnits" + } + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface verbatim" + }, + "name": { + "id": "field.ext.locality.vDistanceAboveSurface.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface min" + }, + "name": { + "id": "field.ext.locality.minDistanceAboveSurface.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface max" + }, + "name": { + "id": "field.ext.locality.maxDistanceAboveSurface.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distanceAboveSurfaceUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.fullName", + "defaultMessage": "Distance above surface unit" + }, + "name": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "distanceAboveSurfaceUnits" + } + } + } + }, + "localityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.localityNote.name", + "defaultMessage": "Locality note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "localitySource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySource.fullName", + "defaultMessage": "Locality source" + }, + "name": { + "id": "field.ext.locality.localitySource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "localitySourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySourceDetail.fullName", + "defaultMessage": "Locality source detail" + }, + "name": { + "id": "field.ext.locality.localitySourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.pointRadiusSpatialFit.name", + "defaultMessage": "Pt. radius sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSpatialFit.name", + "defaultMessage": "Footprint sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.coordPrecision.name", + "defaultMessage": "Coord precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefencedBy.name", + "defaultMessage": "Georeference by" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.ext.locality.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.ext.locality.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.ext.locality.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefRemarks.fullName", + "defaultMessage": "Georeference note" + }, + "name": { + "id": "field.ext.locality.geoRefRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefPlaceName.name", + "defaultMessage": "Georeference place name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionLocationVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionLocationVerbatim.name", + "defaultMessage": "Collection location verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionPlace.name", + "defaultMessage": "Collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "naturalhistory": { + "collectionobject": { + "messages": { + "inputTable": { + "taxonName": { + "id": "inputTable.collectionobject.taxonName", + "defaultMessage": "Taxonomic identification" + }, + "taxonIdent": { + "id": "inputTable.collectionobject.taxonIdent", + "defaultMessage": "Identification by" + }, + "taxonReference": { + "id": "inputTable.collectionobject.taxonReference", + "defaultMessage": "Reference" + } + } + }, + "fields": { + "ns2:collectionobjects_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/naturalhistory_extension" + } + }, + "taxonomicIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "taxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "qualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.qualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.qualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "identBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "identDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "institution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.institution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.institution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.institution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "identKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "reference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.reference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.reference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.reference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "refPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.refPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.refPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.refPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "notes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.notes.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.notes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "taxonomicIdentHybridParentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentHybridParentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentGroup.name", + "defaultMessage": "Hybrid parent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonomicIdentHybridParent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.fullName", + "defaultMessage": "Hybrid parent name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "taxonomicIdentHybridParentQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.fullName", + "defaultMessage": "Hybrid parent qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "hybridparentqualifier" + } + } + } + } + } + }, + "affinityTaxon": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.affinityTaxon.name", + "defaultMessage": "Affinity taxon" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "hybridFlag": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.hybridFlag.name", + "defaultMessage": "Hybrid flag" + } + }, + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "determinationHistoryGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "determinationHistoryGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.determinationHistoryGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "determinationTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "determinationQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "determinationBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "determinationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "determinationInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "determinationKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "determinationReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationReference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationNote.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "typeSpecimenGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "typeSpecimenGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenGroup.name", + "defaultMessage": "Type specimen" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "typeSpecimenKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.fullName", + "defaultMessage": "Type specimen kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "typespecimenkind" + } + } + } + }, + "typeSpecimenAssertionBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.fullName", + "defaultMessage": "Type specimen asserted by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.name", + "defaultMessage": "Asserted by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "typeSpecimenReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.fullName", + "defaultMessage": "Type specimen reference" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.fullName", + "defaultMessage": "Type specimen reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenBasionym": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.fullName", + "defaultMessage": "Type specimen verified basionym" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.name", + "defaultMessage": "Verified basionym" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "typeSpecimenNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.fullName", + "defaultMessage": "Type specimen note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "vegetationType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.vegetationType.name", + "defaultMessage": "Vegetation type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vegetationtype" + } + } + } + }, + "associatedTaxaGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "associatedTaxaGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxaGroup.name", + "defaultMessage": "Associated taxa" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "associatedTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.fullName", + "defaultMessage": "Associated taxon name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.commonName.fullName", + "defaultMessage": "Associated taxon common name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.commonName.name", + "defaultMessage": "Common name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "interaction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.interaction.fullName", + "defaultMessage": "Associated taxon interaction" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.interaction.name", + "defaultMessage": "Interaction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assoctaxoninteraction" + } + } + } + } + } + } + } + }, + "form": { + "taxonomicIdentGroupList": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonReference", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "refPage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "typeSpecimenGroupList": { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenAssertionBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenRefPage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenBasionym" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenNotes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "loanin": { + "fields": { + "ns2:loansin_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanin/domain/naturalhistory_extension" + } + }, + "returnGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "returnGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnGroup.fullName", + "defaultMessage": "Item returned" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "returnObjectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnObjectNumbers.fullName", + "defaultMessage": "Item returned object numbers" + }, + "name": { + "id": "field.loansin_naturalhistory.returnObjectNumbers.name", + "defaultMessage": "Object numbers" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnQuantity.fullName", + "defaultMessage": "Item returned quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.returnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnDate.fullName", + "defaultMessage": "Item returned date" + }, + "name": { + "id": "field.loansin_naturalhistory.returnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "returnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnNotes.fullName", + "defaultMessage": "Item returned note" + }, + "name": { + "id": "field.loansin_naturalhistory.returnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnDetermination.fullName", + "defaultMessage": "Item returned new determination" + }, + "name": { + "id": "field.loansin_naturalhistory.returnDetermination.name", + "defaultMessage": "New determination" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + } + } + }, + "transferOutGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transferOutGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutGroup.fullName", + "defaultMessage": "Item transferred out" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "transferOutDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutDate.fullName", + "defaultMessage": "Item transferred out date" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferOutQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutQuantity.fullName", + "defaultMessage": "Item transferred out quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutOrg": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutOrg.fullName", + "defaultMessage": "Item transferred out institution" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutOrg.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "transferOutPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutPerson.fullName", + "defaultMessage": "Item transferred out for study by" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutPerson.name", + "defaultMessage": "For study by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferOutDirector": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutDirector.fullName", + "defaultMessage": "Item transferred out under direction of" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutDirector.name", + "defaultMessage": "Under direction of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferOutNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutNotes.fullName", + "defaultMessage": "Item transferred out note" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.fullName", + "defaultMessage": "Item transferred out return date" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.groupName", + "defaultMessage": "Return date" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferOutReturnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.fullName", + "defaultMessage": "Item transferred out return quantity" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.groupName", + "defaultMessage": "Return quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutReturnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.fullName", + "defaultMessage": "Item transferred out return note" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.groupName", + "defaultMessage": "Return note" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "loanout": { + "fields": { + "ns2:loansout_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanout/domain/naturalhistory_extension" + } + }, + "numLent": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.loansout_naturalhistory.numLent.name", + "defaultMessage": "Number lent" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "returnGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnGroup.fullName", + "defaultMessage": "Item returned" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "returnObjectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnObjectNumbers.fullName", + "defaultMessage": "Item returned object number(s)" + }, + "name": { + "id": "field.loansout_naturalhistory.returnObjectNumbers.name", + "defaultMessage": "Object number(s)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnQuantity.fullName", + "defaultMessage": "Item returned quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.returnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnDate.fullName", + "defaultMessage": "Item returned date" + }, + "name": { + "id": "field.loansout_naturalhistory.returnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "returnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnNotes.fullName", + "defaultMessage": "Item returned note" + }, + "name": { + "id": "field.loansout_naturalhistory.returnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnDetermination.fullName", + "defaultMessage": "Item returned new determination" + }, + "name": { + "id": "field.loansout_naturalhistory.returnDetermination.name", + "defaultMessage": "New determination" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + } + } + }, + "loanoutItems": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.loanoutItems.fullName", + "defaultMessage": "Items loaned out accession numbers" + }, + "name": { + "id": "field.loansout_naturalhistory.loanoutItems.name", + "defaultMessage": "Accession numbers" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectGroup.fullName", + "defaultMessage": "Item loaned out" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "objectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectNumbers.fullName", + "defaultMessage": "Item loaned out object number(s)" + }, + "name": { + "id": "field.loansout_naturalhistory.objectNumbers.name", + "defaultMessage": "Object number(s)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectQuantity.fullName", + "defaultMessage": "Item loaned out quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.objectQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectConditions": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectConditions.fullName", + "defaultMessage": "Item loaned out condition" + }, + "name": { + "id": "field.loansout_naturalhistory.objectConditions.name", + "defaultMessage": "Condition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectNotes.fullName", + "defaultMessage": "Item loaned out note" + }, + "name": { + "id": "field.loansout_naturalhistory.objectNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transferGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferGroup.fullName", + "defaultMessage": "Loan transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "transferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.loansout_naturalhistory.transferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferQuantity.fullName", + "defaultMessage": "Transfer quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.transferQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOrg": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferOrg.fullName", + "defaultMessage": "Transfer to institution" + }, + "name": { + "id": "field.loansout_naturalhistory.transferOrg.name", + "defaultMessage": "To institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "transferPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferPerson.fullName", + "defaultMessage": "Transfer to person" + }, + "name": { + "id": "field.loansout_naturalhistory.transferPerson.name", + "defaultMessage": "To person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferDirector": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferDirector.fullName", + "defaultMessage": "Transfer under direction of" + }, + "name": { + "id": "field.loansout_naturalhistory.transferDirector.name", + "defaultMessage": "Under direction of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferNotes.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.loansout_naturalhistory.transferNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "objectexit": { + "fields": { + "ns2:objectexit_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/objectexit/domain/naturalhistory_extension" + } + }, + "count": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.objectexit_naturalhistory.count.name", + "defaultMessage": "Count" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "nagpra": { + "claim": { + "messages": { + "panel": { + "nagpraClaimTasks": { + "id": "panel.ext.nagpra.nagpraClaimTasks", + "defaultMessage": "Tasks Completed" + }, + "nagpraClaimContext": { + "id": "panel.ext.nagpra.nagpraClaimContext", + "defaultMessage": "Claim Context" + }, + "nagpraClaimProcessing": { + "id": "panel.ext.nagpra.nagpraClaimProcessing", + "defaultMessage": "Claim Processing Information" + } + } + }, + "optionLists": { + "nagpraNoticeDateTypes": { + "values": [ + "begin", + "end" + ], + "messages": { + "begin": { + "id": "option.nagpraNoticeDateTypes.begin", + "defaultMessage": "period begins" + }, + "end": { + "id": "option.nagpraNoticeDateTypes.end", + "defaultMessage": "period ends" + } + } + } + }, + "fields": { + "ns2:claims_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim/domain/nagpra" + } + }, + "nagpraClaimName": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimName.name", + "defaultMessage": "Claim name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimType": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimType.name", + "defaultMessage": "Claim type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraclaimtype" + } + } + } + } + }, + "nagpraClaimAltNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimAltNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameGroup.name", + "defaultMessage": "Alternate name/number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimAltName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltName.fullName", + "defaultMessage": "Alternate name/number" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltName.name", + "defaultMessage": "Name/number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimAltNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.fullName", + "defaultMessage": "Alternate name/number note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNote": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNote.name", + "defaultMessage": "Note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraClaimSiteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSiteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteGroup.name", + "defaultMessage": "Site/place involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSiteName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteName.fullName", + "defaultMessage": "Site/place involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "nagpraClaimSiteNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.fullName", + "defaultMessage": "Site/place involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimGroupGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimGroupGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupGroup.name", + "defaultMessage": "Cultural group involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimGroupName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupName.fullName", + "defaultMessage": "Cultural group involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraClaimGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.fullName", + "defaultMessage": "Cultural group involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimPeriodGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimPeriodGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodGroup.name", + "defaultMessage": "Time period represented" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimPeriodDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraClaimPeriodNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.fullName", + "defaultMessage": "Time period represented note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimInitialResponseGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimInitialResponseGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseGroup.name", + "defaultMessage": "Initial response" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimInitialResponseDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.fullName", + "defaultMessage": "Initial response date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimInitialResponseNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.fullName", + "defaultMessage": "Initial response note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToLocalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToLocalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalGroup.name", + "defaultMessage": "Sent to NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToLocalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.fullName", + "defaultMessage": "Sent to NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToLocalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.fullName", + "defaultMessage": "Sent to NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimLocalRecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimLocalRecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecGroup.name", + "defaultMessage": "Recommendation of NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimLocalRecDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.fullName", + "defaultMessage": "Recommendation of NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimLocalRecNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.fullName", + "defaultMessage": "Recommendation of NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToNatlGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToNatlGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlGroup.name", + "defaultMessage": "Sent to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToNatlDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.fullName", + "defaultMessage": "Sent to National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToNatlNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.fullName", + "defaultMessage": "Sent to National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlRespGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlRespGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespGroup.name", + "defaultMessage": "Response from National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlRespDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.fullName", + "defaultMessage": "Response from National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlRespNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.fullName", + "defaultMessage": "Response from National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalGroup.name", + "defaultMessage": "Publication by National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.fullName", + "defaultMessage": "Publication by National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.fullName", + "defaultMessage": "Publication by National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNoticeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNoticeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeGroup.name", + "defaultMessage": "National NAGPRA 30-day notice" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNoticeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.fullName", + "defaultMessage": "National NAGPRA 30-day notice date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNoticeDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.fullName", + "defaultMessage": "National NAGPRA 30-day notice date type" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nagpraNoticeDateTypes" + } + } + } + }, + "nagpraClaimNoticeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.fullName", + "defaultMessage": "National NAGPRA 30-day notice note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimTransferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimTransferGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferGroup.name", + "defaultMessage": "Transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimTransferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "dispositionPossibilitiesDiscussed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussed.name", + "defaultMessage": "Disposition possibilities discussed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dispositionPossibilitiesDiscussedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.fullName", + "defaultMessage": "Disposition possibilities discussed note" + }, + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "surroundingTribesContacted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.surroundingTribesContacted.name", + "defaultMessage": "Surrounding tribes contacted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "surroundingTribesContactedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.fullName", + "defaultMessage": "Surrounding tribes contacted note" + }, + "name": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "workingTeamNotified": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.workingTeamNotified.name", + "defaultMessage": "Institutional NAGPRA team notified" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "workingTeamNotifiedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.fullName", + "defaultMessage": "Institutional NAGPRA team notified note" + }, + "name": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "siteFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.siteFileResearchCompleted.name", + "defaultMessage": "Site file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "siteFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.fullName", + "defaultMessage": "Site file research completed note" + }, + "name": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "accessionFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompleted.name", + "defaultMessage": "Accession file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "accessionFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.fullName", + "defaultMessage": "Accession file research completed note" + }, + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsLocatedAndCounted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCounted.name", + "defaultMessage": "Objects located and counted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsLocatedAndCountedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.fullName", + "defaultMessage": "Objects located and counted note" + }, + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsConsolidated": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsConsolidated.name", + "defaultMessage": "Objects consolidated" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsConsolidatedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsConsolidatedNote.fullName", + "defaultMessage": "Objects consolidated note" + }, + "name": { + "id": "field.claims_nagpra.objectsConsolidatedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsPhotographed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsPhotographed.name", + "defaultMessage": "Objects photographed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsPhotographedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsPhotographedNote.fullName", + "defaultMessage": "Objects photographed note" + }, + "name": { + "id": "field.claims_nagpra.objectsPhotographedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "registrationDocumentsDrafted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.registrationDocumentsDrafted.name", + "defaultMessage": "Registration documents drawn up" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "registrationDocumentsDraftedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.fullName", + "defaultMessage": "Registration documents drawn up note" + }, + "name": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "tribeContactedForPackingPreferences": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferences.name", + "defaultMessage": "Tribe contacted for packing/storage instructions" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "tribeContactedForPackingPreferencesNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.fullName", + "defaultMessage": "Tribe contacted for packing/storage instructions note" + }, + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateArrangedForTransfer": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dateArrangedForTransfer.name", + "defaultMessage": "Date arranged for pickup/transfer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dateArrangedForTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.fullName", + "defaultMessage": "Date arranged for pickup/transfer note" + }, + "name": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsMarkedAsDeaccessioned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessioned.name", + "defaultMessage": "Objects marked as deaccessioned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsMarkedAsDeaccessionedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.fullName", + "defaultMessage": "Objects marked as deaccessioned note" + }, + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "documentsArchived": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.documentsArchived.name", + "defaultMessage": "Claim documents archived" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "documentsArchivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.documentsArchivedNote.fullName", + "defaultMessage": "Claim documents archived note" + }, + "name": { + "id": "field.claims_nagpra.documentsArchivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "form": { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimContext", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimProcessing", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTasks", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContacted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContactedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotified", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotifiedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCounted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCountedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidated", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidatedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDrafted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDraftedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferences", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferencesNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransfer", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransferNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessioned", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessionedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchived", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchivedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "collectionobject": { + "messages": { + "panel": { + "nagpraCompliance": { + "id": "panel.ext.nagpra.nagpraCompliance", + "defaultMessage": "Repatriation and NAGPRA Compliance Information" + } + }, + "inputTable": { + "nagpraReportFiled": { + "id": "panel.ext.nagpra.nagpraReportFiled", + "defaultMessage": "Reported to National NAGPRA" + } + } + }, + "fields": { + "ns2:collectionobjects_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/nagpra" + } + }, + "nagpraInventoryNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraInventoryName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraInventoryName.name", + "defaultMessage": "NAGPRA inventory" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagprainventory" + } + } + } + } + }, + "nagpraCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCategory.name", + "defaultMessage": "Museum NAGPRA category determination" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpracategory" + } + } + } + } + }, + "graveAssocCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "graveAssocCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.graveAssocCode.name", + "defaultMessage": "Grave association code" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "graveassoccode" + } + } + } + } + }, + "nagpraCulturalDeterminations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCulturalDetermination": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCulturalDetermination.name", + "defaultMessage": "NAGPRA cultural determination note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraNote.name", + "defaultMessage": "NAGPRA note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraDetermGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraDetermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermGroup.name", + "defaultMessage": "Cultural determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraDetermCulture": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.fullName", + "defaultMessage": "Cultural determination culture" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.name", + "defaultMessage": "Culture" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraDetermType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.fullName", + "defaultMessage": "Cultural determination type" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpradetermtype" + } + } + } + }, + "nagpraDetermBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.fullName", + "defaultMessage": "Cultural determination by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.name", + "defaultMessage": "By" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "nagpraDetermNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.fullName", + "defaultMessage": "Cultural determination note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "repatriationNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "repatriationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.repatriationNote.name", + "defaultMessage": "Repatriation note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraReportFiledGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraReportFiledGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledGroup.name", + "defaultMessage": "Reported to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraReportFiled": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.fullName", + "defaultMessage": "NAGPRA report filed" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.name", + "defaultMessage": "Report filed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nagpraReportFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.fullName", + "defaultMessage": "NAGPRA report filed by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledWith": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.fullName", + "defaultMessage": "NAGPRA report filed with" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.name", + "defaultMessage": "Filed with" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraReportFiledNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.fullName", + "defaultMessage": "Reporting note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "place": { + "messages": { + "panel": { + "assertionInfo": { + "id": "panel.place.assertionInfo", + "defaultMessage": "Assertion Information" + }, + "assertions": { + "id": "panel.place.assertions", + "defaultMessage": "Cultural Affiliation Lines of Evidence" + }, + "background": { + "id": "panel.place.background", + "defaultMessage": "Background Research and Additional Information" + }, + "consultedDocs": { + "id": "panel.place.consultedDocs", + "defaultMessage": "Documents Consulted for Cultural Affiliation Research" + } + } + }, + "fields": { + "ns2:places_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place/domain/nagpra" + } + }, + "basicInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "basicInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.basicInfo.name", + "defaultMessage": "Basic information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraHistoryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraHistory": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.nagpraHistory.name", + "defaultMessage": "NAGPRA inventory history" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "backgroundSummaryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "backgroundSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.backgroundSummary.name", + "defaultMessage": "Background and records summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "landOwnershipInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "landOwnershipInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.landOwnershipInfo.name", + "defaultMessage": "Land ownership information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "assertionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "assertionName": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionName.name", + "defaultMessage": "Assertion name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraassertionnames" + } + } + } + }, + "assertionDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionDescription.name", + "defaultMessage": "Assertion description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceGroup.name", + "defaultMessage": "Assertion source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionSourceBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceBy.name", + "defaultMessage": "By" + }, + "fullName": { + "id": "field.places_nagpra.assertionSourceBy.fullName", + "defaultMessage": "Assertion by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "assertionSourceDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceDate.fullName", + "defaultMessage": "Assertion source date" + }, + "name": { + "id": "field.places_nagpra.assertionSourceDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "assertionSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceNote.fullName", + "defaultMessage": "Assertion source note" + }, + "name": { + "id": "field.places_nagpra.assertionSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assertionRelatedRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionRelatedRecords.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionReferenceGroup.name", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReference.fullName", + "defaultMessage": "Assertion reference name" + }, + "name": { + "id": "field.places_nagpra.assertionReference.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "assertionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReferenceNote.fullName", + "defaultMessage": "Assertion refence note" + }, + "name": { + "id": "field.places_nagpra.assertionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "museumRecordsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "museumRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.museumRecordsList.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "manuscriptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "manuscriptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.manuscriptGroup.name", + "defaultMessage": "Unpublished manuscript" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "manuscriptReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptReferences.fullName", + "defaultMessage": "Unpublished manuscript reference" + }, + "name": { + "id": "field.places_nagpra.manuscriptReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local," + } + } + } + }, + "manuscriptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptNote.fullName", + "defaultMessage": "Unpublished manuscript note" + }, + "name": { + "id": "field.places_nagpra.manuscriptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "reportRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "reportRefGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.reportRefGroup.name", + "defaultMessage": "Published report" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reportReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportReferences.fullName", + "defaultMessage": "Published report reference" + }, + "name": { + "id": "field.places_nagpra.reportReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local" + } + } + } + }, + "reportNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportNote.fullName", + "defaultMessage": "Published report note" + }, + "name": { + "id": "field.places_nagpra.reportNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "form": { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "background", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "basicInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "basicInfo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistoryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummaryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummary" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertions", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionRelatedRecords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "consultedDocs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "museumRecordsList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "museumRecords" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reportReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + } + }, + "optionLists": { + "dimensions": { + "values": [ + "area", + "base", + "circumference", + "count", + "depth", + "diameter", + "height", + "intended duration", + "length", + "running-time", + "screen resolution", + "target", + "volume", + "weight", + "width" + ], + "messages": { + "area": { + "id": "option.dimensions.area", + "defaultMessage": "area" + }, + "base": { + "id": "option.dimensions.base", + "defaultMessage": "base" + }, + "circumference": { + "id": "option.dimensions.circumference", + "defaultMessage": "circumference" + }, + "count": { + "id": "option.dimensions.count", + "defaultMessage": "count" + }, + "depth": { + "id": "option.dimensions.depth", + "defaultMessage": "depth" + }, + "diameter": { + "id": "option.dimensions.diameter", + "defaultMessage": "diameter" + }, + "height": { + "id": "option.dimensions.height", + "defaultMessage": "height" + }, + "intended duration": { + "id": "option.dimensions.intended duration", + "defaultMessage": "intended duration" + }, + "length": { + "id": "option.dimensions.length", + "defaultMessage": "length" + }, + "running-time": { + "id": "option.dimensions.running-time", + "defaultMessage": "running time" + }, + "screen resolution": { + "id": "option.dimensions.screen resolution", + "defaultMessage": "screen resolution" + }, + "target": { + "id": "option.dimensions.target", + "defaultMessage": "target" + }, + "volume": { + "id": "option.dimensions.volume", + "defaultMessage": "volume" + }, + "weight": { + "id": "option.dimensions.weight", + "defaultMessage": "weight" + }, + "width": { + "id": "option.dimensions.width", + "defaultMessage": "width" + } + } + }, + "measurementUnits": { + "values": [ + "carats", + "centimeters", + "cubic-centimeters", + "dpi", + "feet", + "hours", + "inches", + "kilograms", + "liters", + "millimeters", + "milliseconds", + "meters", + "minutes", + "ounces", + "pixels", + "pounds", + "ppi", + "seconds", + "square-feet", + "stories", + "tons" + ], + "messages": { + "carats": { + "id": "option.measurementUnits.carats", + "defaultMessage": "carats" + }, + "centimeters": { + "id": "option.measurementUnits.centimeters", + "defaultMessage": "centimeters" + }, + "cubic-centimeters": { + "id": "option.measurementUnits.cubic-centimeters", + "defaultMessage": "cubic centimeters" + }, + "dpi": { + "id": "option.measurementUnits.dpi", + "defaultMessage": "dots per inch" + }, + "feet": { + "id": "option.measurementUnits.feet", + "defaultMessage": "feet" + }, + "hours": { + "id": "option.measurementUnits.hours", + "defaultMessage": "hours" + }, + "inches": { + "id": "option.measurementUnits.inches", + "defaultMessage": "inches" + }, + "kilograms": { + "id": "option.measurementUnits.kilograms", + "defaultMessage": "kilograms" + }, + "liters": { + "id": "option.measurementUnits.liters", + "defaultMessage": "liters" + }, + "millimeters": { + "id": "option.measurementUnits.millimeters", + "defaultMessage": "millimeters" + }, + "milliseconds": { + "id": "option.measurementUnits.milliseconds", + "defaultMessage": "milliseconds" + }, + "meters": { + "id": "option.measurementUnits.meters", + "defaultMessage": "meters" + }, + "minutes": { + "id": "option.measurementUnits.minutes", + "defaultMessage": "minutes" + }, + "ounces": { + "id": "option.measurementUnits.ounces", + "defaultMessage": "ounces" + }, + "pixels": { + "id": "option.measurementUnits.pixels", + "defaultMessage": "pixels" + }, + "pounds": { + "id": "option.measurementUnits.pounds", + "defaultMessage": "pounds" + }, + "ppi": { + "id": "option.measurementUnits.ppi", + "defaultMessage": "pixels per inch" + }, + "seconds": { + "id": "option.measurementUnits.seconds", + "defaultMessage": "seconds" + }, + "square-feet": { + "id": "option.measurementUnits.square-feet", + "defaultMessage": "square feet" + }, + "stories": { + "id": "option.measurementUnits.stories", + "defaultMessage": "stories" + }, + "tons": { + "id": "option.measurementUnits.tons", + "defaultMessage": "tons" + } + } + }, + "searchResultPagePageSizes": { + "values": [ + "20", + "40", + "100" + ] + }, + "searchPanelPageSizes": { + "values": [ + "5", + "10", + "20" + ] + }, + "booleans": { + "values": [ + "true", + "false" + ], + "messages": { + "true": { + "id": "option.booleans.true", + "defaultMessage": "yes" + }, + "false": { + "id": "option.booleans.false", + "defaultMessage": "no" + } + } + }, + "yesNoValues": { + "values": [ + "yes", + "no" + ], + "messages": { + "yes": { + "id": "option.yesNoValues.yes", + "defaultMessage": "yes" + }, + "no": { + "id": "option.yesNoValues.no", + "defaultMessage": "no" + } + } + }, + "dateQualifiers": { + "values": [ + "", + "+/-", + "+", + "-" + ], + "messages": { + "+/-": { + "id": "option.dateQualifiers.+/-", + "defaultMessage": "+/-" + }, + "+": { + "id": "option.dateQualifiers.+", + "defaultMessage": "+" + }, + "-": { + "id": "option.dateQualifiers.-", + "defaultMessage": "-" + } + } + }, + "departments": { + "values": [ + "antiquities", + "architecture-design", + "decorative-arts", + "ethnography", + "herpetology", + "media-performance-art", + "paintings-sculpture", + "paleobotany", + "photographs", + "prints-drawings" + ], + "messages": { + "antiquities": { + "id": "option.departments.antiquities", + "defaultMessage": "Antiquities" + }, + "architecture-design": { + "id": "option.departments.architecture-design", + "defaultMessage": "Architecture and Design" + }, + "decorative-arts": { + "id": "option.departments.decorative-arts", + "defaultMessage": "Decorative Arts" + }, + "ethnography": { + "id": "option.departments.ethnography", + "defaultMessage": "Ethnography" + }, + "herpetology": { + "id": "option.departments.herpetology", + "defaultMessage": "Herpetology" + }, + "media-performance-art": { + "id": "option.departments.media-performance-art", + "defaultMessage": "Media and Performance Art" + }, + "paintings-sculpture": { + "id": "option.departments.paintings-sculpture", + "defaultMessage": "Paintings and Sculpture" + }, + "paleobotany": { + "id": "option.departments.paleobotany", + "defaultMessage": "Paleobotany" + }, + "photographs": { + "id": "option.departments.photographs", + "defaultMessage": "Photographs" + }, + "prints-drawings": { + "id": "option.departments.prints-drawings", + "defaultMessage": "Prints and Drawings" + } + } + }, + "loanPurposes": { + "values": [ + "exhibition", + "research", + "scientificorexhibitpreparation", + "analysis", + "photography", + "conservationotherrequestedservices", + "longtermcollectionsmanagementandstorage" + ], + "messages": { + "exhibition": { + "id": "option.loanPurposes.exhibition", + "defaultMessage": "exhibition" + }, + "research": { + "id": "option.loanPurposes.research", + "defaultMessage": "research" + }, + "scientificorexhibitpreparation": { + "id": "option.loanPurposes.scientificorexhibitpreparation", + "defaultMessage": "scientific or exhibit preparation" + }, + "analysis": { + "id": "option.loanPurposes.analysis", + "defaultMessage": "analysis" + }, + "photography": { + "id": "option.loanPurposes.photography", + "defaultMessage": "photography" + }, + "conservationotherrequestedservices": { + "id": "option.loanPurposes.conservationotherrequestedservices", + "defaultMessage": "conservation or other requested services" + }, + "longtermcollectionsmanagementandstorage": { + "id": "option.loanPurposes.longtermcollectionsmanagementandstorage", + "defaultMessage": "long-term collections management and storage" + } + } + }, + "accountStatuses": { + "values": [ + "active", + "inactive" + ], + "messages": { + "active": { + "id": "option.accountStatuses.active", + "defaultMessage": "active" + }, + "inactive": { + "id": "option.accountStatuses.inactive", + "defaultMessage": "inactive" + } + } + }, + "acquisitionMethods": { + "values": [ + "bequest", + "commission", + "found in collection", + "gift", + "purchase", + "exchange", + "transfer", + "treasure", + "unknown" + ], + "messages": { + "bequest": { + "id": "option.acquisitionMethods.bequest", + "defaultMessage": "bequest" + }, + "commission": { + "id": "option.acquisitionMethods.commission", + "defaultMessage": "commission" + }, + "found in collection": { + "id": "option.acquisitionMethods.found in collection", + "defaultMessage": "found in collection" + }, + "gift": { + "id": "option.acquisitionMethods.gift", + "defaultMessage": "gift" + }, + "purchase": { + "id": "option.acquisitionMethods.purchase", + "defaultMessage": "purchase" + }, + "exchange": { + "id": "option.acquisitionMethods.exchange", + "defaultMessage": "exchange" + }, + "transfer": { + "id": "option.acquisitionMethods.transfer", + "defaultMessage": "transfer" + }, + "treasure": { + "id": "option.acquisitionMethods.treasure", + "defaultMessage": "treasure" + }, + "unknown": { + "id": "option.acquisitionMethods.unknown", + "defaultMessage": "unknown" + } + } + }, + "eventTypes": { + "values": [ + "beforeDocumentModification", + "documentCreated", + "lifecycle_transition_event" + ], + "messages": { + "beforeDocumentModification": { + "id": "option.eventTypes.beforeDocumentModification", + "defaultMessage": "Document modification" + }, + "documentCreated": { + "id": "option.eventTypes.documentCreated", + "defaultMessage": "Document created" + }, + "lifecycle_transition_event": { + "id": "option.eventTypes.lifecycle_transition_event", + "defaultMessage": "Lifecycle transition" + } + } + }, + "citationTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.citationTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.citationTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.citationTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.citationTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "ageUnits": { + "values": [ + "days", + "months", + "weeks", + "years" + ], + "messages": { + "days": { + "id": "option.ageUnits.days", + "defaultMessage": "days" + }, + "months": { + "id": "option.ageUnits.months", + "defaultMessage": "months" + }, + "weeks": { + "id": "option.ageUnits.weeks", + "defaultMessage": "weeks" + }, + "years": { + "id": "option.ageUnits.years", + "defaultMessage": "years" + } + } + }, + "collections": { + "values": [ + "library-collection", + "permanent-collection", + "study-collection", + "teaching-collection" + ], + "messages": { + "library-collection": { + "id": "option.collections.library-collection", + "defaultMessage": "library collection" + }, + "permanent-collection": { + "id": "option.collections.permanent-collection", + "defaultMessage": "permanent collection" + }, + "study-collection": { + "id": "option.collections.study-collection", + "defaultMessage": "study collection" + }, + "teaching-collection": { + "id": "option.collections.teaching-collection", + "defaultMessage": "teaching collection" + } + } + }, + "contentObjectTypes": { + "values": [ + "furniture", + "food" + ], + "messages": { + "furniture": { + "id": "option.contentObjectTypes.furniture", + "defaultMessage": "furniture" + }, + "food": { + "id": "option.contentObjectTypes.food", + "defaultMessage": "food" + } + } + }, + "forms": { + "values": [ + "bagged", + "bottled", + "boxed", + "in can or tin", + "in drum", + "dry", + "ground", + "mounted", + "pinned", + "thin section", + "wet", + "wrapped", + "unknown" + ], + "messages": { + "dry": { + "id": "option.forms.dry", + "defaultMessage": "dry" + }, + "pinned": { + "id": "option.forms.pinned", + "defaultMessage": "pinned" + }, + "thin-section": { + "id": "option.forms.thin-section", + "defaultMessage": "thin section" + }, + "wet": { + "id": "option.forms.wet", + "defaultMessage": "wet" + }, + "bagged": { + "id": "option.forms.bagged", + "defaultMessage": "bagged" + }, + "bottled": { + "id": "option.forms.bottled", + "defaultMessage": "bottled" + }, + "boxed": { + "id": "option.forms.boxed", + "defaultMessage": "boxed" + }, + "in can or tin": { + "id": "option.forms.in can or tin", + "defaultMessage": "in can or tin" + }, + "in drum": { + "id": "option.forms.in drum", + "defaultMessage": "in drum" + }, + "ground": { + "id": "option.forms.ground", + "defaultMessage": "ground" + }, + "mounted": { + "id": "option.forms.mounted", + "defaultMessage": "mounted" + }, + "thin section": { + "id": "option.forms.thin section", + "defaultMessage": "thin section" + }, + "wrapped": { + "id": "option.forms.wrapped", + "defaultMessage": "wrapped" + }, + "unknown": { + "id": "option.forms.unknown", + "defaultMessage": "unknown" + } + } + }, + "inscriptionTypes": { + "values": [ + "brand", + "credits", + "decoration", + "estate-stamp", + "graffiti", + "label", + "maker's-mark", + "plaque", + "signage" + ], + "messages": { + "brand": { + "id": "option.inscriptionTypes.brand", + "defaultMessage": "brand" + }, + "credits": { + "id": "option.inscriptionTypes.credits", + "defaultMessage": "credits" + }, + "decoration": { + "id": "option.inscriptionTypes.decoration", + "defaultMessage": "decoration" + }, + "estate-stamp": { + "id": "option.inscriptionTypes.estate-stamp", + "defaultMessage": "estate stamp" + }, + "graffiti": { + "id": "option.inscriptionTypes.graffiti", + "defaultMessage": "graffiti" + }, + "label": { + "id": "option.inscriptionTypes.label", + "defaultMessage": "label" + }, + "maker's-mark": { + "id": "option.inscriptionTypes.maker's-mark", + "defaultMessage": "maker's mark" + }, + "plaque": { + "id": "option.inscriptionTypes.plaque", + "defaultMessage": "plaque" + }, + "signage": { + "id": "option.inscriptionTypes.signage", + "defaultMessage": "signage" + } + } + }, + "measuredParts": { + "values": [ + "base", + "frame", + "framed", + "image-size", + "mount", + "paper-size", + "plate-size", + "unframed" + ], + "messages": { + "base": { + "id": "option.measuredParts.base", + "defaultMessage": "base" + }, + "frame": { + "id": "option.measuredParts.frame", + "defaultMessage": "frame" + }, + "framed": { + "id": "option.measuredParts.framed", + "defaultMessage": "framed" + }, + "image-size": { + "id": "option.measuredParts.image-size", + "defaultMessage": "image size" + }, + "mount": { + "id": "option.measuredParts.mount", + "defaultMessage": "mount" + }, + "paper-size": { + "id": "option.measuredParts.paper-size", + "defaultMessage": "paper size" + }, + "plate-size": { + "id": "option.measuredParts.plate-size", + "defaultMessage": "plate size" + }, + "unframed": { + "id": "option.measuredParts.unframed", + "defaultMessage": "unframed" + } + } + }, + "measurementMethods": { + "values": [ + "microscopy_reticule", + "standard_mesh_screen", + "sliding_calipers", + "spreading_calipers", + "measuring_tape_cloth", + "measuring_tape_metal", + "osteometric_board", + "ruler", + "pacing_pedometer", + "odometer", + "taping_chaining", + "stadia_transit", + "optical_range_finder", + "electronic_distance_measurement", + "protractor", + "goniometer", + "theodolite_total_station", + "balance_beam_scale", + "spring_scale", + "hydraulic_or_pneumatic_scale" + ], + "messages": { + "microscopy_reticule": { + "id": "option.measurementMethods.microscopy_reticule", + "defaultMessage": "microscopy (reticule)" + }, + "standard_mesh_screen": { + "id": "option.measurementMethods.standard_mesh_screen", + "defaultMessage": "standard mesh/screen" + }, + "sliding_calipers": { + "id": "option.measurementMethods.sliding_calipers", + "defaultMessage": "sliding calipers" + }, + "spreading_calipers": { + "id": "option.measurementMethods.spreading_calipers", + "defaultMessage": "spreading calipers" + }, + "measuring_tape_cloth": { + "id": "option.measurementMethods.measuring_tape_cloth", + "defaultMessage": "measuring tape (cloth)" + }, + "measuring_tape_metal": { + "id": "option.measurementMethods.measuring_tape_metal", + "defaultMessage": "measuring tape (metal)" + }, + "osteometric_board": { + "id": "option.measurementMethods.osteometric_board", + "defaultMessage": "osteometric board" + }, + "ruler": { + "id": "option.measurementMethods.ruler", + "defaultMessage": "ruler" + }, + "pacing_pedometer": { + "id": "option.measurementMethods.pacing_pedometer", + "defaultMessage": "pacing pedometer" + }, + "odometer": { + "id": "option.measurementMethods.odometer", + "defaultMessage": "odometer" + }, + "taping_chaining": { + "id": "option.measurementMethods.taping_chaining", + "defaultMessage": "taping/chaining" + }, + "stadia_transit": { + "id": "option.measurementMethods.stadia_transit", + "defaultMessage": "stadia/transit" + }, + "optical_range_finder": { + "id": "option.measurementMethods.optical_range_finder", + "defaultMessage": "optical range finder" + }, + "electronic_distance_measurement": { + "id": "option.measurementMethods.electronic_distance_measurement", + "defaultMessage": "electronic distance measurement" + }, + "protractor": { + "id": "option.measurementMethods.protractor", + "defaultMessage": "protractor" + }, + "goniometer": { + "id": "option.measurementMethods.goniometer", + "defaultMessage": "goniometer" + }, + "theodolite_total_station": { + "id": "option.measurementMethods.theodolite_total_station", + "defaultMessage": "theodolite/total station" + }, + "balance_beam_scale": { + "id": "option.measurementMethods.balance_beam_scale", + "defaultMessage": "balance/beam scale" + }, + "spring_scale": { + "id": "option.measurementMethods.spring_scale", + "defaultMessage": "spring scale" + }, + "hydraulic_or_pneumatic_scale": { + "id": "option.measurementMethods.hydraulic_or_pneumatic_scale", + "defaultMessage": "hydraulic or pneumatic scale" + } + } + }, + "nameCurrencies": { + "values": [ + "current", + "out of date", + "unknown" + ], + "messages": { + "current": { + "id": "option.nameCurrencies.current", + "defaultMessage": "current" + }, + "archaic": { + "id": "option.nameCurrencies.archaic", + "defaultMessage": "archaic" + }, + "out of date": { + "id": "option.nameCurrencies.out of date", + "defaultMessage": "out of date" + }, + "unknown": { + "id": "option.nameCurrencies.unknown", + "defaultMessage": "unknown" + } + } + }, + "nameLevels": { + "values": [ + "group", + "subgroup" + ], + "messages": { + "group": { + "id": "option.nameLevels.group", + "defaultMessage": "group" + }, + "subgroup": { + "id": "option.nameLevels.subgroup", + "defaultMessage": "subgroup" + } + } + }, + "nameSystems": { + "values": [ + "AASLH Nomenclature", + "Bennyhoff Olivella bead typology", + "Getty Art & Architecture Thesaurus", + "Gifford worked bone typology", + "Gifford worked shell typology", + "Heizer projectile point typology", + "Justice projectile point typology", + "Meighan historic glass bead typology", + "Treganza clay artifact typology", + "no system" + ], + "messages": { + "art-and-architecture-thesaurus": { + "id": "option.nameSystems.art-and-architecture-thesaurus", + "defaultMessage": "Art & Architecture Thesaurus" + }, + "nomenclature": { + "id": "option.nameSystems.nomenclature", + "defaultMessage": "nomenclature" + }, + "AASLH Nomenclature": { + "id": "option.nameSystems.AASLH Nomenclature", + "defaultMessage": "AASLH Nomenclature" + }, + "Bennyhoff Olivella bead typology": { + "id": "option.nameSystems.Bennyhoff Olivella bead typology", + "defaultMessage": "Bennyhoff Olivella bead typology" + }, + "Getty Art & Architecture Thesaurus": { + "id": "option.nameSystems.Getty Art & Architecture Thesaurus", + "defaultMessage": "Getty Art & Architecture Thesaurus" + }, + "Gifford worked bone typology": { + "id": "option.nameSystems.Gifford worked bone typology", + "defaultMessage": "Gifford worked bone typology" + }, + "Gifford worked shell typology": { + "id": "option.nameSystems.Gifford worked shell typology", + "defaultMessage": "Gifford worked shell typology" + }, + "Heizer projectile point typology": { + "id": "option.nameSystems.Heizer projectile point typology", + "defaultMessage": "Heizer projectile point typology" + }, + "Justice projectile point typology": { + "id": "option.nameSystems.Justice projectile point typology", + "defaultMessage": "Justice projectile point typology" + }, + "Meighan historic glass bead typology": { + "id": "option.nameSystems.Meighan historic glass bead typology", + "defaultMessage": "Meighan historic glass bead typology" + }, + "Treganza clay artifact typology": { + "id": "option.nameSystems.Treganza clay artifact typology", + "defaultMessage": "Treganza clay artifact typology" + }, + "no system": { + "id": "option.nameSystems.no system", + "defaultMessage": "no system" + } + } + }, + "nameTypes": { + "values": [ + "classified", + "denomination", + "simple", + "taxonomic", + "typological" + ], + "messages": { + "classified": { + "id": "option.nameTypes.classified", + "defaultMessage": "classified" + }, + "denomination": { + "id": "option.nameTypes.denomination", + "defaultMessage": "denomination" + }, + "simple": { + "id": "option.nameTypes.simple", + "defaultMessage": "simple" + }, + "taxonomic": { + "id": "option.nameTypes.taxonomic", + "defaultMessage": "taxonomic" + }, + "typological": { + "id": "option.nameTypes.typological", + "defaultMessage": "typological" + } + } + }, + "numberTypes": { + "values": [ + "associated uuid", + "barcode", + "lender", + "obsolete", + "previous", + "serial", + "unknown" + ], + "messages": { + "associated uuid": { + "id": "option.numberTypes.associated uuid", + "defaultMessage": "associated uuid" + }, + "barcode": { + "id": "option.numberTypes.barcode", + "defaultMessage": "barcode" + }, + "lender": { + "id": "option.numberTypes.lender", + "defaultMessage": "lender" + }, + "obsolete": { + "id": "option.numberTypes.obsolete", + "defaultMessage": "obsolete" + }, + "previous": { + "id": "option.numberTypes.previous", + "defaultMessage": "previous" + }, + "serial": { + "id": "option.numberTypes.serial", + "defaultMessage": "serial" + }, + "unknown": { + "id": "option.numberTypes.unknown", + "defaultMessage": "unknown" + } + } + }, + "objectComponentNames": { + "values": [ + "blade", + "buttonhole", + "handle", + "sleeve" + ], + "messages": { + "blade": { + "id": "option.objectComponentNames.blade", + "defaultMessage": "blade" + }, + "buttonhole": { + "id": "option.objectComponentNames.buttonhole", + "defaultMessage": "buttonhole" + }, + "handle": { + "id": "option.objectComponentNames.handle", + "defaultMessage": "handle" + }, + "sleeve": { + "id": "option.objectComponentNames.sleeve", + "defaultMessage": "sleeve" + } + } + }, + "objectStatuses": { + "values": [ + "copy", + "forgery", + "holotype", + "paralectotype", + "paratype", + "type" + ], + "messages": { + "copy": { + "id": "option.objectStatuses.copy", + "defaultMessage": "copy" + }, + "forgery": { + "id": "option.objectStatuses.forgery", + "defaultMessage": "forgery" + }, + "holotype": { + "id": "option.objectStatuses.holotype", + "defaultMessage": "holotype" + }, + "paralectotype": { + "id": "option.objectStatuses.paralectotype", + "defaultMessage": "paralectotype" + }, + "paratype": { + "id": "option.objectStatuses.paratype", + "defaultMessage": "paratype" + }, + "type": { + "id": "option.objectStatuses.type", + "defaultMessage": "type" + } + } + }, + "ownershipAccessLevels": { + "values": [ + "limited", + "open", + "restricted" + ], + "messages": { + "limited": { + "id": "option.ownershipAccessLevels.limited", + "defaultMessage": "limited" + }, + "open": { + "id": "option.ownershipAccessLevels.open", + "defaultMessage": "open" + }, + "restricted": { + "id": "option.ownershipAccessLevels.restricted", + "defaultMessage": "restricted" + } + } + }, + "ownershipCategories": { + "values": [ + "company", + "public", + "private" + ], + "messages": { + "company": { + "id": "option.ownershipCategories.company", + "defaultMessage": "company" + }, + "public": { + "id": "option.ownershipCategories.public", + "defaultMessage": "public" + }, + "private": { + "id": "option.ownershipCategories.private", + "defaultMessage": "private" + } + } + }, + "ownershipExchangeMethods": { + "values": [ + "bequest", + "exchange", + "gift", + "purchase", + "transfer", + "treasure" + ], + "messages": { + "bequest": { + "id": "option.ownershipExchangeMethods.bequest", + "defaultMessage": "bequest" + }, + "exchange": { + "id": "option.ownershipExchangeMethods.exchange", + "defaultMessage": "exchange" + }, + "gift": { + "id": "option.ownershipExchangeMethods.gift", + "defaultMessage": "gift" + }, + "purchase": { + "id": "option.ownershipExchangeMethods.purchase", + "defaultMessage": "purchase" + }, + "transfer": { + "id": "option.ownershipExchangeMethods.transfer", + "defaultMessage": "transfer" + }, + "treasure": { + "id": "option.ownershipExchangeMethods.treasure", + "defaultMessage": "treasure" + } + } + }, + "phases": { + "values": [ + "adult/mature", + "subadult/immature", + "egg", + "larva", + "seed", + "indeterminate", + "multiple", + "unknown" + ], + "messages": { + "adult": { + "id": "option.phases.adult", + "defaultMessage": "adult" + }, + "imago": { + "id": "option.phases.imago", + "defaultMessage": "imago" + }, + "larva": { + "id": "option.phases.larva", + "defaultMessage": "larva" + }, + "nymph": { + "id": "option.phases.nymph", + "defaultMessage": "nymph" + }, + "pupa": { + "id": "option.phases.pupa", + "defaultMessage": "pupa" + }, + "adult/mature": { + "id": "option.phases.adult/mature", + "defaultMessage": "adult/mature" + }, + "subadult/immature": { + "id": "option.phases.subadult/immature", + "defaultMessage": "subadult/immature" + }, + "egg": { + "id": "option.phases.egg", + "defaultMessage": "egg" + }, + "seed": { + "id": "option.phases.seed", + "defaultMessage": "seed" + }, + "indeterminate": { + "id": "option.phases.indeterminate", + "defaultMessage": "indeterminate" + }, + "multiple": { + "id": "option.phases.multiple", + "defaultMessage": "multiple" + }, + "unknown": { + "id": "option.phases.unknown", + "defaultMessage": "unknown" + } + } + }, + "positions": { + "values": [ + "back", + "base", + "bottom", + "front", + "inside", + "left", + "outside", + "recto", + "right", + "rim", + "top", + "verso" + ], + "messages": { + "back": { + "id": "option.positions.back", + "defaultMessage": "back" + }, + "base": { + "id": "option.positions.base", + "defaultMessage": "base" + }, + "bottom": { + "id": "option.positions.bottom", + "defaultMessage": "bottom" + }, + "front": { + "id": "option.positions.front", + "defaultMessage": "front" + }, + "inside": { + "id": "option.positions.inside", + "defaultMessage": "inside" + }, + "left": { + "id": "option.positions.left", + "defaultMessage": "left" + }, + "outside": { + "id": "option.positions.outside", + "defaultMessage": "outside" + }, + "recto": { + "id": "option.positions.recto", + "defaultMessage": "recto" + }, + "right": { + "id": "option.positions.right", + "defaultMessage": "right" + }, + "rim": { + "id": "option.positions.rim", + "defaultMessage": "rim" + }, + "top": { + "id": "option.positions.top", + "defaultMessage": "top" + }, + "verso": { + "id": "option.positions.verso", + "defaultMessage": "verso" + } + } + }, + "recordStatuses": { + "values": [ + "approved", + "in-process", + "new", + "temporary" + ], + "messages": { + "approved": { + "id": "option.recordStatuses.approved", + "defaultMessage": "approved" + }, + "in-process": { + "id": "option.recordStatuses.in-process", + "defaultMessage": "in process" + }, + "new": { + "id": "option.recordStatuses.new", + "defaultMessage": "new" + }, + "temporary": { + "id": "option.recordStatuses.temporary", + "defaultMessage": "temporary" + } + } + }, + "scripts": { + "values": [ + "carolingian-miniscule", + "gothic-script", + "palmer-method", + "roman-cursive", + "rustic-capitals", + "spencerian-method", + "square-capitals" + ], + "messages": { + "carolingian-miniscule": { + "id": "option.scripts.carolingian-miniscule", + "defaultMessage": "Carolingian minuscule" + }, + "gothic-script": { + "id": "option.scripts.gothic-script", + "defaultMessage": "Gothic script" + }, + "palmer-method": { + "id": "option.scripts.palmer-method", + "defaultMessage": "Palmer method" + }, + "roman-cursive": { + "id": "option.scripts.roman-cursive", + "defaultMessage": "Roman cursive" + }, + "rustic-capitals": { + "id": "option.scripts.rustic-capitals", + "defaultMessage": "rustic capitals" + }, + "spencerian-method": { + "id": "option.scripts.spencerian-method", + "defaultMessage": "Spencerian method" + }, + "square-capitals": { + "id": "option.scripts.square-capitals", + "defaultMessage": "square capitals" + } + } + }, + "sexes": { + "values": [ + "female", + "male" + ], + "messages": { + "female": { + "id": "option.sexes.female", + "defaultMessage": "female" + }, + "male": { + "id": "option.sexes.male", + "defaultMessage": "male" + } + } + }, + "technicalAttributes": { + "values": [ + "magnetic-tape-type", + "record-speed" + ], + "messages": { + "magnetic-tape-type": { + "id": "option.technicalAttributes.magnetic-tape-type", + "defaultMessage": "magnetic tape type" + }, + "record-speed": { + "id": "option.technicalAttributes.record-speed", + "defaultMessage": "record speed" + } + } + }, + "technicalAttributeMeasurements": { + "values": [ + "metal", + "78" + ], + "messages": { + "78": { + "id": "option.technicalAttributeMeasurements.78", + "defaultMessage": "78" + }, + "metal": { + "id": "option.technicalAttributeMeasurements.metal", + "defaultMessage": "metal" + } + } + }, + "technicalAttributeMeasurementUnits": { + "values": [ + "rpm" + ], + "messages": { + "rpm": { + "id": "option.technicalAttributeMeasurementUnits.rpm", + "defaultMessage": "rpm" + } + } + }, + "titleTypes": { + "values": [ + "assigned-by-artist", + "collection", + "generic", + "popular", + "series", + "trade" + ], + "messages": { + "assigned-by-artist": { + "id": "option.titleTypes.assigned-by-artist", + "defaultMessage": "assigned by artist" + }, + "collection": { + "id": "option.titleTypes.collection", + "defaultMessage": "collection" + }, + "generic": { + "id": "option.titleTypes.generic", + "defaultMessage": "generic" + }, + "popular": { + "id": "option.titleTypes.popular", + "defaultMessage": "popular" + }, + "series": { + "id": "option.titleTypes.series", + "defaultMessage": "series" + }, + "trade": { + "id": "option.titleTypes.trade", + "defaultMessage": "trade" + } + } + }, + "objectParentTypes": { + "values": [ + "set", + "derivative", + "separable-part", + "non-separable-part", + "recto", + "verso" + ], + "messages": { + "set": { + "id": "option.objectParentTypes.set", + "defaultMessage": "set" + }, + "derivative": { + "id": "option.objectParentTypes.derivative", + "defaultMessage": "work (derivative)" + }, + "separable-part": { + "id": "option.objectParentTypes.separable-part", + "defaultMessage": "work (separable part)" + }, + "non-separable-part": { + "id": "option.objectParentTypes.non-separable-part", + "defaultMessage": "work (non-separable part)" + }, + "recto": { + "id": "option.objectParentTypes.recto", + "defaultMessage": "work (recto)" + }, + "verso": { + "id": "option.objectParentTypes.verso", + "defaultMessage": "work (verso)" + } + } + }, + "objectChildTypes": { + "values": [ + "set", + "derivative", + "separable-part", + "non-separable-part", + "recto", + "verso" + ], + "messages": { + "set": { + "id": "option.objectChildTypes.set", + "defaultMessage": "item in a set" + }, + "derivative": { + "id": "option.objectChildTypes.derivative", + "defaultMessage": "derivative" + }, + "separable-part": { + "id": "option.objectChildTypes.separable-part", + "defaultMessage": "separable part" + }, + "non-separable-part": { + "id": "option.objectChildTypes.non-separable-part", + "defaultMessage": "non-separable part" + }, + "recto": { + "id": "option.objectChildTypes.recto", + "defaultMessage": "recto" + }, + "verso": { + "id": "option.objectChildTypes.verso", + "defaultMessage": "verso" + } + } + }, + "conceptTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.conceptTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.conceptTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.conceptTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.conceptTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "conceptTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.conceptTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.conceptTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.conceptTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "conceptHistoricalStatuses": { + "values": [ + "current", + "historical", + "both", + "unknown" + ], + "messages": { + "current": { + "id": "option.conceptHistoricalStatuses.current", + "defaultMessage": "current" + }, + "historical": { + "id": "option.conceptHistoricalStatuses.historical", + "defaultMessage": "historical" + }, + "both": { + "id": "option.conceptHistoricalStatuses.both", + "defaultMessage": "both" + }, + "unknown": { + "id": "option.conceptHistoricalStatuses.unknown", + "defaultMessage": "unknown" + } + } + }, + "objectAuditCategories": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.objectAuditCategories.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.objectAuditCategories.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.objectAuditCategories.high", + "defaultMessage": "high" + } + } + }, + "completenessLevels": { + "values": [ + "complete", + "fragmented", + "incomplete" + ], + "messages": { + "complete": { + "id": "option.completenessLevels.complete", + "defaultMessage": "complete" + }, + "fragmented": { + "id": "option.completenessLevels.fragmented", + "defaultMessage": "fragmented" + }, + "incomplete": { + "id": "option.completenessLevels.incomplete", + "defaultMessage": "incomplete" + } + } + }, + "conditions": { + "values": [ + "needsnowork", + "exhibitableneedswork", + "notexhibitablestable", + "injeopardy" + ], + "messages": { + "needsnowork": { + "id": "option.conditions.needsnowork", + "defaultMessage": "needs no work" + }, + "exhibitableneedswork": { + "id": "option.conditions.exhibitableneedswork", + "defaultMessage": "exhibitable / needs work" + }, + "notexhibitablestable": { + "id": "option.conditions.notexhibitablestable", + "defaultMessage": "not exhibitable / stable" + }, + "injeopardy": { + "id": "option.conditions.injeopardy", + "defaultMessage": "in jeopardy" + } + } + }, + "conservationTreatmentPriorities": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.conservationTreatmentPriorities.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.conservationTreatmentPriorities.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.conservationTreatmentPriorities.high", + "defaultMessage": "high" + } + } + }, + "hazards": { + "values": [ + "poisonous", + "radioactive" + ], + "messages": { + "poisonous": { + "id": "option.hazards.poisonous", + "defaultMessage": "poisonous" + }, + "radioactive": { + "id": "option.hazards.radioactive", + "defaultMessage": "radioactive" + } + } + }, + "conditionCheckMethods": { + "values": [ + "observed", + "xrayed" + ], + "messages": { + "observed": { + "id": "option.conditionCheckMethods.observed", + "defaultMessage": "observed" + }, + "xrayed": { + "id": "option.conditionCheckMethods.xrayed", + "defaultMessage": "x-rayed" + } + } + }, + "conditionCheckReasons": { + "values": [ + "conservation", + "damagedintransit", + "exhibition", + "loanin", + "newacquisition" + ], + "messages": { + "conservation": { + "id": "option.conditionCheckReasons.conservation", + "defaultMessage": "conservation" + }, + "damagedintransit": { + "id": "option.conditionCheckReasons.damagedintransit", + "defaultMessage": "damaged in transit" + }, + "exhibition": { + "id": "option.conditionCheckReasons.exhibition", + "defaultMessage": "exhibition" + }, + "loanin": { + "id": "option.conditionCheckReasons.loanin", + "defaultMessage": "loan in" + }, + "newacquisition": { + "id": "option.conditionCheckReasons.newacquisition", + "defaultMessage": "new acquisition" + } + } + }, + "salvagePriorityCodes": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.salvagePriorityCodes.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.salvagePriorityCodes.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.salvagePriorityCodes.high", + "defaultMessage": "high" + } + } + }, + "emailTypes": { + "values": [ + "business", + "personal", + "other" + ], + "messages": { + "business": { + "id": "option.emailTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.emailTypes.personal", + "defaultMessage": "personal" + }, + "other": { + "id": "option.emailTypes.other", + "defaultMessage": "other" + } + } + }, + "telephoneNumberTypes": { + "values": [ + "business", + "home", + "mobile", + "other" + ], + "messages": { + "business": { + "id": "option.telephoneNumberTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.telephoneNumberTypes.home", + "defaultMessage": "home" + }, + "mobile": { + "id": "option.telephoneNumberTypes.mobile", + "defaultMessage": "mobile" + }, + "other": { + "id": "option.telephoneNumberTypes.other", + "defaultMessage": "other" + } + } + }, + "faxNumberTypes": { + "values": [ + "business", + "home", + "other" + ], + "messages": { + "business": { + "id": "option.faxNumberTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.faxNumberTypes.home", + "defaultMessage": "home" + }, + "other": { + "id": "option.faxNumberTypes.other", + "defaultMessage": "other" + } + } + }, + "webAddressTypes": { + "values": [ + "business", + "personal", + "other" + ], + "messages": { + "business": { + "id": "option.webAddressTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.webAddressTypes.personal", + "defaultMessage": "personal" + }, + "other": { + "id": "option.webAddressTypes.other", + "defaultMessage": "other" + } + } + }, + "addressTypes": { + "values": [ + "business", + "home", + "other" + ], + "messages": { + "business": { + "id": "option.addressTypes.business", + "defaultMessage": "business" + }, + "home": { + "id": "option.addressTypes.home", + "defaultMessage": "home" + }, + "other": { + "id": "option.addressTypes.other", + "defaultMessage": "other" + } + } + }, + "addressCountries": { + "values": [ + "AX", + "AF", + "AL", + "DZ", + "AS", + "AD", + "AO", + "AI", + "AQ", + "AG", + "AR", + "AM", + "AW", + "AU", + "AT", + "AZ", + "BS", + "BH", + "BD", + "BB", + "BY", + "BE", + "BZ", + "BJ", + "BM", + "BT", + "BO", + "BQ", + "BA", + "BW", + "BV", + "BR", + "IO", + "BN", + "BG", + "BF", + "BI", + "KH", + "CM", + "CA", + "CV", + "KY", + "CF", + "TD", + "CL", + "CN", + "CX", + "CC", + "CO", + "KM", + "CG", + "CD", + "CK", + "CR", + "CI", + "HR", + "CU", + "CW", + "CY", + "CZ", + "DK", + "DJ", + "DM", + "DO", + "EC", + "EG", + "SV", + "GQ", + "ER", + "EE", + "ET", + "FK", + "FO", + "FJ", + "FI", + "FR", + "GF", + "PF", + "TF", + "GA", + "GM", + "GE", + "DE", + "GH", + "GI", + "GR", + "GL", + "GD", + "GP", + "GU", + "GT", + "GG", + "GN", + "GW", + "GY", + "HT", + "HM", + "VA", + "HN", + "HK", + "HU", + "IS", + "IN", + "ID", + "IR", + "IQ", + "IE", + "IM", + "IL", + "IT", + "JM", + "JP", + "JE", + "JO", + "KZ", + "KE", + "KI", + "KP", + "KR", + "KW", + "KG", + "LA", + "LV", + "LB", + "LS", + "LR", + "LY", + "LI", + "LT", + "LU", + "MO", + "MK", + "MG", + "MW", + "MY", + "MV", + "ML", + "MT", + "MH", + "MQ", + "MR", + "MU", + "YT", + "MX", + "FM", + "MD", + "MC", + "MN", + "ME", + "MS", + "MA", + "MZ", + "MM", + "NA", + "NR", + "NP", + "NL", + "NC", + "NZ", + "NI", + "NE", + "NG", + "NU", + "NF", + "MP", + "NO", + "OM", + "PK", + "PW", + "PS", + "PA", + "PG", + "PY", + "PE", + "PH", + "PN", + "PL", + "PT", + "PR", + "QA", + "RE", + "RO", + "RU", + "RW", + "BL", + "SH", + "KN", + "LC", + "MF", + "PM", + "VC", + "WS", + "SM", + "ST", + "SA", + "SN", + "RS", + "SC", + "SL", + "SG", + "SX", + "SK", + "SI", + "SB", + "SO", + "ZA", + "GS", + "SS", + "ES", + "LK", + "SD", + "SR", + "SJ", + "SZ", + "SE", + "CH", + "SY", + "TW", + "TJ", + "TZ", + "TH", + "TL", + "TG", + "TK", + "TO", + "TT", + "TN", + "TR", + "TM", + "TC", + "TV", + "UG", + "UA", + "AE", + "GB", + "US", + "UM", + "UY", + "UZ", + "VU", + "VE", + "VN", + "VG", + "VI", + "WF", + "EH", + "YE", + "ZM", + "ZW" + ], + "messages": { + "AF": { + "id": "option.addressCountries.AF", + "defaultMessage": "Afghanistan" + }, + "AX": { + "id": "option.addressCountries.AX", + "defaultMessage": "Åland Islands" + }, + "AL": { + "id": "option.addressCountries.AL", + "defaultMessage": "Albania" + }, + "DZ": { + "id": "option.addressCountries.DZ", + "defaultMessage": "Algeria" + }, + "AS": { + "id": "option.addressCountries.AS", + "defaultMessage": "American Samoa" + }, + "AD": { + "id": "option.addressCountries.AD", + "defaultMessage": "Andorra" + }, + "AO": { + "id": "option.addressCountries.AO", + "defaultMessage": "Angola" + }, + "AI": { + "id": "option.addressCountries.AI", + "defaultMessage": "Anguilla" + }, + "AQ": { + "id": "option.addressCountries.AQ", + "defaultMessage": "Antarctica" + }, + "AG": { + "id": "option.addressCountries.AG", + "defaultMessage": "Antigua and Barbuda" + }, + "AR": { + "id": "option.addressCountries.AR", + "defaultMessage": "Argentina" + }, + "AM": { + "id": "option.addressCountries.AM", + "defaultMessage": "Armenia" + }, + "AW": { + "id": "option.addressCountries.AW", + "defaultMessage": "Aruba" + }, + "AU": { + "id": "option.addressCountries.AU", + "defaultMessage": "Australia" + }, + "AT": { + "id": "option.addressCountries.AT", + "defaultMessage": "Austria" + }, + "AZ": { + "id": "option.addressCountries.AZ", + "defaultMessage": "Azerbaijan" + }, + "BS": { + "id": "option.addressCountries.BS", + "defaultMessage": "Bahamas (the)" + }, + "BH": { + "id": "option.addressCountries.BH", + "defaultMessage": "Bahrain" + }, + "BD": { + "id": "option.addressCountries.BD", + "defaultMessage": "Bangladesh" + }, + "BB": { + "id": "option.addressCountries.BB", + "defaultMessage": "Barbados" + }, + "BY": { + "id": "option.addressCountries.BY", + "defaultMessage": "Belarus" + }, + "BE": { + "id": "option.addressCountries.BE", + "defaultMessage": "Belgium" + }, + "BZ": { + "id": "option.addressCountries.BZ", + "defaultMessage": "Belize" + }, + "BJ": { + "id": "option.addressCountries.BJ", + "defaultMessage": "Benin" + }, + "BM": { + "id": "option.addressCountries.BM", + "defaultMessage": "Bermuda" + }, + "BT": { + "id": "option.addressCountries.BT", + "defaultMessage": "Bhutan" + }, + "BO": { + "id": "option.addressCountries.BO", + "defaultMessage": "Bolivia (Plurinational State of)" + }, + "BQ": { + "id": "option.addressCountries.BQ", + "defaultMessage": "Bonaire, Sint Eustatius and Saba" + }, + "BA": { + "id": "option.addressCountries.BA", + "defaultMessage": "Bosnia and Herzegovina" + }, + "BW": { + "id": "option.addressCountries.BW", + "defaultMessage": "Botswana" + }, + "BV": { + "id": "option.addressCountries.BV", + "defaultMessage": "Bouvet Island" + }, + "BR": { + "id": "option.addressCountries.BR", + "defaultMessage": "Brazil" + }, + "IO": { + "id": "option.addressCountries.IO", + "defaultMessage": "British Indian Ocean Territory (the)" + }, + "BN": { + "id": "option.addressCountries.BN", + "defaultMessage": "Brunei Darussalam" + }, + "BG": { + "id": "option.addressCountries.BG", + "defaultMessage": "Bulgaria" + }, + "BF": { + "id": "option.addressCountries.BF", + "defaultMessage": "Burkina Faso" + }, + "BI": { + "id": "option.addressCountries.BI", + "defaultMessage": "Burundi" + }, + "KH": { + "id": "option.addressCountries.KH", + "defaultMessage": "Cambodia" + }, + "CM": { + "id": "option.addressCountries.CM", + "defaultMessage": "Cameroon" + }, + "CA": { + "id": "option.addressCountries.CA", + "defaultMessage": "Canada" + }, + "CV": { + "id": "option.addressCountries.CV", + "defaultMessage": "Cape Verde" + }, + "KY": { + "id": "option.addressCountries.KY", + "defaultMessage": "Cayman Islands (the)" + }, + "CF": { + "id": "option.addressCountries.CF", + "defaultMessage": "Central African Republic (the)" + }, + "TD": { + "id": "option.addressCountries.TD", + "defaultMessage": "Chad" + }, + "CL": { + "id": "option.addressCountries.CL", + "defaultMessage": "Chile" + }, + "CN": { + "id": "option.addressCountries.CN", + "defaultMessage": "China" + }, + "CX": { + "id": "option.addressCountries.CX", + "defaultMessage": "Christmas Island" + }, + "CC": { + "id": "option.addressCountries.CC", + "defaultMessage": "Cocos (Keeling) Islands (the)" + }, + "CO": { + "id": "option.addressCountries.CO", + "defaultMessage": "Colombia" + }, + "KM": { + "id": "option.addressCountries.KM", + "defaultMessage": "Comoros (the)" + }, + "CG": { + "id": "option.addressCountries.CG", + "defaultMessage": "Congo (the)" + }, + "CD": { + "id": "option.addressCountries.CD", + "defaultMessage": "Congo (the Democratic Republic of the)" + }, + "CK": { + "id": "option.addressCountries.CK", + "defaultMessage": "Cook Islands (the)" + }, + "CR": { + "id": "option.addressCountries.CR", + "defaultMessage": "Costa Rica" + }, + "CI": { + "id": "option.addressCountries.CI", + "defaultMessage": "Côte d'Ivoire" + }, + "HR": { + "id": "option.addressCountries.HR", + "defaultMessage": "Croatia" + }, + "CU": { + "id": "option.addressCountries.CU", + "defaultMessage": "Cuba" + }, + "CW": { + "id": "option.addressCountries.CW", + "defaultMessage": "Curaçao" + }, + "CY": { + "id": "option.addressCountries.CY", + "defaultMessage": "Cyprus" + }, + "CZ": { + "id": "option.addressCountries.CZ", + "defaultMessage": "Czechia" + }, + "DK": { + "id": "option.addressCountries.DK", + "defaultMessage": "Denmark" + }, + "DJ": { + "id": "option.addressCountries.DJ", + "defaultMessage": "Djibouti" + }, + "DM": { + "id": "option.addressCountries.DM", + "defaultMessage": "Dominica" + }, + "DO": { + "id": "option.addressCountries.DO", + "defaultMessage": "Dominican Republic (the)" + }, + "EC": { + "id": "option.addressCountries.EC", + "defaultMessage": "Ecuador" + }, + "EG": { + "id": "option.addressCountries.EG", + "defaultMessage": "Egypt" + }, + "SV": { + "id": "option.addressCountries.SV", + "defaultMessage": "El Salvador" + }, + "GQ": { + "id": "option.addressCountries.GQ", + "defaultMessage": "Equatorial Guinea" + }, + "ER": { + "id": "option.addressCountries.ER", + "defaultMessage": "Eritrea" + }, + "EE": { + "id": "option.addressCountries.EE", + "defaultMessage": "Estonia" + }, + "ET": { + "id": "option.addressCountries.ET", + "defaultMessage": "Ethiopia" + }, + "FK": { + "id": "option.addressCountries.FK", + "defaultMessage": "Falkland Islands (the) [Malvinas]" + }, + "FO": { + "id": "option.addressCountries.FO", + "defaultMessage": "Faroe Islands (the)" + }, + "FJ": { + "id": "option.addressCountries.FJ", + "defaultMessage": "Fiji" + }, + "FI": { + "id": "option.addressCountries.FI", + "defaultMessage": "Finland" + }, + "FR": { + "id": "option.addressCountries.FR", + "defaultMessage": "France" + }, + "GF": { + "id": "option.addressCountries.GF", + "defaultMessage": "French Guiana" + }, + "PF": { + "id": "option.addressCountries.PF", + "defaultMessage": "French Polynesia" + }, + "TF": { + "id": "option.addressCountries.TF", + "defaultMessage": "French Southern Territories (the)" + }, + "GA": { + "id": "option.addressCountries.GA", + "defaultMessage": "Gabon" + }, + "GM": { + "id": "option.addressCountries.GM", + "defaultMessage": "Gambia (the)" + }, + "GE": { + "id": "option.addressCountries.GE", + "defaultMessage": "Georgia" + }, + "DE": { + "id": "option.addressCountries.DE", + "defaultMessage": "Germany" + }, + "GH": { + "id": "option.addressCountries.GH", + "defaultMessage": "Ghana" + }, + "GI": { + "id": "option.addressCountries.GI", + "defaultMessage": "Gibraltar" + }, + "GR": { + "id": "option.addressCountries.GR", + "defaultMessage": "Greece" + }, + "GL": { + "id": "option.addressCountries.GL", + "defaultMessage": "Greenland" + }, + "GD": { + "id": "option.addressCountries.GD", + "defaultMessage": "Grenada" + }, + "GP": { + "id": "option.addressCountries.GP", + "defaultMessage": "Guadeloupe" + }, + "GU": { + "id": "option.addressCountries.GU", + "defaultMessage": "Guam" + }, + "GT": { + "id": "option.addressCountries.GT", + "defaultMessage": "Guatemala" + }, + "GG": { + "id": "option.addressCountries.GG", + "defaultMessage": "Guernsey" + }, + "GN": { + "id": "option.addressCountries.GN", + "defaultMessage": "Guinea" + }, + "GW": { + "id": "option.addressCountries.GW", + "defaultMessage": "Guinea-Bissau" + }, + "GY": { + "id": "option.addressCountries.GY", + "defaultMessage": "Guyana" + }, + "HT": { + "id": "option.addressCountries.HT", + "defaultMessage": "Haiti" + }, + "HM": { + "id": "option.addressCountries.HM", + "defaultMessage": "Heard Island and McDonald Islands" + }, + "VA": { + "id": "option.addressCountries.VA", + "defaultMessage": "Holy See (the)" + }, + "HN": { + "id": "option.addressCountries.HN", + "defaultMessage": "Honduras" + }, + "HK": { + "id": "option.addressCountries.HK", + "defaultMessage": "Hong Kong" + }, + "HU": { + "id": "option.addressCountries.HU", + "defaultMessage": "Hungary" + }, + "IS": { + "id": "option.addressCountries.IS", + "defaultMessage": "Iceland" + }, + "IN": { + "id": "option.addressCountries.IN", + "defaultMessage": "India" + }, + "ID": { + "id": "option.addressCountries.ID", + "defaultMessage": "Indonesia" + }, + "IR": { + "id": "option.addressCountries.IR", + "defaultMessage": "Iran (Islamic Republic of)" + }, + "IQ": { + "id": "option.addressCountries.IQ", + "defaultMessage": "Iraq" + }, + "IE": { + "id": "option.addressCountries.IE", + "defaultMessage": "Ireland" + }, + "IM": { + "id": "option.addressCountries.IM", + "defaultMessage": "Isle of Man" + }, + "IL": { + "id": "option.addressCountries.IL", + "defaultMessage": "Israel" + }, + "IT": { + "id": "option.addressCountries.IT", + "defaultMessage": "Italy" + }, + "JM": { + "id": "option.addressCountries.JM", + "defaultMessage": "Jamaica" + }, + "JP": { + "id": "option.addressCountries.JP", + "defaultMessage": "Japan" + }, + "JE": { + "id": "option.addressCountries.JE", + "defaultMessage": "Jersey" + }, + "JO": { + "id": "option.addressCountries.JO", + "defaultMessage": "Jordan" + }, + "KZ": { + "id": "option.addressCountries.KZ", + "defaultMessage": "Kazakhstan" + }, + "KE": { + "id": "option.addressCountries.KE", + "defaultMessage": "Kenya" + }, + "KI": { + "id": "option.addressCountries.KI", + "defaultMessage": "Kiribati" + }, + "KP": { + "id": "option.addressCountries.KP", + "defaultMessage": "Korea (the Democratic People's Republic of)" + }, + "KR": { + "id": "option.addressCountries.KR", + "defaultMessage": "Korea (the Republic of)" + }, + "KW": { + "id": "option.addressCountries.KW", + "defaultMessage": "Kuwait" + }, + "KG": { + "id": "option.addressCountries.KG", + "defaultMessage": "Kyrgyzstan" + }, + "LA": { + "id": "option.addressCountries.LA", + "defaultMessage": "Lao People's Democratic Republic (the)" + }, + "LV": { + "id": "option.addressCountries.LV", + "defaultMessage": "Latvia" + }, + "LB": { + "id": "option.addressCountries.LB", + "defaultMessage": "Lebanon" + }, + "LS": { + "id": "option.addressCountries.LS", + "defaultMessage": "Lesotho" + }, + "LR": { + "id": "option.addressCountries.LR", + "defaultMessage": "Liberia" + }, + "LY": { + "id": "option.addressCountries.LY", + "defaultMessage": "Libya" + }, + "LI": { + "id": "option.addressCountries.LI", + "defaultMessage": "Liechtenstein" + }, + "LT": { + "id": "option.addressCountries.LT", + "defaultMessage": "Lithuania" + }, + "LU": { + "id": "option.addressCountries.LU", + "defaultMessage": "Luxembourg" + }, + "MO": { + "id": "option.addressCountries.MO", + "defaultMessage": "Macao" + }, + "MK": { + "id": "option.addressCountries.MK", + "defaultMessage": "Macedonia (the former Yugoslav Republic of)" + }, + "MG": { + "id": "option.addressCountries.MG", + "defaultMessage": "Madagascar" + }, + "MW": { + "id": "option.addressCountries.MW", + "defaultMessage": "Malawi" + }, + "MY": { + "id": "option.addressCountries.MY", + "defaultMessage": "Malaysia" + }, + "MV": { + "id": "option.addressCountries.MV", + "defaultMessage": "Maldives" + }, + "ML": { + "id": "option.addressCountries.ML", + "defaultMessage": "Mali" + }, + "MT": { + "id": "option.addressCountries.MT", + "defaultMessage": "Malta" + }, + "MH": { + "id": "option.addressCountries.MH", + "defaultMessage": "Marshall Islands (the)" + }, + "MQ": { + "id": "option.addressCountries.MQ", + "defaultMessage": "Martinique" + }, + "MR": { + "id": "option.addressCountries.MR", + "defaultMessage": "Mauritania" + }, + "MU": { + "id": "option.addressCountries.MU", + "defaultMessage": "Mauritius" + }, + "YT": { + "id": "option.addressCountries.YT", + "defaultMessage": "Mayotte" + }, + "MX": { + "id": "option.addressCountries.MX", + "defaultMessage": "Mexico" + }, + "FM": { + "id": "option.addressCountries.FM", + "defaultMessage": "Micronesia (Federated States of)" + }, + "MD": { + "id": "option.addressCountries.MD", + "defaultMessage": "Moldova (the Republic of)" + }, + "MC": { + "id": "option.addressCountries.MC", + "defaultMessage": "Monaco" + }, + "MN": { + "id": "option.addressCountries.MN", + "defaultMessage": "Mongolia" + }, + "ME": { + "id": "option.addressCountries.ME", + "defaultMessage": "Montenegro" + }, + "MS": { + "id": "option.addressCountries.MS", + "defaultMessage": "Montserrat" + }, + "MA": { + "id": "option.addressCountries.MA", + "defaultMessage": "Morocco" + }, + "MZ": { + "id": "option.addressCountries.MZ", + "defaultMessage": "Mozambique" + }, + "MM": { + "id": "option.addressCountries.MM", + "defaultMessage": "Myanmar" + }, + "NA": { + "id": "option.addressCountries.NA", + "defaultMessage": "Namibia" + }, + "NR": { + "id": "option.addressCountries.NR", + "defaultMessage": "Nauru" + }, + "NP": { + "id": "option.addressCountries.NP", + "defaultMessage": "Nepal" + }, + "NL": { + "id": "option.addressCountries.NL", + "defaultMessage": "Netherlands (the)" + }, + "NC": { + "id": "option.addressCountries.NC", + "defaultMessage": "New Caledonia" + }, + "NZ": { + "id": "option.addressCountries.NZ", + "defaultMessage": "New Zealand" + }, + "NI": { + "id": "option.addressCountries.NI", + "defaultMessage": "Nicaragua" + }, + "NE": { + "id": "option.addressCountries.NE", + "defaultMessage": "Niger (the)" + }, + "NG": { + "id": "option.addressCountries.NG", + "defaultMessage": "Nigeria" + }, + "NU": { + "id": "option.addressCountries.NU", + "defaultMessage": "Niue" + }, + "NF": { + "id": "option.addressCountries.NF", + "defaultMessage": "Norfolk Island" + }, + "MP": { + "id": "option.addressCountries.MP", + "defaultMessage": "Northern Mariana Islands (the)" + }, + "NO": { + "id": "option.addressCountries.NO", + "defaultMessage": "Norway" + }, + "OM": { + "id": "option.addressCountries.OM", + "defaultMessage": "Oman" + }, + "PK": { + "id": "option.addressCountries.PK", + "defaultMessage": "Pakistan" + }, + "PW": { + "id": "option.addressCountries.PW", + "defaultMessage": "Palau" + }, + "PS": { + "id": "option.addressCountries.PS", + "defaultMessage": "Palestine, State of" + }, + "PA": { + "id": "option.addressCountries.PA", + "defaultMessage": "Panama" + }, + "PG": { + "id": "option.addressCountries.PG", + "defaultMessage": "Papua New Guinea" + }, + "PY": { + "id": "option.addressCountries.PY", + "defaultMessage": "Paraguay" + }, + "PE": { + "id": "option.addressCountries.PE", + "defaultMessage": "Peru" + }, + "PH": { + "id": "option.addressCountries.PH", + "defaultMessage": "Philippines (the)" + }, + "PN": { + "id": "option.addressCountries.PN", + "defaultMessage": "Pitcairn" + }, + "PL": { + "id": "option.addressCountries.PL", + "defaultMessage": "Poland" + }, + "PT": { + "id": "option.addressCountries.PT", + "defaultMessage": "Portugal" + }, + "PR": { + "id": "option.addressCountries.PR", + "defaultMessage": "Puerto Rico" + }, + "QA": { + "id": "option.addressCountries.QA", + "defaultMessage": "Qatar" + }, + "RE": { + "id": "option.addressCountries.RE", + "defaultMessage": "Réunion" + }, + "RO": { + "id": "option.addressCountries.RO", + "defaultMessage": "Romania" + }, + "RU": { + "id": "option.addressCountries.RU", + "defaultMessage": "Russian Federation (the)" + }, + "RW": { + "id": "option.addressCountries.RW", + "defaultMessage": "Rwanda" + }, + "BL": { + "id": "option.addressCountries.BL", + "defaultMessage": "Saint Barthélemy" + }, + "SH": { + "id": "option.addressCountries.SH", + "defaultMessage": "Saint Helena, Ascension and Tristan da Cunha" + }, + "KN": { + "id": "option.addressCountries.KN", + "defaultMessage": "Saint Kitts and Nevis" + }, + "LC": { + "id": "option.addressCountries.LC", + "defaultMessage": "Saint Lucia" + }, + "MF": { + "id": "option.addressCountries.MF", + "defaultMessage": "Saint Martin (French part)" + }, + "PM": { + "id": "option.addressCountries.PM", + "defaultMessage": "Saint Pierre and Miquelon" + }, + "VC": { + "id": "option.addressCountries.VC", + "defaultMessage": "Saint Vincent and the Grenadines" + }, + "WS": { + "id": "option.addressCountries.WS", + "defaultMessage": "Samoa" + }, + "SM": { + "id": "option.addressCountries.SM", + "defaultMessage": "San Marino" + }, + "ST": { + "id": "option.addressCountries.ST", + "defaultMessage": "Sao Tome and Principe" + }, + "SA": { + "id": "option.addressCountries.SA", + "defaultMessage": "Saudi Arabia" + }, + "SN": { + "id": "option.addressCountries.SN", + "defaultMessage": "Senegal" + }, + "RS": { + "id": "option.addressCountries.RS", + "defaultMessage": "Serbia" + }, + "SC": { + "id": "option.addressCountries.SC", + "defaultMessage": "Seychelles" + }, + "SL": { + "id": "option.addressCountries.SL", + "defaultMessage": "Sierra Leone" + }, + "SG": { + "id": "option.addressCountries.SG", + "defaultMessage": "Singapore" + }, + "SX": { + "id": "option.addressCountries.SX", + "defaultMessage": "Sint Maarten (Dutch part)" + }, + "SK": { + "id": "option.addressCountries.SK", + "defaultMessage": "Slovakia" + }, + "SI": { + "id": "option.addressCountries.SI", + "defaultMessage": "Slovenia" + }, + "SB": { + "id": "option.addressCountries.SB", + "defaultMessage": "Solomon Islands" + }, + "SO": { + "id": "option.addressCountries.SO", + "defaultMessage": "Somalia" + }, + "ZA": { + "id": "option.addressCountries.ZA", + "defaultMessage": "South Africa" + }, + "GS": { + "id": "option.addressCountries.GS", + "defaultMessage": "South Georgia and the South Sandwich Islands" + }, + "SS": { + "id": "option.addressCountries.SS", + "defaultMessage": "South Sudan" + }, + "ES": { + "id": "option.addressCountries.ES", + "defaultMessage": "Spain" + }, + "LK": { + "id": "option.addressCountries.LK", + "defaultMessage": "Sri Lanka" + }, + "SD": { + "id": "option.addressCountries.SD", + "defaultMessage": "Sudan (the)" + }, + "SR": { + "id": "option.addressCountries.SR", + "defaultMessage": "Suriname" + }, + "SJ": { + "id": "option.addressCountries.SJ", + "defaultMessage": "Svalbard and Jan Mayen" + }, + "SZ": { + "id": "option.addressCountries.SZ", + "defaultMessage": "Swaziland" + }, + "SE": { + "id": "option.addressCountries.SE", + "defaultMessage": "Sweden" + }, + "CH": { + "id": "option.addressCountries.CH", + "defaultMessage": "Switzerland" + }, + "SY": { + "id": "option.addressCountries.SY", + "defaultMessage": "Syrian Arab Republic" + }, + "TW": { + "id": "option.addressCountries.TW", + "defaultMessage": "Taiwan (Province of China)" + }, + "TJ": { + "id": "option.addressCountries.TJ", + "defaultMessage": "Tajikistan" + }, + "TZ": { + "id": "option.addressCountries.TZ", + "defaultMessage": "Tanzania, United Republic of" + }, + "TH": { + "id": "option.addressCountries.TH", + "defaultMessage": "Thailand" + }, + "TL": { + "id": "option.addressCountries.TL", + "defaultMessage": "Timor-Leste" + }, + "TG": { + "id": "option.addressCountries.TG", + "defaultMessage": "Togo" + }, + "TK": { + "id": "option.addressCountries.TK", + "defaultMessage": "Tokelau" + }, + "TO": { + "id": "option.addressCountries.TO", + "defaultMessage": "Tonga" + }, + "TT": { + "id": "option.addressCountries.TT", + "defaultMessage": "Trinidad and Tobago" + }, + "TN": { + "id": "option.addressCountries.TN", + "defaultMessage": "Tunisia" + }, + "TR": { + "id": "option.addressCountries.TR", + "defaultMessage": "Turkey" + }, + "TM": { + "id": "option.addressCountries.TM", + "defaultMessage": "Turkmenistan" + }, + "TC": { + "id": "option.addressCountries.TC", + "defaultMessage": "Turks and Caicos Islands (the)" + }, + "TV": { + "id": "option.addressCountries.TV", + "defaultMessage": "Tuvalu" + }, + "UG": { + "id": "option.addressCountries.UG", + "defaultMessage": "Uganda" + }, + "UA": { + "id": "option.addressCountries.UA", + "defaultMessage": "Ukraine" + }, + "AE": { + "id": "option.addressCountries.AE", + "defaultMessage": "United Arab Emirates (the)" + }, + "GB": { + "id": "option.addressCountries.GB", + "defaultMessage": "United Kingdom of Great Britain and Northern Ireland (the)" + }, + "US": { + "id": "option.addressCountries.US", + "defaultMessage": "United States of America (the)" + }, + "UM": { + "id": "option.addressCountries.UM", + "defaultMessage": "United States Minor Outlying Islands (the)" + }, + "UY": { + "id": "option.addressCountries.UY", + "defaultMessage": "Uruguay" + }, + "UZ": { + "id": "option.addressCountries.UZ", + "defaultMessage": "Uzbekistan" + }, + "VU": { + "id": "option.addressCountries.VU", + "defaultMessage": "Vanuatu" + }, + "VE": { + "id": "option.addressCountries.VE", + "defaultMessage": "Venezuela (Bolivarian Republic of)" + }, + "VN": { + "id": "option.addressCountries.VN", + "defaultMessage": "Viet Nam" + }, + "VG": { + "id": "option.addressCountries.VG", + "defaultMessage": "Virgin Islands (British)" + }, + "VI": { + "id": "option.addressCountries.VI", + "defaultMessage": "Virgin Islands (U.S.)" + }, + "WF": { + "id": "option.addressCountries.WF", + "defaultMessage": "Wallis and Futuna" + }, + "EH": { + "id": "option.addressCountries.EH", + "defaultMessage": "Western Sahara" + }, + "YE": { + "id": "option.addressCountries.YE", + "defaultMessage": "Yemen" + }, + "ZM": { + "id": "option.addressCountries.ZM", + "defaultMessage": "Zambia" + }, + "ZW": { + "id": "option.addressCountries.ZW", + "defaultMessage": "Zimbabwe" + } + } + }, + "exhibitionConsTreatmentStatuses": { + "values": [ + "Needed", + "Not needed", + "Done" + ], + "messages": { + "Needed": { + "id": "option.exhibitionConsTreatmentStatuses.Needed", + "defaultMessage": "needed" + }, + "Not needed": { + "id": "option.exhibitionConsTreatmentStatuses.Not needed", + "defaultMessage": "not needed" + }, + "Done": { + "id": "option.exhibitionConsTreatmentStatuses.Done", + "defaultMessage": "done" + } + } + }, + "exhibitionMountStatuses": { + "values": [ + "Needed", + "Not needed", + "Done" + ], + "messages": { + "Needed": { + "id": "option.exhibitionMountStatuses.Needed", + "defaultMessage": "needed" + }, + "Not needed": { + "id": "option.exhibitionMountStatuses.Not needed", + "defaultMessage": "not needed" + }, + "Done": { + "id": "option.exhibitionMountStatuses.Done", + "defaultMessage": "done" + } + } + }, + "entryReasons": { + "values": [ + "enquiry", + "consideration", + "commission", + "loan" + ], + "messages": { + "enquiry": { + "id": "option.entryReasons.enquiry", + "defaultMessage": "enquiry" + }, + "consideration": { + "id": "option.entryReasons.consideration", + "defaultMessage": "consideration" + }, + "commission": { + "id": "option.entryReasons.commission", + "defaultMessage": "commission" + }, + "loan": { + "id": "option.entryReasons.loan", + "defaultMessage": "loan" + } + } + }, + "installationType": { + "values": [ + "installation", + "deinstallation", + "exhibition", + "exhibition update" + ], + "messages": { + "installation": { + "id": "option.installationType.installation", + "defaultMessage": "installation" + }, + "deinstallation": { + "id": "option.installationType.deinstallation", + "defaultMessage": "deinstallation" + }, + "exhibition": { + "id": "option.installationType.exhibition", + "defaultMessage": "exhibition" + }, + "exhibition update": { + "id": "option.installationType.exhibition update", + "defaultMessage": "exhibition update" + } + } + }, + "iterationSuccess": { + "values": [ + "yes", + "no", + "partially" + ], + "messages": { + "yes": { + "id": "option.iterationSuccess.yes", + "defaultMessage": "yes" + }, + "no": { + "id": "option.iterationSuccess.no", + "defaultMessage": "no" + }, + "partially": { + "id": "option.iterationSuccess.partially", + "defaultMessage": "partially" + } + } + }, + "locationTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.locationTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.locationTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.locationTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "locationTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.locationTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.locationTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.locationTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.locationTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "mediaTypes": { + "values": [ + "dataset", + "document", + "moving_image", + "still_image", + "sound" + ], + "messages": { + "dataset": { + "id": "option.mediaTypes.dataset", + "defaultMessage": "dataset" + }, + "document": { + "id": "option.mediaTypes.document", + "defaultMessage": "document" + }, + "moving_image": { + "id": "option.mediaTypes.moving_image", + "defaultMessage": "moving image" + }, + "still_image": { + "id": "option.mediaTypes.still_image", + "defaultMessage": "still image" + }, + "sound": { + "id": "option.mediaTypes.sound", + "defaultMessage": "sound" + } + } + }, + "locationFitnesses": { + "values": [ + "dangerous", + "suitable", + "temporary", + "unsuitable" + ], + "messages": { + "dangerous": { + "id": "option.locationFitnesses.dangerous", + "defaultMessage": "dangerous" + }, + "suitable": { + "id": "option.locationFitnesses.suitable", + "defaultMessage": "suitable" + }, + "temporary": { + "id": "option.locationFitnesses.temporary", + "defaultMessage": "temporary" + }, + "unsuitable": { + "id": "option.locationFitnesses.unsuitable", + "defaultMessage": "unsuitable" + } + } + }, + "moveReasons": { + "values": [ + "collections-facility-move", + "conservation", + "exhibition", + "inventory", + "loan", + "newstoragelocation", + "photography", + "research" + ], + "messages": { + "collections-facility-move": { + "id": "option.moveReasons.collections-facility-move", + "defaultMessage": "collections facility move" + }, + "conservation": { + "id": "option.moveReasons.conservation", + "defaultMessage": "conservation" + }, + "exhibition": { + "id": "option.moveReasons.exhibition", + "defaultMessage": "exhibition" + }, + "inventory": { + "id": "option.moveReasons.inventory", + "defaultMessage": "inventory" + }, + "loan": { + "id": "option.moveReasons.loan", + "defaultMessage": "loan" + }, + "newstoragelocation": { + "id": "option.moveReasons.newstoragelocation", + "defaultMessage": "new storage location" + }, + "photography": { + "id": "option.moveReasons.photography", + "defaultMessage": "photography" + }, + "research": { + "id": "option.moveReasons.research", + "defaultMessage": "research" + } + } + }, + "moveMethods": { + "values": [ + "forklift", + "handcarried", + "trolley" + ], + "messages": { + "forklift": { + "id": "option.moveMethods.forklift", + "defaultMessage": "forklift" + }, + "handcarried": { + "id": "option.moveMethods.handcarried", + "defaultMessage": "handcarried" + }, + "trolley": { + "id": "option.moveMethods.trolley", + "defaultMessage": "trolley" + } + } + }, + "invActions": { + "values": [ + "conservation", + "preservation", + "re-housing" + ], + "messages": { + "conservation": { + "id": "option.invActions.conservation", + "defaultMessage": "conservation" + }, + "preservation": { + "id": "option.invActions.preservation", + "defaultMessage": "preservation" + }, + "re-housing": { + "id": "option.invActions.re-housing", + "defaultMessage": "re-housing" + } + } + }, + "invFreqs": { + "values": [ + "daily", + "weekly", + "monthly", + "semi-annually", + "annually" + ], + "messages": { + "daily": { + "id": "option.invFreqs.daily", + "defaultMessage": "daily" + }, + "weekly": { + "id": "option.invFreqs.weekly", + "defaultMessage": "weekly" + }, + "monthly": { + "id": "option.invFreqs.monthly", + "defaultMessage": "monthly" + }, + "semi-annually": { + "id": "option.invFreqs.semi-annually", + "defaultMessage": "semi-annually" + }, + "annually": { + "id": "option.invFreqs.annually", + "defaultMessage": "annually" + } + } + }, + "exitReasons": { + "values": [ + "deaccession", + "disposal", + "returnofloan" + ], + "messages": { + "deaccession": { + "id": "option.exitReasons.deaccession", + "defaultMessage": "deaccession" + }, + "disposal": { + "id": "option.exitReasons.disposal", + "defaultMessage": "disposal" + }, + "returnofloan": { + "id": "option.exitReasons.returnofloan", + "defaultMessage": "return of loan" + } + } + }, + "exitMethods": { + "values": [ + "courier", + "inperson", + "post" + ], + "messages": { + "courier": { + "id": "option.exitMethods.courier", + "defaultMessage": "courier" + }, + "inperson": { + "id": "option.exitMethods.inperson", + "defaultMessage": "in person" + }, + "post": { + "id": "option.exitMethods.post", + "defaultMessage": "post" + } + } + }, + "orgTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.orgTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.orgTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.orgTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "orgTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.orgTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.orgTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.orgTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.orgTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "personTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.personTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.personTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.personTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.personTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "personTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.personTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.personTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.personTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "salutations": { + "values": [ + "dear", + "hello", + "to" + ], + "messages": { + "dear": { + "id": "option.salutations.dear", + "defaultMessage": "Dear" + }, + "hello": { + "id": "option.salutations.hello", + "defaultMessage": "Hello" + }, + "to": { + "id": "option.salutations.to", + "defaultMessage": "To" + } + } + }, + "personTitles": { + "values": [ + "Admiral", + "Baron", + "Baroness", + "Captain", + "Commander", + "Commodore", + "Count", + "Countess", + "Dame", + "Dr", + "General", + "Governor", + "Honorable", + "Judge", + "King", + "Lady", + "Lord", + "Miss", + "Mr", + "Mrs", + "Ms", + "Prince", + "Princess", + "Professor", + "Queen", + "Reverend", + "Saint", + "Sir" + ], + "messages": { + "Admiral": { + "id": "option.personTitles.Admiral", + "defaultMessage": "Admiral" + }, + "Baron": { + "id": "option.personTitles.Baron", + "defaultMessage": "Baron" + }, + "Baroness": { + "id": "option.personTitles.Baroness", + "defaultMessage": "Baroness" + }, + "Captain": { + "id": "option.personTitles.Captain", + "defaultMessage": "Captain" + }, + "Commander": { + "id": "option.personTitles.Commander", + "defaultMessage": "Commander" + }, + "Commodore": { + "id": "option.personTitles.Commodore", + "defaultMessage": "Commodore" + }, + "Count": { + "id": "option.personTitles.Count", + "defaultMessage": "Count" + }, + "Countess": { + "id": "option.personTitles.Countess", + "defaultMessage": "Countess" + }, + "Dame": { + "id": "option.personTitles.Dame", + "defaultMessage": "Dame" + }, + "Dr": { + "id": "option.personTitles.Dr", + "defaultMessage": "Dr" + }, + "General": { + "id": "option.personTitles.General", + "defaultMessage": "General" + }, + "Governor": { + "id": "option.personTitles.Governor", + "defaultMessage": "Governor" + }, + "Honorable": { + "id": "option.personTitles.Honorable", + "defaultMessage": "Honorable" + }, + "Judge": { + "id": "option.personTitles.Judge", + "defaultMessage": "Judge" + }, + "King": { + "id": "option.personTitles.King", + "defaultMessage": "King" + }, + "Lady": { + "id": "option.personTitles.Lady", + "defaultMessage": "Lady" + }, + "Lord": { + "id": "option.personTitles.Lord", + "defaultMessage": "Lord" + }, + "Miss": { + "id": "option.personTitles.Miss", + "defaultMessage": "Miss" + }, + "Mr": { + "id": "option.personTitles.Mr", + "defaultMessage": "Mr" + }, + "Mrs": { + "id": "option.personTitles.Mrs", + "defaultMessage": "Mrs" + }, + "Ms": { + "id": "option.personTitles.Ms", + "defaultMessage": "Ms" + }, + "Prince": { + "id": "option.personTitles.Prince", + "defaultMessage": "Prince" + }, + "Princess": { + "id": "option.personTitles.Princess", + "defaultMessage": "Princess" + }, + "Professor": { + "id": "option.personTitles.Professor", + "defaultMessage": "Professor" + }, + "Queen": { + "id": "option.personTitles.Queen", + "defaultMessage": "Queen" + }, + "Reverend": { + "id": "option.personTitles.Reverend", + "defaultMessage": "Reverend" + }, + "Saint": { + "id": "option.personTitles.Saint", + "defaultMessage": "Saint" + }, + "Sir": { + "id": "option.personTitles.Sir", + "defaultMessage": "Sir" + } + } + }, + "genders": { + "values": [ + "agender", + "bigender", + "dyadic", + "female", + "feminine", + "gender-fluid", + "gender-neutral", + "gender-non-binary", + "genderqueer", + "intersex", + "male", + "masculine", + "pansexual", + "polygender", + "questioning", + "transgender", + "transsexual", + "two-spirit" + ], + "messages": { + "agender": { + "id": "option.genders.agender", + "defaultMessage": "agender" + }, + "bigender": { + "id": "option.genders.bigender", + "defaultMessage": "bigender" + }, + "dyadic": { + "id": "option.genders.dyadic", + "defaultMessage": "dyadic" + }, + "female": { + "id": "option.genders.female", + "defaultMessage": "female" + }, + "feminine": { + "id": "option.genders.feminine", + "defaultMessage": "feminine" + }, + "gender-fluid": { + "id": "option.genders.gender-fluid", + "defaultMessage": "gender-fluid" + }, + "gender-neutral": { + "id": "option.genders.gender-neutral", + "defaultMessage": "gender-neutral" + }, + "gender-non-binary": { + "id": "option.genders.gender-non-binary", + "defaultMessage": "gender non-binary" + }, + "genderqueer": { + "id": "option.genders.genderqueer", + "defaultMessage": "genderqueer" + }, + "intersex": { + "id": "option.genders.intersex", + "defaultMessage": "intersex" + }, + "male": { + "id": "option.genders.male", + "defaultMessage": "male" + }, + "masculine": { + "id": "option.genders.masculine", + "defaultMessage": "masculine" + }, + "pansexual": { + "id": "option.genders.pansexual", + "defaultMessage": "pansexual" + }, + "polygender": { + "id": "option.genders.polygender", + "defaultMessage": "polygender" + }, + "questioning": { + "id": "option.genders.questioning", + "defaultMessage": "questioning" + }, + "transgender": { + "id": "option.genders.transgender", + "defaultMessage": "transgender" + }, + "transsexual": { + "id": "option.genders.transsexual", + "defaultMessage": "transsexual" + }, + "two-spirit": { + "id": "option.genders.two-spirit", + "defaultMessage": "two-spirit" + } + } + }, + "placeTermTypes": { + "values": [ + "common", + "technical-scientific", + "native", + "non-native", + "local", + "descriptive", + "spelling-variant" + ], + "messages": { + "common": { + "id": "option.placeTermTypes.common", + "defaultMessage": "common name" + }, + "technical-scientific": { + "id": "option.placeTermTypes.technical-scientific", + "defaultMessage": "technical or scientific name" + }, + "native": { + "id": "option.placeTermTypes.native", + "defaultMessage": "native name" + }, + "non-native": { + "id": "option.placeTermTypes.non-native", + "defaultMessage": "non-native name" + }, + "local": { + "id": "option.placeTermTypes.local", + "defaultMessage": "local name" + }, + "descriptive": { + "id": "option.placeTermTypes.descriptive", + "defaultMessage": "descriptive name" + }, + "spelling-variant": { + "id": "option.placeTermTypes.spelling-variant", + "defaultMessage": "spelling variant" + } + } + }, + "placeTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.placeTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.placeTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.placeTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.placeTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "placeHistoricalStatuses": { + "values": [ + "current", + "historical", + "both" + ], + "messages": { + "current": { + "id": "option.placeHistoricalStatuses.current", + "defaultMessage": "current" + }, + "historical": { + "id": "option.placeHistoricalStatuses.historical", + "defaultMessage": "historical" + }, + "both": { + "id": "option.placeHistoricalStatuses.both", + "defaultMessage": "both" + } + } + }, + "placeTypes": { + "values": [ + "autonomous-region", + "borough", + "city", + "collection-site", + "continent", + "country", + "country-code", + "county", + "dependent-state", + "deserted-settlement", + "district-national", + "general-region", + "governorate", + "inhabited-place", + "island", + "island-group", + "localilty", + "metropolitan-area", + "municipality", + "nation", + "national-division", + "neighborhood", + "occupied-territory", + "prefecture", + "province", + "region", + "state", + "state-province", + "territory", + "township", + "union-territory", + "unitary-authority", + "urban-prefecture", + "water-body" + ], + "messages": { + "autonomous-region": { + "id": "option.placeTypes.autonomous-region", + "defaultMessage": "autonomous region" + }, + "borough": { + "id": "option.placeTypes.borough", + "defaultMessage": "borough" + }, + "city": { + "id": "option.placeTypes.city", + "defaultMessage": "city" + }, + "collection-site": { + "id": "option.placeTypes.collection-site", + "defaultMessage": "collection site" + }, + "continent": { + "id": "option.placeTypes.continent", + "defaultMessage": "continent" + }, + "country": { + "id": "option.placeTypes.country", + "defaultMessage": "country" + }, + "country-code": { + "id": "option.placeTypes.country-code", + "defaultMessage": "country code" + }, + "county": { + "id": "option.placeTypes.county", + "defaultMessage": "county" + }, + "dependent-state": { + "id": "option.placeTypes.dependent-state", + "defaultMessage": "dependent state" + }, + "deserted-settlement": { + "id": "option.placeTypes.deserted-settlement", + "defaultMessage": "deserted settlement" + }, + "district-national": { + "id": "option.placeTypes.district-national", + "defaultMessage": "district (national)" + }, + "general-region": { + "id": "option.placeTypes.general-region", + "defaultMessage": "general region" + }, + "governorate": { + "id": "option.placeTypes.governorate", + "defaultMessage": "governorate" + }, + "inhabited-place": { + "id": "option.placeTypes.inhabited-place", + "defaultMessage": "inhabited place" + }, + "island": { + "id": "option.placeTypes.island", + "defaultMessage": "island" + }, + "island-group": { + "id": "option.placeTypes.island-group", + "defaultMessage": "island group" + }, + "localilty": { + "id": "option.placeTypes.locality", + "defaultMessage": "locality" + }, + "metropolitan-area": { + "id": "option.placeTypes.metropolitan-area", + "defaultMessage": "metropolitan area" + }, + "municipality": { + "id": "option.placeTypes.municipality", + "defaultMessage": "municipality" + }, + "nation": { + "id": "option.placeTypes.nation", + "defaultMessage": "nation" + }, + "national-division": { + "id": "option.placeTypes.national-division", + "defaultMessage": "national division" + }, + "neighborhood": { + "id": "option.placeTypes.neighborhood", + "defaultMessage": "neighborhood" + }, + "occupied-territory": { + "id": "option.placeTypes.occupied-territory", + "defaultMessage": "occupied territory" + }, + "prefecture": { + "id": "option.placeTypes.prefecture", + "defaultMessage": "prefecture" + }, + "province": { + "id": "option.placeTypes.province", + "defaultMessage": "province" + }, + "region": { + "id": "option.placeTypes.region", + "defaultMessage": "region" + }, + "state": { + "id": "option.placeTypes.state", + "defaultMessage": "state" + }, + "state-province": { + "id": "option.placeTypes.state-province", + "defaultMessage": "state province" + }, + "territory": { + "id": "option.placeTypes.territory", + "defaultMessage": "territory" + }, + "township": { + "id": "option.placeTypes.township", + "defaultMessage": "township" + }, + "union-territory": { + "id": "option.placeTypes.union-territory", + "defaultMessage": "union territory" + }, + "unitary-authority": { + "id": "option.placeTypes.unitary-authority", + "defaultMessage": "unitary authority" + }, + "urban-prefecture": { + "id": "option.placeTypes.urban-prefecture", + "defaultMessage": "urban prefecture" + }, + "water-body": { + "id": "option.placeTypes.water-body", + "defaultMessage": "water body" + } + } + }, + "coordinateSystems": { + "values": [ + "altitude-depth", + "latitude-longitude", + "national-grid-reference", + "utm" + ], + "messages": { + "altitude-depth": { + "id": "option.coordinateSystems.altitude-depth", + "defaultMessage": "altitude depth" + }, + "latitude-longitude": { + "id": "option.coordinateSystems.latitude-longitude", + "defaultMessage": "latitude and longitude" + }, + "national-grid-reference": { + "id": "option.coordinateSystems.national-grid-reference", + "defaultMessage": "National Grid reference" + }, + "utm": { + "id": "option.coordinateSystems.utm", + "defaultMessage": "Universal Transverse Mercator (UTM)" + } + } + }, + "spatialRefSystems": { + "values": [ + "epsg4326-wgs84", + "epsg4269-nad83", + "epsg4267-nad27", + "unknown" + ], + "messages": { + "epsg4326-wgs84": { + "id": "option.spatialRefSystems.epsg4326-wgs84", + "defaultMessage": "EPSG:4326-WGS84" + }, + "epsg4269-nad83": { + "id": "option.spatialRefSystems.epsg4269-nad83", + "defaultMessage": "EPSG:4269-NAD83" + }, + "epsg4267-nad27": { + "id": "option.spatialRefSystems.epsg4267-nad27", + "defaultMessage": "EPSG:4267-NAD27" + }, + "unknown": { + "id": "option.spatialRefSystems.unknown", + "defaultMessage": "unknown" + } + } + }, + "localityUnits": { + "values": [ + "acres", + "centimeters", + "feet", + "hectares", + "inches", + "kilometers", + "meters", + "miles", + "millimeters", + "square-feet", + "square-meters", + "square-yards", + "stories" + ], + "messages": { + "acres": { + "id": "option.localityUnits.acres", + "defaultMessage": "acres" + }, + "centimeters": { + "id": "option.localityUnits.centimeters", + "defaultMessage": "centimeters" + }, + "feet": { + "id": "option.localityUnits.feet", + "defaultMessage": "feet" + }, + "hectares": { + "id": "option.localityUnits.hectares", + "defaultMessage": "hectares" + }, + "inches": { + "id": "option.localityUnits.inches", + "defaultMessage": "inches" + }, + "kilometers": { + "id": "option.localityUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.localityUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.localityUnits.miles", + "defaultMessage": "miles" + }, + "millimeters": { + "id": "option.localityUnits.millimeters", + "defaultMessage": "millimeters" + }, + "square-feet": { + "id": "option.localityUnits.square-feet", + "defaultMessage": "square feet" + }, + "square-meters": { + "id": "option.localityUnits.square-meters", + "defaultMessage": "square meters" + }, + "square-yards": { + "id": "option.localityUnits.square-yards", + "defaultMessage": "square yards" + }, + "stories": { + "id": "option.localityUnits.stories", + "defaultMessage": "stories" + } + } + }, + "geodeticDatums": { + "values": [ + "Not Recorded", + "ADG66", + "NAD27", + "NAD83", + "NAD83&WGS84", + "WGS84" + ], + "messages": { + "epsg4326-wgs84": { + "id": "option.geodeticDatums.epsg4326-wgs84", + "defaultMessage": "EPSG:4326-WGS84" + }, + "epsg4269-nad83": { + "id": "option.geodeticDatums.epsg4269-nad83", + "defaultMessage": "EPSG:4269-NAD83" + }, + "epsg4267-nad27": { + "id": "option.geodeticDatums.epsg4267-nad27", + "defaultMessage": "EPSG:4267-NAD27" + }, + "unknown": { + "id": "option.geodeticDatums.unknown", + "defaultMessage": "unknown" + }, + "Not Recorded": { + "id": "option.geodeticDatums.Not Recorded", + "defaultMessage": "not recorded" + }, + "NAD83&WGS84": { + "id": "option.geodeticDatums.NAD83&WGS84", + "defaultMessage": "NAD83 & WGS84" + } + } + }, + "geoRefProtocols": { + "values": [ + "chapman-wieczorek-2006-guide-best-practices-georeferencing", + "manis-herpnet-ornis-georeferencing-guidelines", + "georeferencing-dummies", + "biogeomancer" + ], + "messages": { + "chapman-wieczorek-2006-guide-best-practices-georeferencing": { + "id": "option.geoRefProtocols.chapman-wieczorek-2006-guide-best-practices-georeferencing", + "defaultMessage": "Chapman, Wieczorek 2006, Guide to Best Practices for Georeferencing" + }, + "manis-herpnet-ornis-georeferencing-guidelines": { + "id": "option.geoRefProtocols.manis-herpnet-ornis-georeferencing-guidelines", + "defaultMessage": "MaNIS/HerpNet/ORNIS Georeferencing Guidelines" + }, + "georeferencing-dummies": { + "id": "option.geoRefProtocols.georeferencing-dummies", + "defaultMessage": "Georeferencing For Dummies" + }, + "biogeomancer": { + "id": "option.geoRefProtocols.biogeomancer", + "defaultMessage": "BioGeomancer" + } + } + }, + "geoRefVerificationStatuses": { + "values": [ + "unverified", + "verified-data-custodian", + "verified-contributor" + ], + "messages": { + "unverified": { + "id": "option.geoRefVerificationStatuses.unverified", + "defaultMessage": "unverified" + }, + "verified-data-custodian": { + "id": "option.geoRefVerificationStatuses.verified-data-custodian", + "defaultMessage": "verified by data custodian" + }, + "verified-contributor": { + "id": "option.geoRefVerificationStatuses.verified-contributor", + "defaultMessage": "verified by contributor" + } + } + }, + "transportMethodTypes": { + "values": [ + "cargo aircraft", + "combi aircraft", + "common carrier", + "exclusive-use truck", + "expedited use freight", + "LOFO freight", + "mail", + "non-commercial carrier", + "ocean freight", + "passenger aircraft", + "shuttle service" + ], + "messages": { + "cargo aircraft": { + "id": "option.transportMethodTypes.cargo aircraft", + "defaultMessage": "cargo aircraft" + }, + "combi aircraft": { + "id": "option.transportMethodTypes.combi aircraft", + "defaultMessage": "combi aircraft" + }, + "common carrier": { + "id": "option.transportMethodTypes.common carrier", + "defaultMessage": "common carrier" + }, + "exclusive-use truck": { + "id": "option.transportMethodTypes.exclusive-use truck", + "defaultMessage": "exclusive-use truck" + }, + "expedited use freight": { + "id": "option.transportMethodTypes.expedited use freight", + "defaultMessage": "expedited use freight" + }, + "LOFO freight": { + "id": "option.transportMethodTypes.LOFO freight", + "defaultMessage": "LOFO freight" + }, + "mail": { + "id": "option.transportMethodTypes.mail", + "defaultMessage": "mail" + }, + "non-commercial carrier": { + "id": "option.transportMethodTypes.non-commercial carrier", + "defaultMessage": "non-commercial carrier" + }, + "ocean freight": { + "id": "option.transportMethodTypes.ocean freight", + "defaultMessage": "ocean freight" + }, + "passenger aircraft": { + "id": "option.transportMethodTypes.passenger aircraft", + "defaultMessage": "passenger aircraft" + }, + "shuttle service": { + "id": "option.transportMethodTypes.shuttle service", + "defaultMessage": "shuttle service" + } + } + }, + "reportMimeTypes": { + "values": [ + "application/pdf", + "text/html", + "application/xml", + "application/vnd.ms-excel", + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/vnd.ms-powerpoint", + "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "application/msword", + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "text/csv", + "text/tab-separated-values" + ], + "messages": { + "application/pdf": { + "id": "option.reportMimeTypes.application/pdf", + "defaultMessage": "PDF" + }, + "text/html": { + "id": "option.reportMimeTypes.text/html", + "defaultMessage": "HTML" + }, + "application/xml": { + "id": "option.reportMimeTypes.application/xml", + "defaultMessage": "XML" + }, + "application/vnd.ms-excel": { + "id": "option.reportMimeTypes.application/vnd.ms-excel", + "defaultMessage": "MS Excel (.xls)" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "defaultMessage": "MS Excel (.xlsx)" + }, + "application/vnd.ms-powerpoint": { + "id": "option.reportMimeTypes.application/vnd.ms-powerpoint", + "defaultMessage": "MS PowerPoint (.ppt)" + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.presentationml.presentation", + "defaultMessage": "MS PowerPoint (.pptx)" + }, + "application/msword": { + "id": "option.reportMimeTypes.application/msword", + "defaultMessage": "MS Word (.doc)" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "defaultMessage": "MS Word (.docx)" + }, + "text/csv": { + "id": "option.reportMimeTypes.text/csv", + "defaultMessage": "CSV" + }, + "text/tab-separated-values": { + "id": "option.reportMimeTypes.text/tab-separated-values", + "defaultMessage": "TSV" + } + } + }, + "valueTypes": { + "values": [ + "Current Value", + "Original Value", + "Replacement Value" + ], + "messages": { + "Current Value": { + "id": "option.valueTypes.Current Value", + "defaultMessage": "current value" + }, + "Original Value": { + "id": "option.valueTypes.Original Value", + "defaultMessage": "original value" + }, + "Replacement Value": { + "id": "option.valueTypes.Replacement Value", + "defaultMessage": "replacement value" + } + } + }, + "vocabTermStatuses": { + "values": [ + "active", + "inactive" + ], + "messages": { + "active": { + "id": "option.vocabTermStatuses.active", + "defaultMessage": "active" + }, + "inactive": { + "id": "option.vocabTermStatuses.inactive", + "defaultMessage": "inactive" + } + } + }, + "workTermStatuses": { + "values": [ + "quickaddedneedsattention", + "inprogress", + "complete" + ], + "messages": { + "quickaddedneedsattention": { + "id": "option.workTermStatuses.quickaddedneedsattention", + "defaultMessage": "quick added, needs attention" + }, + "inprogress": { + "id": "option.workTermStatuses.inprogress", + "defaultMessage": "in progress" + }, + "complete": { + "id": "option.workTermStatuses.complete", + "defaultMessage": "complete" + } + } + }, + "counties": { + "values": [ + "Unknown", + "Abbeville", + "Aberdeenshire (UK)", + "Acadia", + "Acaponeta", + "Accomack", + "Ada", + "Adair", + "Adams", + "Addison", + "Agusan del Norte", + "Ahuacatlan", + "Aiken", + "Aitkin", + "Alachua", + "Alamance", + "Alameda", + "Alamosa", + "Albany", + "Albemarle", + "Alcona", + "Alcorn", + "Aleutians East", + "Aleutians West", + "Alexander", + "Alexandria", + "Alfalfa", + "Alger", + "Allamakee", + "Allegan", + "Allegany", + "Alleghany", + "Allegheny", + "Allen", + "Allendale", + "Alpena", + "Alpine", + "Amador", + "Amazonas", + "Amelia", + "Amherst", + "Amite", + "Anchorage", + "Anderson", + "Andrew", + "Andrews", + "Androscoggin", + "Angelina", + "Anglesey", + "Anglesey (UK)", + "Angus (Forfarshire) (UK)", + "Anne Arundel", + "Anoka", + "Anson", + "Antelope", + "Antonina", + "Antrim", + "Antrim (UK)", + "Apache", + "Appanoose", + "Appling", + "Appomattox", + "Aransas", + "Arapahoe", + "Archer", + "Archuleta", + "Arenac", + "Argyll (Argyllshire) (UK)", + "Arkansas", + "Arlington", + "Armagh (UK)", + "Armstrong", + "Aroostook", + "Arran, Island of", + "Arthur", + "Ascension", + "Ashe", + "Ashland", + "Ashley", + "Ashtabula", + "Asotin", + "Assumption", + "Atascosa", + "Atchison", + "Athens", + "Atkinson", + "Atlantic", + "Atoka", + "Attala", + "Audrain", + "Audubon", + "Auglaize", + "Augusta", + "Aurora", + "Austin", + "Autauga", + "Avery", + "Avoyelles", + "Ayopaya", + "Ayrshire (UK)", + "Ba", + "Baca", + "Bacon", + "Bagua", + "Bailey", + "Baker", + "Baldwin", + "Ballard", + "Baltimore", + "Bamberg", + "Bandera", + "Banffshire (UK)", + "Banks", + "Banner", + "Bannock", + "Baraga", + "Barber", + "Barbour", + "Barnes", + "Barnstable", + "Barnwell", + "Barreiras", + "Barren", + "Barron", + "Barrow", + "Barry", + "Bartholomew", + "Barton", + "Bartow", + "Bastrop", + "Bates", + "Bath", + "Baxter", + "Bay", + "Bayfield", + "Baylor", + "Beadle", + "Bear Lake", + "Beaufort", + "Beauregard", + "Beaver", + "Beaverhead", + "Becker", + "Beckham", + "Bedford", + "Bedfordshire (UK)", + "Bee", + "Belknap", + "Bell", + "Belmont", + "Beltrami", + "Ben Hill", + "Benewah", + "Bennett", + "Bennington", + "Benson", + "Bent", + "Benton", + "Benzie", + "Bergen", + "Berkeley", + "Berks", + "Berkshire", + "Berkshire (UK)", + "Bernalillo", + "Berrien", + "Bertie", + "Berwickshire (UK)", + "Bethel", + "Bexar", + "Bibb", + "Bienville", + "Big Horn", + "Big Stone", + "Billings", + "Bingham", + "Black Hawk", + "Blackford", + "Bladen", + "Blaine", + "Blair", + "Blanco", + "Bland", + "Bleckley", + "Bledsoe", + "Blount", + "Blue Earth", + "Boise", + "Bolivar", + "Bollinger", + "Bon Homme", + "Bonaventure", + "Bond", + "Bongara", + "Bonner", + "Bonneville", + "Boone", + "Borden", + "Bosque", + "Bossier", + "Botetourt", + "Bothwell Municipality", + "Bottineau", + "Boulder", + "Boundary", + "Bourbon", + "Bowie", + "Bowman", + "Box Butte", + "Box Elder", + "Boyd", + "Boyle", + "Bracken", + "Bradford", + "Bradley", + "Branch", + "Brantley", + "Braxton", + "Brazoria", + "Brazos", + "Breathitt", + "Breckinridge", + "Brecknockshire (Breconshire) (UK)", + "Bremer", + "Brevard", + "Brewster", + "Briscoe", + "Bristol", + "Bristol Bay", + "Broadwater", + "Bronx", + "Brooke", + "Brookings", + "Brooks", + "Broome", + "Broomfield", + "Broward", + "Brown", + "Brule", + "Brunswick", + "Bryan", + "Buchanan", + "Buckingham", + "Buckinghamshire (UK)", + "Bucks", + "Buena Vista", + "Buffalo", + "Bullitt", + "Bulloch", + "Bullock", + "Buncombe", + "Bureau", + "Burke", + "Burleigh", + "Burleson", + "Burlington", + "Burnet", + "Burnett", + "Burnie Municipality", + "Burt", + "Buteshire (UK)", + "Butler", + "Butte", + "Butts", + "Cabarrus", + "Cabell", + "Cache", + "Caddo", + "Caernarfonshire (Carnarvonshire) (UK)", + "Caithness (UK)", + "Cajamarca", + "Calaveras", + "Calcasieu", + "Caldwell", + "Caledonia", + "Calhoun", + "Callahan", + "Callaway", + "Calloway", + "Calumet", + "Calvert", + "Camas", + "Cambria", + "Cambridgeshire (UK)", + "Camden", + "Cameron", + "Camp", + "Campbell", + "Canadian", + "Candelaria", + "Candler", + "Cannon", + "Canyon", + "Cape Girardeau", + "Cape May", + "Capiz", + "Carangola", + "Carbon", + "Cardiganshire (UK)", + "Caribou", + "Carlisle", + "Carlton", + "Carmarthenshire (UK)", + "Caroline", + "Carroll", + "Carson", + "Carson City", + "Carter", + "Carteret", + "Carver", + "Cascade", + "Casey", + "Cass", + "Cassia", + "Castro", + "Castrovirreina", + "Caswell", + "Catahoula", + "Catawba", + "Catoosa", + "Catron", + "Cattaraugus", + "Cautin", + "Cavalier", + "Cayuga", + "Cecil", + "Cedar", + "Celendin", + "Centre", + "Cerro Gordo", + "Chachapoyas", + "Chaffee", + "Chambers", + "Champaign", + "Chariton", + "Charles", + "Charles City", + "Charles Mix", + "Charleston", + "Charlevoix", + "Charlotte", + "Charlottesville", + "Charlton", + "Chase", + "Chatham", + "Chattahoochee", + "Chattooga", + "Chautauqua", + "Chaves", + "Cheatham", + "Cheboygan", + "Chelan", + "Chemung", + "Chenango", + "Cherokee", + "Cherry", + "Chesapeake", + "Cheshire", + "Cheshire (UK)", + "Chester", + "Chesterfield", + "Cheyenne", + "Chiang Mai, Changwat", + "Chickasaw", + "Chicligasta", + "Chicot", + "Childress", + "Chilton", + "Chippewa", + "Chisago", + "Chittenden", + "Choctaw", + "Chouteau", + "Chowan", + "Christian", + "Churchill", + "Cibola", + "Cimarron", + "Citrus", + "Clackamas", + "Clackmannanshire (UK)", + "Claiborne", + "Clallam", + "Clare", + "Clarendon", + "Clarion", + "Clark", + "Clarke", + "Clatsop", + "Clay", + "Clayton", + "Clear Creek", + "Clearfield", + "Clearwater", + "Cleburne", + "Clermont", + "Cleveland", + "Clinch", + "Clinton", + "Cloud", + "Coahoma", + "Coal", + "Cobb", + "Cochise", + "Cochran", + "Cocke", + "Coconino", + "Codington", + "Coffee", + "Coffey", + "Coke", + "Colbert", + "Cole", + "Coleman", + "Coles", + "Colfax", + "Colleton", + "Collier", + "Collin", + "Collingsworth", + "Colonial Heights", + "Colorado", + "Colquitt", + "Columbia", + "Columbiana", + "Columbus", + "Colusa", + "Comal", + "Comanche", + "Comondú", + "Compostela", + "Concho", + "Concordia", + "Conecuh", + "Conejos", + "Contra Costa", + "Converse", + "Conway", + "Cook", + "Cooke", + "Cooper", + "Coos", + "Coosa", + "Copiah", + "Cornwall", + "Cornwall (UK)", + "Corson", + "Cortland", + "Corumba", + "Coryell", + "Coshocton", + "Costilla", + "Cottle", + "Cotton", + "Cottonwood", + "Covington", + "Coweta", + "Cowley", + "Cowlitz", + "Craig", + "Craighead", + "Crane", + "Craven", + "Crawford", + "Creek", + "Crenshaw", + "Crisp", + "Crittenden", + "Crockett", + "Cromartyshire (UK)", + "Crook", + "Crosby", + "Cross", + "Crow Wing", + "Crowley", + "Culberson", + "Cullman", + "Culpeper", + "Cumberland", + "Cumberland (UK)", + "Cuming", + "Currituck", + "Curry", + "Custer", + "Cuyahoga", + "Dade", + "Daggett", + "Dakota", + "Dale", + "Dallam", + "Dallas", + "Dane", + "Daniels", + "Danville", + "Dare", + "Darke", + "Darlington", + "Dauphin", + "Davidson", + "Davie", + "Daviess", + "Davis", + "Davison", + "Dawes", + "Dawson", + "Day", + "De Baca", + "De Kalb", + "De Soto", + "De Witt", + "Deaf Smith", + "Dearborn", + "Decatur", + "Deer Lodge", + "Defiance", + "DeKalb", + "Del Norte", + "Delaware", + "Deloraine Municipality", + "Delta", + "Denali", + "Denbighshire (UK)", + "Dent", + "Denton", + "Denver", + "Derbyshire (UK)", + "Des Moines", + "Deschutes", + "Desha", + "DeSoto", + "Deuel", + "Devon (UK)", + "Dewey", + "DeWitt", + "Diamantina", + "Dickens", + "Dickenson", + "Dickey", + "Dickinson", + "Dickson", + "Dillingham", + "Dillon", + "Dimmit", + "Dinwiddie", + "District of Columbia", + "Divide", + "Dixie", + "Dixon", + "Doddridge", + "Dodge", + "Dolores", + "Dona Ana", + "Doniphan", + "Donley", + "Dooly", + "Door", + "Dorchester", + "Dorset (UK)", + "Dougherty", + "Douglas", + "Down (UK)", + "Doña Ana", + "Drew", + "Du Page", + "Dubois", + "Dubuque", + "Duchesne", + "Dukes", + "Dumbartonshire (UK)", + "Dumfriesshire (UK)", + "Dundy", + "Dunklin", + "Dunn", + "DuPage", + "Duplin", + "Durham", + "Durham (UK)", + "Dutchess", + "Duval", + "Dyer", + "Eagle", + "Early", + "East Baton Rouge", + "East Carroll", + "East Feliciana", + "East Lothian (UK)", + "Eastland", + "Eaton", + "Eau Claire", + "Echols", + "Ector", + "Eddy", + "Edgar", + "Edgecombe", + "Edgefield", + "Edmonson", + "Edmunds", + "Edwards", + "Effingham", + "El Dorado", + "El Paso", + "Elbert", + "Elk", + "Elkhart", + "Elko", + "Elliott", + "Ellis", + "Ellsworth", + "Elmore", + "Emanuel", + "Emery", + "Emmet", + "Emmons", + "Emporia", + "Ensenada", + "Erath", + "Erie", + "Escambia", + "Esmeralda", + "Esmeraldas", + "Esperance Municipality", + "Essex", + "Essex (MA)", + "Essex (UK)", + "Estill", + "Etowah", + "Eureka", + "Evangeline", + "Evans", + "Fairbanks North Star", + "Fairfax", + "Fairfield", + "Fall River", + "Fallon", + "Falls", + "Falls Church", + "Fannin", + "Faribault", + "Faulk", + "Faulkner", + "Fauquier", + "Fayette", + "Fentress", + "Fergus", + "Fermanagh (UK)", + "Ferry", + "Fife (UK)", + "Fillmore", + "Fingal Municipality", + "Finney", + "Fisher", + "Flagler", + "Flathead", + "Fleming", + "Flintshire (UK)", + "Florence", + "Florida", + "Floyd", + "Fluvanna", + "Foard", + "Fond Du Lac", + "Fond du Lac", + "Ford", + "Forest", + "Forrest", + "Forsyth", + "Fort Bend", + "Foster", + "Fountain", + "Franklin", + "Frederick", + "Fredericksburg", + "Freeborn", + "Freestone", + "Fremont", + "Fresno", + "Frio", + "Frontier", + "Fulton", + "Furnas", + "Gadsden", + "Gage", + "Gaines", + "Galapagos", + "Galax", + "Gallatin", + "Gallia", + "Galveston", + "Galway", + "Garden", + "Garfield", + "Garland", + "Garrard", + "Garrett", + "Garvin", + "Garza", + "Gasconade", + "Gaston", + "Gates", + "Geary", + "Geauga", + "Gem", + "Genesee", + "Geneva", + "Gentry", + "George", + "Georgetown", + "Gibson", + "Gila", + "Gilchrist", + "Giles", + "Gillespie", + "Gilliam", + "Gilmer", + "Gilpin", + "Glacier", + "Glades", + "Gladwin", + "Glamorgan (UK)", + "Glamorgan Municipality", + "Glascock", + "Glasscock", + "Glenn", + "Glenorchy Municipality", + "Gloucester", + "Gloucestershire (UK)", + "Glynn", + "Gogebic", + "Golden Valley", + "Goliad", + "Gonzales", + "Goochland", + "Goodhue", + "Gooding", + "Gordon", + "Gormanston Municipality", + "Goshen", + "Gosper", + "Gouveia", + "Gove", + "Grady", + "Grafton", + "Graham", + "Grainger", + "Grand", + "Grand Forks", + "Grand Isle", + "Grand Traverse", + "Granite", + "Grant", + "Granville", + "Gratiot", + "Graves", + "Gray", + "Grays Harbor", + "Grayson", + "Greeley", + "Green", + "Green Lake", + "Greenbrier", + "Greene", + "Greenlee", + "Greensville", + "Greenup", + "Greenville", + "Greenwood", + "Greer", + "Gregg", + "Gregory", + "Grenada", + "Griggs", + "Grimes", + "Grundy", + "Guadalupe", + "Guaraquecaba", + "Guaratuba", + "Guernsey", + "Guilford", + "Gulf", + "Gunnison", + "Guthrie", + "Gwinnett", + "Haakon", + "Habersham", + "Haines", + "Hale", + "Halifax", + "Hall", + "Hamblen", + "Hamilton", + "Hamilton Municipality", + "Hamlin", + "Hampden", + "Hampshire", + "Hampshire (UK)", + "Hampton", + "Hancock", + "Hand", + "Hanover", + "Hansford", + "Hanson", + "Haralson", + "Hardee", + "Hardeman", + "Hardin", + "Harding", + "Hardy", + "Harford", + "Harlan", + "Harmon", + "Harnett", + "Harney", + "Harper", + "Harris", + "Harrison", + "Harrisonburg", + "Hart", + "Hartford", + "Hartley", + "Harvey", + "Haskell", + "Hawaii", + "Hawkins", + "Hayes", + "Hays", + "Haywood", + "Heard", + "Hemphill", + "Hempstead", + "Henderson", + "Hendricks", + "Hendry", + "Hennepin", + "Henrico", + "Henry", + "Herefordshire (UK)", + "Herkimer", + "Hernando", + "Hertford", + "Hertfordshire (UK)", + "Hettinger", + "Hickman", + "Hickory", + "Hidalgo", + "Highland", + "Highlands", + "Hill", + "Hillsborough", + "Hillsdale", + "Hinds", + "Hinsdale", + "Hitchcock", + "Hobart Municipality", + "Hocking", + "Hockley", + "Hodgeman", + "Hoke", + "Holmes", + "Holt", + "Honolulu", + "Hood", + "Hood River", + "Hooker", + "Hoonah–Angoon", + "Hopewell", + "Hopkins", + "Horry", + "Hot Spring", + "Hot Springs", + "Houghton", + "Houston", + "Howard", + "Howell", + "Huancabamba", + "Huanuco", + "Hubbard", + "Hudson", + "Hudspeth", + "Huerfano", + "Hughes", + "Humboldt", + "Humphreys", + "Hunt", + "Hunterdon", + "Huntingdon", + "Huntingdonshire (UK)", + "Huntington", + "Huron", + "Hutchinson", + "Hyde", + "Iberia", + "Iberville", + "Ida", + "Idaho", + "Imperial", + "Independence", + "Indian River", + "Indiana", + "Ingham", + "Inverness-shire (UK)", + "Inyo", + "Ionia", + "Iosco", + "Iowa", + "Iredell", + "Irion", + "Iron", + "Iroquois", + "Irwin", + "Isabella", + "Isanti", + "Island", + "Isle of Wight", + "Issaquena", + "Itasca", + "Itawamba", + "Ixtlan", + "Izard", + "Jack", + "Jackson", + "Jaguariaiya", + "Jalisco", + "James City", + "Jasper", + "Jay", + "Jeff Davis", + "Jefferson", + "Jefferson Davis", + "Jenkins", + "Jennings", + "Jerauld", + "Jerome", + "Jersey", + "Jessamine", + "Jewell", + "Jim Hogg", + "Jim Wells", + "Jo Daviess", + "Johnson", + "Johnston", + "Jolo Group", + "Jones", + "Josephine", + "Juab", + "Judith Basin", + "Juneau", + "Juniata", + "Juquila", + "Kalamazoo", + "Kalawao", + "Kalkaska", + "Kanabec", + "Kanawha", + "Kandavu", + "Kandiyohi", + "Kane", + "Kankakee", + "Karnes", + "Kauai", + "Kaufman", + "Kay", + "Kearney", + "Kearny", + "Keith", + "Kemper", + "Kenai Peninsula", + "Kendall", + "Kenedy", + "Kennebec", + "Kenosha", + "Kent", + "Kent (UK)", + "Kentish Municipality", + "Kenton", + "Keokuk", + "Kepulauan", + "Kepulauan Kangean Islands", + "Kern", + "Kerr", + "Kershaw", + "Ketchikan Gateway", + "Kewaunee", + "Keweenaw", + "Keya Paha", + "Kidder", + "Kimball", + "Kimble", + "Kincardineshire (UK)", + "King", + "King and Queen", + "King George", + "King William", + "Kingborough Municipality", + "Kingfisher", + "Kingman", + "Kings", + "Kingsbury", + "Kinney", + "Kinross-shire (UK)", + "Kiowa", + "Kirkcudbrightshire (UK)", + "Kit Carson", + "Kitsap", + "Kittitas", + "Kittson", + "Klamath", + "Kleberg", + "Klickitat", + "Knott", + "Knox", + "Kodiak Island", + "Koochiching", + "Kootenai", + "Korinthos", + "Koro", + "Kosciusko", + "Kossuth", + "La Crosse", + "La Paz", + "La Plata", + "La Salle", + "Labette", + "Lac qui Parle", + "Lackawanna", + "Laclede", + "Lafayette", + "Lafourche", + "LaGrange", + "Lake", + "Lake and Peninsula", + "Lake of the Woods", + "Lamar", + "Lamas", + "Lamb", + "Lamoille", + "LaMoure", + "Lampasas", + "Lanarkshire (UK)", + "Lancashire (UK)", + "Lancaster", + "Lander", + "Lane", + "Langlade", + "Lanier", + "Lapeer", + "LaPorte", + "Laramie", + "Larecaja", + "Larimer", + "LaRue", + "Las Animas", + "LaSalle", + "Lassen", + "Latah", + "Latimer", + "Lauderdale", + "Launceston Municipality", + "Laurel", + "Laurens", + "Lavaca", + "Lawrence", + "Le Flore", + "Le Sueur", + "Lea", + "Leake", + "Leavenworth", + "Lebanon", + "Lee", + "Leelanau", + "Leflore", + "Lehigh", + "Leicestershire (UK)", + "Lemhi", + "Lenawee", + "Lenoir", + "Leon", + "Leslie", + "Letcher", + "Levy", + "Lewis", + "Lewis and Clark", + "Lexington", + "Liberty", + "Licking", + "Lilydale Municipality", + "Limestone", + "Lincoln", + "Lincolnshire (UK)", + "Linn", + "Lipscomb", + "Litchfield", + "Little River", + "Live Oak", + "Livingston", + "Llano", + "Logan", + "Loja", + "Londonderry (UK)", + "Long", + "Longford Municipality", + "Lonoke", + "Lorain", + "Loreto", + "Los Alamos", + "Los Angeles", + "Los Cabos", + "Loudon", + "Loudoun", + "Louisa", + "Loup", + "Love", + "Loving", + "Lowndes", + "Lubbock", + "Lucas", + "Luce", + "Lumpkin", + "Luna", + "Lunenburg", + "Luzerne", + "Lycoming", + "Lyman", + "Lynchburg", + "Lynn", + "Lyon", + "Mackinac", + "Macomb", + "Macon", + "Macoupin", + "Madera", + "Madison", + "Magoffin", + "Mahaska", + "Mahnomen", + "Mahoning", + "Major", + "Malheur", + "Manabi", + "Manassas", + "Manassas Park", + "Manatee", + "Manistee", + "Manitowoc", + "Marathon", + "Marengo", + "Maricopa", + "Maries", + "Marin", + "Marinette", + "Marion", + "Mariposa", + "Marlboro", + "Marquette", + "Marshall", + "Martin", + "Martinsville", + "Mason", + "Massac", + "Matagorda", + "Matanuska-Susitna", + "Mathews", + "Maui", + "Maury", + "Maverick", + "Mayes", + "McClain", + "McCone", + "McCook", + "McCormick", + "McCracken", + "McCreary", + "McCulloch", + "McCurtain", + "McDonald", + "McDonough", + "McDowell", + "McDuffie", + "McHenry", + "McIntosh", + "McKean", + "McKenzie", + "McKinley", + "McLean", + "McLennan", + "McLeod", + "McMinn", + "McMullen", + "McNairy", + "McPherson", + "Meade", + "Meagher", + "Mecklenburg", + "Mecosta", + "Medina", + "Meeker", + "Meigs", + "Mellette", + "Menard", + "Mendocino", + "Menifee", + "Menominee", + "Merced", + "Mercer", + "Merionethshire (UK)", + "Meriwether", + "Merrick", + "Merrimack", + "Mesa", + "Metcalfe", + "Mexicali", + "Miahuatlan", + "Miami", + "Miami-Dade", + "Middlesex", + "Middlesex (UK)", + "Midland", + "Midlothian (UK)", + "Mifflin", + "Milam", + "Millard", + "Mille Lacs", + "Miller", + "Mills", + "Milwaukee", + "Miner", + "Mineral", + "Mingo", + "Minidoka", + "Minnehaha", + "Missaukee", + "Mississippi", + "Missoula", + "Mitchell", + "Mizque", + "Mobile", + "Modoc", + "Moffat", + "Mohave", + "Moniteau", + "Monmouth", + "Monmouthshire (UK)", + "Mono", + "Monona", + "Monongalia", + "Monroe", + "Montague", + "Montcalm", + "Monterey", + "Montezuma", + "Montgomery", + "Montgomeryshire (UK)", + "Montmorency", + "Montour", + "Montrose", + "Moody", + "Moore", + "Mora", + "Morayshire (UK)", + "Morehouse", + "Morgan", + "Morrill", + "Morris", + "Morrison", + "Morro do Chapeu", + "Morrow", + "Morton", + "Motley", + "Moultrie", + "Mountrail", + "Mower", + "Muhlenberg", + "Mulegé", + "Multnomah", + "Murray", + "Muscatine", + "Muscogee", + "Muskegon", + "Muskingum", + "Muskogee", + "Musselshell", + "Nacogdoches", + "Nairnshire (UK)", + "Nakhon Ratchasima, Changwat", + "Nance", + "Nantucket", + "Nantucket (MA)", + "Napa", + "Nash", + "Nassau", + "Natchitoches", + "Natrona", + "Navajo", + "Navarro", + "Nelson", + "Nemaha", + "Neosho", + "Neshoba", + "Ness", + "Nevada", + "New Castle", + "New Hanover", + "New Haven", + "New Kent", + "New London", + "New Madrid", + "New Norfolk Municipality", + "New York", + "Newaygo", + "Newberry", + "Newport", + "Newport News", + "Newton", + "Nez Perc", + "Nez Perce", + "Niagara", + "Nicholas", + "Nicholson", + "Nicollet", + "Niobrara", + "Noble", + "Nobles", + "Nodaway", + "Nolan", + "Nome", + "Norfolk", + "Norfolk (UK)", + "Norman", + "North Slope", + "Northampton", + "Northamptonshire (UK)", + "Northumberland", + "Northumberland (UK)", + "Northwest Arctic", + "Norton", + "Nottinghamshire (UK)", + "Nottoway", + "Nowata", + "Noxubee", + "Nuckolls", + "Nueces", + "Nueva Vizcaya", + "Nye", + "O'Brien", + "Oakland", + "Oatlands Municipality", + "Obion", + "Ocean", + "Oceana", + "Ochiltree", + "Oconee", + "Oconto", + "Ogemaw", + "Ogle", + "Oglethorpe", + "Ohio", + "Okaloosa", + "Okanogan", + "Okeechobee", + "Okfuskee", + "Oklahoma", + "Okmulgee", + "Oktibbeha", + "Oldham", + "Oliver", + "Olmsted", + "Oneida", + "Onondaga", + "Onslow", + "Ontario", + "Ontonagon", + "Orange", + "Orangeburg", + "Oregon", + "Orkney (UK)", + "Orleans", + "Osage", + "Osborne", + "Osceola", + "Oscoda", + "Oswego", + "Otero", + "Otoe", + "Otsego", + "Ottawa", + "Otter Tail", + "Ouachita", + "Ouray", + "Outagamie", + "Overton", + "Owen", + "Owsley", + "Owyhee", + "Oxford", + "Oxfordshire (UK)", + "Ozark", + "Ozaukee", + "Pacific", + "Page", + "Palm Beach", + "Palmeira", + "Palo Alto", + "Palo Pinto", + "Pamlico", + "Pampanga", + "Pangasinan", + "Panola", + "Paranagua", + "Park", + "Parke", + "Parker", + "Parmer", + "Pasco", + "Pasquotank", + "Passaic", + "Patrick", + "Paulding", + "Pawnee", + "Payette", + "Payne", + "Peach", + "Pearl River", + "Pecos", + "Peeblesshire (UK)", + "Pembina", + "Pembrokeshire (UK)", + "Pemiscot", + "Pend Oreille", + "Pender", + "Pendleton", + "Penguin Municipality", + "Pennington", + "Penobscot", + "Peoria", + "Pepin", + "Perkins", + "Perquimans", + "Perry", + "Pershing", + "Person", + "Perthshire (UK)", + "Petersburg", + "Petroleum", + "Pettis", + "Phelps", + "Philadelphia", + "Phillips", + "Piatt", + "Pickaway", + "Pickens", + "Pickett", + "Pierce", + "Pike", + "Pima", + "Pinal", + "Pine", + "Pinellas", + "Pipestone", + "Piscataquis", + "Pitkin", + "Pitt", + "Pittsburg", + "Pittsylvania", + "Piura", + "Piute", + "Placer", + "Plaquemines", + "Platte", + "Pleasants", + "Plumas", + "Plymouth", + "Pocahontas", + "Pochutla", + "Poinsett", + "Pointe Coupee", + "Polk", + "Pondera", + "Pontotoc", + "Pope", + "Poquoson", + "Portage", + "Porter", + "Portland Municipality", + "Portsmouth", + "Posey", + "Pottawatomie", + "Pottawattamie", + "Potter", + "Powder River", + "Powell", + "Power", + "Poweshiek", + "Powhatan", + "Prairie", + "Pratt", + "Preble", + "Prentiss", + "Presidio", + "Presque Isle", + "Preston", + "Price", + "Prince Edward", + "Prince George", + "Prince George's", + "Prince of Wales-Hyder", + "Prince William", + "Providence", + "Prowers", + "Pueblo", + "Pujili", + "Pulaski", + "Pushmataha", + "Putnam", + "Quay", + "Queen Anne's", + "Queen Elizabeth Islands", + "Queens", + "Quezon", + "Quitman", + "Quito", + "Rabun", + "Racine", + "Radford", + "Radnorshire (UK)", + "Raiatea", + "Rains", + "Raleigh", + "Ralls", + "Ramsey", + "Randall", + "Randolph", + "Rankin", + "Ransom", + "Rapides", + "Rappahannock", + "Rarotonga", + "Ravalli", + "Rawlins", + "Ray", + "Reagan", + "Real", + "Red Lake", + "Red River", + "Red Willow", + "Redwood", + "Reeves", + "Refugio", + "Renfrewshire (UK)", + "Reno", + "Rensselaer", + "Renville", + "Republic", + "Rewa", + "Reynolds", + "Rhea", + "Rice", + "Rich", + "Richardson", + "Richland", + "Richmond", + "Riley", + "Ringarooma Municipality", + "Ringgold", + "Rio Arriba", + "Rio Blanco", + "Rio Branco", + "Rio Grande", + "Rio Verde", + "Ripley", + "Ritchie", + "Riverside", + "Rizal", + "Roane", + "Roanoke", + "Roberts", + "Robertson", + "Robeson", + "Rock", + "Rock Island", + "Rockbridge", + "Rockcastle", + "Rockdale", + "Rockingham", + "Rockland", + "Rockwall", + "Roger Mills", + "Rogers", + "Rolette", + "Rooks", + "Roosevelt", + "Rosarito, Playas de", + "Roscommon", + "Roseau", + "Rosebud", + "Ross", + "Ross Municipality", + "Ross-shire (UK)", + "Routt", + "Rowan", + "Roxburghshire (UK)", + "Runnels", + "Rush", + "Rusk", + "Russell", + "Russell Islands", + "Rutherford", + "Rutland", + "Rutland (UK)", + "Sabah", + "Sabine", + "Sac", + "Sacramento", + "Sagadahoc", + "Saginaw", + "Saguache", + "Salem", + "Saline", + "Salt Lake", + "Saluda", + "Sampson", + "San Augustine", + "San Benito", + "San Bernardino", + "San Blas", + "San Diego", + "San Francisco", + "San Ignacio", + "San Jacinto", + "San Joaquin", + "San Juan", + "San Luis Obispo", + "San Mateo", + "San Miguel", + "San Patricio", + "San Pedro Lagunillas", + "San Pedro Lagunitas", + "San Saba", + "Sanborn", + "Sanders", + "Sandoval", + "Sandusky", + "Sangamon", + "Sanilac", + "Sanpete", + "Santa Barbara", + "Santa Clara", + "Santa Cruz", + "Santa Fe", + "Santa Maria del Oro", + "Santa Rosa", + "Santa Victoria", + "Sarasota", + "Saratoga", + "Sarawak", + "Sargent", + "Sarpy", + "Sauk", + "Saunders", + "Sawyer", + "Schenectady", + "Schleicher", + "Schley", + "Schoharie", + "Schoolcraft", + "Schuyler", + "Schuylkill", + "Scioto", + "Scotland", + "Scott", + "Scotts Bluff", + "Scottsdale Municipality", + "Screven", + "Scurry", + "Searcy", + "Sebastian", + "Sedgwick", + "Selkirkshire (UK)", + "Seminole", + "Seneca", + "Senyavin Islands", + "Sequatchie", + "Sequoyah", + "Sevier", + "Seward", + "Shackelford", + "Shannon", + "Sharkey", + "Sharp", + "Shasta", + "Shawano", + "Shawnee", + "Sheboygan", + "Sheffield Municipality", + "Shelby", + "Shenandoah", + "Sherburne", + "Sheridan", + "Sherman", + "Shetland (UK)", + "Shiawassee", + "Shoshone", + "Shropshire (UK)", + "Sibley", + "Sierra", + "Silver Bow", + "Simpson", + "Sioux", + "Siskiyou", + "Sitka", + "Skagit", + "Skagway", + "Skamania", + "Slope", + "Smith", + "Smyth", + "Snohomish", + "Snyder", + "Socorro", + "Sola de Vega", + "Solano", + "Somerset", + "Somerset (UK)", + "Somervell", + "Sonoma", + "Sorell Municipality", + "Southampton", + "Southeast Fairbanks", + "Spalding", + "Spartanburg", + "Spencer", + "Spink", + "Spokane", + "Spotsylvania", + "Spring Bay Municipality", + "St. Bernard", + "St. Charles", + "St. Clair", + "St. Croix", + "St. Francis", + "St. Francois", + "St. Helena", + "St. James", + "St. John the Baptist", + "St. Johns", + "St. Joseph", + "St. Landry", + "St. Lawrence", + "St. Leonards Municipality", + "St. Louis", + "St. Lucie", + "St. Martin", + "St. Mary", + "St. Mary's", + "St. Tammany", + "Stafford", + "Staffordshire (UK)", + "Stanislaus", + "Stanley", + "Stanly", + "Stanton", + "Stark", + "Starke", + "Starr", + "Staunton", + "Ste. Genevieve", + "Stearns", + "Steele", + "Stephens", + "Stephenson", + "Sterling", + "Steuben", + "Stevens", + "Stewart", + "Stillwater", + "Stirlingshire (UK)", + "Stoddard", + "Stokes", + "Stone", + "Stonewall", + "Storey", + "Story", + "Strafford", + "Stutsman", + "Sublette", + "Sud Yungas", + "Suffolk", + "Suffolk (UK)", + "Sullivan", + "Sully", + "Summers", + "Summit", + "Sumner", + "Sumter", + "Sunflower", + "Surrey (UK)", + "Surry", + "Susquehanna", + "Sussex", + "Sussex (UK)", + "Sutherland (UK)", + "Sutter", + "Sutton", + "Suwannee", + "Swain", + "Sweet Grass", + "Sweetwater", + "Swift", + "Swisher", + "Switzerland", + "Tahiti", + "Talbot", + "Taliaferro", + "Talladega", + "Tallahatchie", + "Tallapoosa", + "Taltal", + "Tama", + "Taney", + "Tangipahoa", + "Taos", + "Tarrant", + "Tasman Municipality", + "Tate", + "Tattnall", + "Taylor", + "Tazewell", + "Tecate", + "Tehama", + "Telfair", + "Teller", + "Tensas", + "Tepic", + "Terrebonne", + "Terrell", + "Terry", + "Teton", + "Texas", + "Thayer", + "Thomas", + "Throckmorton", + "Thurston", + "Tift", + "Tijuana", + "Tillamook", + "Tillman", + "Tioga", + "Tippah", + "Tippecanoe", + "Tipton", + "Tishomingo", + "Titus", + "Todd", + "Tolland", + "Tom Green", + "Tompkins", + "Tompkins (NY)", + "Tooele", + "Toole", + "Toombs", + "Torrance", + "Towner", + "Towns", + "Traill", + "Transylvania", + "Traverse", + "Travis", + "Treasure", + "Trego", + "Trempealeau", + "Treutlen", + "Trigg", + "Trimble", + "Trinity", + "Tripp", + "Troup", + "Trousdale", + "Trumbull", + "Tucker", + "Tulare", + "Tulsa", + "Tunica", + "Tuolumne", + "Turner", + "Tuscaloosa", + "Tuscarawas", + "Tuscola", + "Twiggs", + "Twin Falls", + "Tyler", + "Tyrone (UK)", + "Tyrrell", + "Uinta", + "Uintah", + "Ulster", + "Ulverstone Municipality", + "Umatilla", + "Unicoi", + "Union", + "Unknown", + "Upshur", + "Upson", + "Upton", + "Urubamba", + "Utah", + "Uvalde", + "Val Verde", + "Valdez–Cordova", + "Valencia", + "Valley", + "Van Buren", + "Van Wert", + "Van Zandt", + "Vance", + "Vanderburgh", + "Vanua Levu", + "Venango", + "Ventura", + "Vermilion", + "Vermillion", + "Vernon", + "Victoria", + "Vigo", + "Vilas", + "Vinton", + "Virginia Beach", + "Viti Levu", + "Volusia", + "Wabash", + "Wabasha", + "Wabaunsee", + "Wade Hampton", + "Wadena", + "Wagoner", + "Wahkiakum", + "Wake", + "Wakulla", + "Waldo", + "Walker", + "Walla Walla", + "Wallace", + "Waller", + "Wallowa", + "Walsh", + "Walthall", + "Walton", + "Walworth", + "Wapello", + "Waratah Municipality", + "Ward", + "Ware", + "Warren", + "Warrick", + "Warwickshire (UK)", + "Wasatch", + "Wasco", + "Waseca", + "Washakie", + "Washburn", + "Washington", + "Washita", + "Washoe", + "Washtenaw", + "Watauga", + "Watonwan", + "Waukesha", + "Waupaca", + "Waushara", + "Wayne", + "Waynesboro", + "Weakley", + "Webb", + "Weber", + "Webster", + "Weld", + "Wells", + "West Baton Rouge", + "West Carroll", + "West Feliciana", + "West Lothian (Linlithgowshire) (UK)", + "Westchester", + "Westmoreland", + "Westmorland (UK)", + "Weston", + "Wetzel", + "Wexford", + "Wharton", + "Whatcom", + "Wheatland", + "Wheeler", + "White", + "White Pine", + "Whiteside", + "Whitfield", + "Whitley", + "Whitman", + "Wibaux", + "Wichita", + "Wicomico", + "Wigtownshire (UK)", + "Wilbarger", + "Wilcox", + "Wilkes", + "Wilkin", + "Wilkinson", + "Will", + "Will (IL)", + "Willacy", + "Williams", + "Williamsburg", + "Williamson", + "Wilson", + "Wiltshire (UK)", + "Winchester", + "Windham", + "Windsor", + "Winkler", + "Winn", + "Winnebago", + "Winneshiek", + "Winona", + "Winston", + "Wirt", + "Wise", + "Wolfe", + "Wood", + "Woodbury", + "Woodford", + "Woodruff", + "Woods", + "Woodson", + "Woodward", + "Worcester", + "Worcestershire (UK)", + "Worth", + "Wrangell", + "Wright", + "Wyandot", + "Wyandotte", + "Wyoming", + "Wythe", + "Yadkin", + "Yakima", + "Yakutat", + "Yalobusha", + "Yamhill", + "Yancey", + "Yankton", + "Yates", + "Yavapai", + "Yazoo", + "Yell", + "Yellow Medicine", + "Yellowstone", + "Yoakum", + "Yolo", + "York", + "Yorkshire (UK)", + "Young", + "Yuba", + "Yukon–Koyukuk", + "Yuma", + "Zambales", + "Zapata", + "Zavala", + "Zeehan Municipality", + "Zhongdian", + "Ziebach" + ], + "messages": { + "Unknown": { + "id": "option.counties.Unknown", + "defaultMessage": "unknown" + } + } + }, + "states": { + "values": [ + "Unknown", + "'Eua", + "Aamzonas", + "Acre", + "AK", + "AL", + "Alajuela", + "Alajuelo", + "ALB", + "Alberta", + "Alger", + "Alta Verapaz", + "Amazonas", + "Ancash", + "Anhui", + "Antioquia", + "Antofagasta", + "Apurimac", + "AR", + "Aragua", + "Araucania", + "Arequipa", + "ARIZ", + "Artigas", + "Atacama", + "Atlantida", + "Ayacucho", + "AZ", + "AZ Territory", + "Azuay", + "B.C.S.", + "Bac Phan", + "Bahia", + "Baja California", + "Baja California Sur", + "Baja Verapaz", + "Baleares", + "Baluchistan", + "Banguey Island", + "Barinas", + "BCS", + "Benguet", + "Binh Tri Thien, Tinh", + "Biobio, Regio del", + "Bismarck Archipelago", + "BN", + "Bohol", + "Bolivar", + "Boyaca", + "British Columbia", + "Brunei", + "Buenos Aires", + "Bulacan", + "CA", + "Cajamarca", + "Campeche", + "Canar", + "Cape Province", + "Carchi", + "Caroline Islands", + "Cartago", + "Cascajal", + "Cataluna", + "Cauca", + "Cebu", + "Central", + "Chalatenango", + "CHI", + "Chia", + "Chiang Mai, Changwat", + "Chiapas", + "Chihuahua", + "Chimaltenango", + "Chimborazo", + "Chinandega", + "Chiriqui", + "Chontales", + "Chupadero", + "Chuquisaca", + "CO", + "CO Territory", + "Coahuila", + "COCA", + "Cochabamba", + "Cocle", + "COL", + "Colima", + "Comayagua", + "Concepcion", + "COP", + "Coquimbo", + "Cordoba", + "Cortes", + "Costa", + "Cotopaxi", + "CT", + "Cundinamarca", + "Cuzco", + "Darien", + "DE", + "Dept. La e", + "Dept. Mag", + "Distrito Federal", + "DUR", + "Durango", + "East Malaysia", + "East Sepik", + "Eastern Division", + "Eastern Divsion", + "El Progreso", + "Esmeraldas", + "Esteli", + "FL", + "Florida", + "Fujian", + "GA", + "Gansu", + "Goias", + "Golestan", + "Granada", + "GRO", + "GUAM", + "Guanacaste", + "Guanajuato", + "Guangdong", + "Guatemala", + "Guayas", + "Guerrero", + "Guizhou", + "Ha Bach, Tinh", + "Hainan", + "Halland", + "Hamadan", + "Heidelberg", + "Heredia", + "HI", + "Hidalgo", + "Honshu", + "Huancabamba", + "Huancavelica", + "Huanuco", + "Hubei", + "Huehuetena", + "Huehuetenango", + "Humacao", + "IA", + "ID", + "Idaho", + "IL", + "IN", + "Insular", + "Ipiros", + "Iqnique Province", + "Iringa", + "Isabela", + "Izabel", + "JAL", + "Jalisco", + "Jalsico", + "Jawa Timur", + "Jiangsu", + "Jujuy", + "Junin", + "Kangean", + "Khorasan Province", + "Kkanh Hoa", + "KS", + "KwaZulu-Natal", + "KY", + "LA", + "La Habana", + "La Libertad", + "La Paz", + "La Vega", + "Lambayeque", + "Las Villas", + "LASAN", + "Leon", + "Lima", + "Limon", + "Loja", + "Loreto", + "Luzon", + "MA", + "Madre de Dios", + "Magdalena", + "Maldonado", + "Manabi", + "Manitoba", + "Mariana Islands", + "Mato Grosso", + "Matto Grosso", + "Mayaguez", + "Mazandaran", + "MD", + "ME", + "Merida", + "Meta", + "Mexico", + "MI", + "MIC", + "MICH", + "Michoacan", + "Minas Gerais", + "Mindanao", + "Misiones", + "MN", + "MO", + "MON", + "Montevideo", + "Morazan", + "Morelos", + "MS", + "MT", + "MX", + "N. Segovia", + "Narino", + "NAY", + "Nayarit", + "NC", + "ND", + "NE", + "Neuvo Leon", + "Nevada", + "New Brunswick", + "New South Wales", + "Newfoundland", + "NH", + "NJ", + "NL", + "NM", + "NM-TX", + "Nord", + "Norte", + "Norte de Santander", + "North Ayrshire", + "Northeastern", + "Northern", + "Northern Division", + "Northern Territory", + "Northwest Frontier", + "Northwest Territories", + "Nova Scotia", + "Nuevo Leon", + "Nunavut", + "NV", + "NY", + "O", + "Oaxaca", + "OH", + "OK", + "Ontario", + "OR", + "OR (?)", + "OR or WA", + "Oregon", + "Oriente", + "Otuzco", + "PA", + "Palawan", + "Panama", + "Panay", + "Paraguari", + "Parana", + "Paris", + "Pasco", + "Pataz", + "PE", + "Peloponnisos", + "Peten", + "Pichincha", + "Piura", + "PMG", + "Pohnpei", + "Pomeroon-Supernaam", + "Portuguesa", + "Potosi", + "PRE", + "Prince Edward Island", + "PUE", + "Puebla", + "Puerto Rico", + "Puno", + "Puntarenas", + "Quang Ngai", + "Quebec", + "Queensland", + "Quezaltenango", + "Quezon", + "Quiche", + "RI", + "Rio de Janeiro", + "Rizal", + "S Catarina", + "S L Potosi", + "S.L. Potos", + "Sabah", + "Salta", + "Samar", + "San Blas", + "San Jose", + "San Luis", + "San Luis a", + "San Luis Potosi", + "San Martin", + "San Miguel", + "San Pedro", + "Santa Barbara", + "Santa Catarina", + "Santa Cruz", + "Santander", + "Santiago, Region Met", + "Sao Paulo", + "Sarawak", + "Saskatchewan", + "Savaii Island", + "SC", + "Scotland", + "SD", + "Semnan", + "Seybo", + "Sichuan", + "Sierra", + "SIN", + "Sinaloa", + "SL Potosi", + "Societe, Iles de la", + "Societe, Isles de la", + "SON", + "Sonora", + "Sonsonate", + "South Australia", + "Southern Cook Island", + "St. Andrew", + "St. Croix", + "Stann Creek", + "Sulu", + "Sumatera", + "TAB", + "Tabasco", + "Tachira", + "Tacna", + "TAM", + "Tamaulipas", + "Tarank Province", + "Tarija", + "Tarma", + "Tasmania", + "Tehran", + "Tierra del Fuego", + "Tlaxcala", + "TN", + "Toledo", + "Tongatapu", + "Trelawny", + "Trujillo", + "Tuamotu, Archipel de", + "Tubuai, Iles", + "Tucuman", + "Tutuila Island", + "TX", + "TX ", + "TX-NM", + "Upolu Island", + "UT", + "Utah", + "VA", + "Valle", + "Valparaiso", + "Vaupes", + "Veracruz", + "Verguas", + "Victoria", + "VT", + "w TX to NM", + "w. TX - El Paso, NM", + "w. TX - El Paso,NM", + "WA", + "WA Territory", + "Wales", + "WAS", + "Western Australia", + "Western Cape", + "WI", + "WN", + "WV", + "WY", + "Wyoming", + "Xizang", + "Yaracuy", + "Yoro", + "Yucatan", + "Yukon Territory", + "Yunnan", + "Zacatecas", + "Zhejiang", + "Zulia" + ], + "messages": { + "Unknown": { + "id": "option.states.Unknown", + "defaultMessage": "unknown" + } + } + }, + "countries": { + "values": [ + "unknown", + "Afghanistan", + "AX", + "AL", + "Algeria", + "American Samoa", + "AD", + "AO", + "AI", + "AQ", + "Antigua", + "Antigua and Barbuda", + "Argentina", + "Armenia", + "AW", + "Australia", + "AT", + "AZ", + "BS", + "BH", + "BD", + "BB", + "BY", + "Belgium", + "Belize", + "BJ", + "Bermuda", + "BT", + "Bolivia", + "BQ", + "Borneo", + "BA", + "BW", + "BV", + "Brazil", + "IO", + "Brunei", + "BG", + "BF", + "BI", + "Cambodia", + "Cameroon", + "Canada", + "CV", + "KY", + "CF", + "TD", + "Chile", + "China", + "CX", + "CC", + "Colombia", + "KM", + "CG", + "Cook Islands", + "Costa Rica", + "CI", + "Croatia", + "Cuba", + "CW", + "CY", + "CZ", + "D R Congo", + "Denmark", + "DJ", + "DM", + "Dominican Republic", + "Ecuador", + "EG", + "El Salvador", + "Ellas", + "Equatorial Guinea", + "ER", + "Espana", + "EE", + "ET", + "FK", + "FO", + "Fiji", + "Finland", + "France", + "GF", + "PF", + "TF", + "GA", + "GM", + "GE", + "Germany", + "GH", + "GI", + "Greenland", + "GD", + "Guadeloupe", + "GU", + "Guatemala", + "GG", + "GN", + "GW", + "Guyana", + "Haiti", + "HM", + "Hispaniola", + "VA", + "Honduras", + "HK", + "HN", + "Iceland", + "India", + "Indonesia", + "Iran", + "IQ", + "Ireland", + "IM", + "Israel", + "Italy", + "Jamaica", + "Japan", + "JE", + "Jordan", + "KZ", + "Kenya", + "KI", + "KP", + "KW", + "KG", + "LA", + "LV", + "Lebanon", + "LS", + "LR", + "LY", + "LI", + "LT", + "LU", + "MO", + "MK", + "Madagascar", + "Malawi", + "Malaysia", + "MV", + "ML", + "MT", + "Marshall Islands", + "MQ", + "MR", + "MU", + "YT", + "Mexico", + "Micronesia", + "MD", + "MC", + "Mongolia", + "ME", + "MS", + "Morocco", + "MZ", + "Myanmar", + "Namibia", + "NR", + "Nepal", + "Netherlands Antilles", + "Netherlands", + "New Caledonia", + "New Zealand", + "Nicaragua", + "NE", + "NG", + "Nihon", + "Niue", + "NF", + "MP", + "Norway", + "OM", + "Pakistan", + "PW", + "PS", + "Panama", + "Papua New Guinea", + "Paraguay", + "Peru", + "Philippines", + "PN", + "PL", + "Polynesia", + "Polynesie francaise", + "Portugal", + "Prathet Thai", + "Puerto Rico", + "QA", + "Republica Dominicana", + "Reunion", + "RO", + "Russia", + "RW", + "BL", + "Saint Helena", + "KN", + "Saint Lucia", + "MF", + "PM", + "VC", + "Samoa", + "SM", + "ST", + "SA", + "Scotland", + "SN", + "RS", + "Seychelles", + "SL", + "SG", + "SX", + "SK", + "Slovenia", + "SO", + "Solomon Islands", + "South Africa", + "GS", + "South Korea", + "SS", + "Spain", + "Sri Lanka", + "Sudan", + "Suriname", + "SJ", + "SZ", + "Sweden", + "CH", + "Syria", + "Taiwan", + "TJ", + "Tanzania", + "Thailand", + "TL", + "TG", + "TK", + "Tonga", + "Trinidad and Tobago", + "TN", + "Turkey", + "TM", + "TC", + "TV", + "Uganda", + "UA", + "AE", + "United Kingdom", + "UM", + "Uruguay", + "USA", + "UZ", + "Vanuatu", + "Venezuela", + "Viet Nam", + "VG", + "Virgin Islands", + "WF", + "EH", + "Western Samoa", + "YE", + "ZM", + "Zhonghua", + "ZW" + ], + "messages": { + "unknown": { + "id": "option.countries.unknown", + "defaultMessage": "unknown" + }, + "Afghanistan": { + "id": "option.countries.Afghanistan", + "defaultMessage": "Afghanistan" + }, + "AX": { + "id": "option.countries.AX", + "defaultMessage": "Åland Islands" + }, + "AL": { + "id": "option.countries.AL", + "defaultMessage": "Albania" + }, + "Algeria": { + "id": "option.countries.Algeria", + "defaultMessage": "Algeria" + }, + "American Samoa": { + "id": "option.countries.American Samoa", + "defaultMessage": "American Samoa" + }, + "AD": { + "id": "option.countries.AD", + "defaultMessage": "Andorra" + }, + "AO": { + "id": "option.countries.AO", + "defaultMessage": "Angola" + }, + "AI": { + "id": "option.countries.AI", + "defaultMessage": "Anguilla" + }, + "AQ": { + "id": "option.countries.AQ", + "defaultMessage": "Antarctica" + }, + "Antigua": { + "id": "option.countries.Antigua", + "defaultMessage": "Antigua" + }, + "Antigua and Barbuda": { + "id": "option.countries.Antigua and Barbuda", + "defaultMessage": "Antigua and Barbuda" + }, + "Argentina": { + "id": "option.countries.Argentina", + "defaultMessage": "Argentina" + }, + "Armenia": { + "id": "option.countries.Armenia", + "defaultMessage": "Armenia" + }, + "AW": { + "id": "option.countries.AW", + "defaultMessage": "Aruba" + }, + "Australia": { + "id": "option.countries.Australia", + "defaultMessage": "Australia" + }, + "AT": { + "id": "option.countries.AT", + "defaultMessage": "Austria" + }, + "AZ": { + "id": "option.countries.AZ", + "defaultMessage": "Azerbaijan" + }, + "BS": { + "id": "option.countries.BS", + "defaultMessage": "Bahamas" + }, + "BH": { + "id": "option.countries.BH", + "defaultMessage": "Bahrain" + }, + "BD": { + "id": "option.countries.BD", + "defaultMessage": "Bangladesh" + }, + "BB": { + "id": "option.countries.BB", + "defaultMessage": "Barbados" + }, + "BY": { + "id": "option.countries.BY", + "defaultMessage": "Belarus" + }, + "Belgium": { + "id": "option.countries.Belgium", + "defaultMessage": "Belgium" + }, + "Belize": { + "id": "option.countries.Belize", + "defaultMessage": "Belize" + }, + "BJ": { + "id": "option.countries.BJ", + "defaultMessage": "Benin" + }, + "Bermuda": { + "id": "option.countries.Bermuda", + "defaultMessage": "Bermuda" + }, + "BT": { + "id": "option.countries.BT", + "defaultMessage": "Bhutan" + }, + "Bolivia": { + "id": "option.countries.Bolivia", + "defaultMessage": "Bolivia" + }, + "BQ": { + "id": "option.countries.BQ", + "defaultMessage": "Bonaire, Sint Eustatius and Saba" + }, + "Borneo": { + "id": "option.countries.Borneo", + "defaultMessage": "Borneo" + }, + "BA": { + "id": "option.countries.BA", + "defaultMessage": "Bosnia and Herzegovina" + }, + "BW": { + "id": "option.countries.BW", + "defaultMessage": "Botswana" + }, + "BV": { + "id": "option.countries.BV", + "defaultMessage": "Bouvet Island" + }, + "Brazil": { + "id": "option.countries.Brazil", + "defaultMessage": "Brazil" + }, + "IO": { + "id": "option.countries.IO", + "defaultMessage": "British Indian Ocean Territory" + }, + "Brunei": { + "id": "option.countries.Brunei", + "defaultMessage": "Brunei" + }, + "BG": { + "id": "option.countries.BG", + "defaultMessage": "Bulgaria" + }, + "BF": { + "id": "option.countries.BF", + "defaultMessage": "Burkina Faso" + }, + "BI": { + "id": "option.countries.BI", + "defaultMessage": "Burundi" + }, + "Cambodia": { + "id": "option.countries.Cambodia", + "defaultMessage": "Cambodia" + }, + "Cameroon": { + "id": "option.countries.Cameroon", + "defaultMessage": "Cameroon" + }, + "Canada": { + "id": "option.countries.Canada", + "defaultMessage": "Canada" + }, + "CV": { + "id": "option.countries.CV", + "defaultMessage": "Cape Verde" + }, + "KY": { + "id": "option.countries.KY", + "defaultMessage": "Cayman Islands" + }, + "CF": { + "id": "option.countries.CF", + "defaultMessage": "Central African Republic" + }, + "TD": { + "id": "option.countries.TD", + "defaultMessage": "Chad" + }, + "Chile": { + "id": "option.countries.Chile", + "defaultMessage": "Chile" + }, + "China": { + "id": "option.countries.China", + "defaultMessage": "China" + }, + "CX": { + "id": "option.countries.CX", + "defaultMessage": "Christmas Island" + }, + "CC": { + "id": "option.countries.CC", + "defaultMessage": "Cocos (Keeling) Islands" + }, + "Colombia": { + "id": "option.countries.Colombia", + "defaultMessage": "Colombia" + }, + "KM": { + "id": "option.countries.KM", + "defaultMessage": "Comoros" + }, + "CG": { + "id": "option.countries.CG", + "defaultMessage": "Congo" + }, + "Cook Islands": { + "id": "option.countries.Cook Islands", + "defaultMessage": "Cook Islands" + }, + "Costa Rica": { + "id": "option.countries.Costa Rica", + "defaultMessage": "Costa Rica" + }, + "CI": { + "id": "option.countries.CI", + "defaultMessage": "Côte d’Ivoire" + }, + "Croatia": { + "id": "option.countries.Croatia", + "defaultMessage": "Croatia" + }, + "Cuba": { + "id": "option.countries.Cuba", + "defaultMessage": "Cuba" + }, + "CW": { + "id": "option.countries.CW", + "defaultMessage": "Curaçao" + }, + "CY": { + "id": "option.countries.CY", + "defaultMessage": "Cyprus" + }, + "CZ": { + "id": "option.countries.CZ", + "defaultMessage": "Czech Republic" + }, + "D R Congo": { + "id": "option.countries.D R Congo", + "defaultMessage": "D R Congo" + }, + "Denmark": { + "id": "option.countries.Denmark", + "defaultMessage": "Denmark" + }, + "DJ": { + "id": "option.countries.DJ", + "defaultMessage": "Djibouti" + }, + "DM": { + "id": "option.countries.DM", + "defaultMessage": "Dominica" + }, + "Dominican Republic": { + "id": "option.countries.Dominican Republic", + "defaultMessage": "Dominican Republic" + }, + "Ecuador": { + "id": "option.countries.Ecuador", + "defaultMessage": "Ecuador" + }, + "EG": { + "id": "option.countries.EG", + "defaultMessage": "Egypt" + }, + "El Salvador": { + "id": "option.countries.El Salvador", + "defaultMessage": "El Salvador" + }, + "Ellas": { + "id": "option.countries.Ellas", + "defaultMessage": "Ellas" + }, + "Equatorial Guinea": { + "id": "option.countries.Equatorial Guinea", + "defaultMessage": "Equatorial Guinea" + }, + "ER": { + "id": "option.countries.ER", + "defaultMessage": "Eritrea" + }, + "Espana": { + "id": "option.countries.Espana", + "defaultMessage": "Espana" + }, + "EE": { + "id": "option.countries.EE", + "defaultMessage": "Estonia" + }, + "ET": { + "id": "option.countries.ET", + "defaultMessage": "Ethiopia" + }, + "FK": { + "id": "option.countries.FK", + "defaultMessage": "Falkland Islands (Malvinas)" + }, + "FO": { + "id": "option.countries.FO", + "defaultMessage": "Faroe Islands" + }, + "Fiji": { + "id": "option.countries.Fiji", + "defaultMessage": "Fiji" + }, + "Finland": { + "id": "option.countries.Finland", + "defaultMessage": "Finland" + }, + "France": { + "id": "option.countries.France", + "defaultMessage": "France" + }, + "GF": { + "id": "option.countries.GF", + "defaultMessage": "French Guiana" + }, + "PF": { + "id": "option.countries.PF", + "defaultMessage": "French Polynesia" + }, + "TF": { + "id": "option.countries.TF", + "defaultMessage": "French Southern Territories" + }, + "GA": { + "id": "option.countries.GA", + "defaultMessage": "Gabon" + }, + "GM": { + "id": "option.countries.GM", + "defaultMessage": "Gambia" + }, + "GE": { + "id": "option.countries.GE", + "defaultMessage": "Georgia" + }, + "Germany": { + "id": "option.countries.Germany", + "defaultMessage": "Germany" + }, + "GH": { + "id": "option.countries.GH", + "defaultMessage": "Ghana" + }, + "GI": { + "id": "option.countries.GI", + "defaultMessage": "Gibraltar" + }, + "Greenland": { + "id": "option.countries.Greenland", + "defaultMessage": "Greenland" + }, + "GD": { + "id": "option.countries.GD", + "defaultMessage": "Grenada" + }, + "Guadeloupe": { + "id": "option.countries.Guadeloupe", + "defaultMessage": "Guadeloupe" + }, + "GU": { + "id": "option.countries.GU", + "defaultMessage": "Guam" + }, + "Guatemala": { + "id": "option.countries.Guatemala", + "defaultMessage": "Guatemala" + }, + "GG": { + "id": "option.countries.GG", + "defaultMessage": "Guernsey" + }, + "GN": { + "id": "option.countries.GN", + "defaultMessage": "Guinea" + }, + "GW": { + "id": "option.countries.GW", + "defaultMessage": "Guinea-Bissau" + }, + "Guyana": { + "id": "option.countries.Guyana", + "defaultMessage": "Guyana" + }, + "Haiti": { + "id": "option.countries.Haiti", + "defaultMessage": "Haiti" + }, + "HM": { + "id": "option.countries.HM", + "defaultMessage": "Heard Island and McDonald Islands" + }, + "Hispaniola": { + "id": "option.countries.Hispaniola", + "defaultMessage": "Hispaniola" + }, + "VA": { + "id": "option.countries.VA", + "defaultMessage": "Holy See (Vatican City State)" + }, + "Honduras": { + "id": "option.countries.Honduras", + "defaultMessage": "Honduras" + }, + "HK": { + "id": "option.countries.HK", + "defaultMessage": "Hong Kong" + }, + "HN": { + "id": "option.countries.HN", + "defaultMessage": "Hungary" + }, + "Iceland": { + "id": "option.countries.Iceland", + "defaultMessage": "Iceland" + }, + "India": { + "id": "option.countries.India", + "defaultMessage": "India" + }, + "Indonesia": { + "id": "option.countries.Indonesia", + "defaultMessage": "Indonesia" + }, + "Iran": { + "id": "option.countries.Iran", + "defaultMessage": "Iran" + }, + "IQ": { + "id": "option.countries.IQ", + "defaultMessage": "Iraq" + }, + "Ireland": { + "id": "option.countries.Ireland", + "defaultMessage": "Ireland" + }, + "IM": { + "id": "option.countries.IM", + "defaultMessage": "Isle of Man" + }, + "Israel": { + "id": "option.countries.Israel", + "defaultMessage": "Israel" + }, + "Italy": { + "id": "option.countries.Italy", + "defaultMessage": "Italy" + }, + "Jamaica": { + "id": "option.countries.Jamaica", + "defaultMessage": "Jamaica" + }, + "Japan": { + "id": "option.countries.Japan", + "defaultMessage": "Japan" + }, + "JE": { + "id": "option.countries.JE", + "defaultMessage": "Jersey" + }, + "Jordan": { + "id": "option.countries.Jordan", + "defaultMessage": "Jordan" + }, + "KZ": { + "id": "option.countries.KZ", + "defaultMessage": "Kazakhstan" + }, + "Kenya": { + "id": "option.countries.Kenya", + "defaultMessage": "Kenya" + }, + "KI": { + "id": "option.countries.KI", + "defaultMessage": "Kiribati" + }, + "KP": { + "id": "option.countries.KP", + "defaultMessage": "Korea, Democratic People’s Republic of" + }, + "KW": { + "id": "option.countries.KW", + "defaultMessage": "Kuwait" + }, + "KG": { + "id": "option.countries.KG", + "defaultMessage": "Kyrgyzstan" + }, + "LA": { + "id": "option.countries.LA", + "defaultMessage": "Lao People’s Democratic Republic" + }, + "LV": { + "id": "option.countries.LV", + "defaultMessage": "Latvia" + }, + "Lebanon": { + "id": "option.countries.Lebanon", + "defaultMessage": "Lebanon" + }, + "LS": { + "id": "option.countries.LS", + "defaultMessage": "Lesotho" + }, + "LR": { + "id": "option.countries.LR", + "defaultMessage": "Liberia" + }, + "LY": { + "id": "option.countries.LY", + "defaultMessage": "Libya" + }, + "LI": { + "id": "option.countries.LI", + "defaultMessage": "Liechtenstein" + }, + "LT": { + "id": "option.countries.LT", + "defaultMessage": "Lithuania" + }, + "LU": { + "id": "option.countries.LU", + "defaultMessage": "Luxembourg" + }, + "MO": { + "id": "option.countries.MO", + "defaultMessage": "Macao" + }, + "MK": { + "id": "option.countries.MK", + "defaultMessage": "Macedonia, the Former Yugoslav Republic of" + }, + "Madagascar": { + "id": "option.countries.Madagascar", + "defaultMessage": "Madagascar" + }, + "Malawi": { + "id": "option.countries.Malawi", + "defaultMessage": "Malawi" + }, + "Malaysia": { + "id": "option.countries.Malaysia", + "defaultMessage": "Malaysia" + }, + "MV": { + "id": "option.countries.MV", + "defaultMessage": "Maldives" + }, + "ML": { + "id": "option.countries.ML", + "defaultMessage": "Mali" + }, + "MT": { + "id": "option.countries.MT", + "defaultMessage": "Malta" + }, + "Marshall Islands": { + "id": "option.countries.Marshall Islands", + "defaultMessage": "Marshall Islands" + }, + "MQ": { + "id": "option.countries.MQ", + "defaultMessage": "Martinique" + }, + "MR": { + "id": "option.countries.MR", + "defaultMessage": "Mauritania" + }, + "MU": { + "id": "option.countries.MU", + "defaultMessage": "Mauritius" + }, + "YT": { + "id": "option.countries.YT", + "defaultMessage": "Mayotte" + }, + "Mexico": { + "id": "option.countries.Mexico", + "defaultMessage": "Mexico" + }, + "Micronesia": { + "id": "option.countries.Micronesia", + "defaultMessage": "Micronesia" + }, + "MD": { + "id": "option.countries.MD", + "defaultMessage": "Moldova, Republic of" + }, + "MC": { + "id": "option.countries.MC", + "defaultMessage": "Monaco" + }, + "Mongolia": { + "id": "option.countries.Mongolia", + "defaultMessage": "Mongolia" + }, + "ME": { + "id": "option.countries.ME", + "defaultMessage": "Montenegro" + }, + "MS": { + "id": "option.countries.MS", + "defaultMessage": "Montserrat" + }, + "Morocco": { + "id": "option.countries.Morocco", + "defaultMessage": "Morocco" + }, + "MZ": { + "id": "option.countries.MZ", + "defaultMessage": "Mozambique" + }, + "Myanmar": { + "id": "option.countries.Myanmar", + "defaultMessage": "Myanmar" + }, + "Namibia": { + "id": "option.countries.Namibia", + "defaultMessage": "Namibia" + }, + "NR": { + "id": "option.countries.NR", + "defaultMessage": "Nauru" + }, + "Nepal": { + "id": "option.countries.Nepal", + "defaultMessage": "Nepal" + }, + "Netherlands Antilles": { + "id": "option.countries.Netherlands Antilles", + "defaultMessage": "Netherlands Antilles" + }, + "Netherlands": { + "id": "option.countries.Netherlands", + "defaultMessage": "Netherlands" + }, + "New Caledonia": { + "id": "option.countries.New Caledonia", + "defaultMessage": "New Caledonia" + }, + "New Zealand": { + "id": "option.countries.New Zealand", + "defaultMessage": "New Zealand" + }, + "Nicaragua": { + "id": "option.countries.Nicaragua", + "defaultMessage": "Nicaragua" + }, + "NE": { + "id": "option.countries.NE", + "defaultMessage": "Niger" + }, + "NG": { + "id": "option.countries.NG", + "defaultMessage": "Nigeria" + }, + "Nihon": { + "id": "option.countries.Nihon", + "defaultMessage": "Nihon" + }, + "Niue": { + "id": "option.countries.Niue", + "defaultMessage": "Niue" + }, + "NF": { + "id": "option.countries.NF", + "defaultMessage": "Norfolk Island" + }, + "MP": { + "id": "option.countries.MP", + "defaultMessage": "Northern Mariana Islands" + }, + "Norway": { + "id": "option.countries.Norway", + "defaultMessage": "Norway" + }, + "OM": { + "id": "option.countries.OM", + "defaultMessage": "Oman" + }, + "Pakistan": { + "id": "option.countries.Pakistan", + "defaultMessage": "Pakistan" + }, + "PW": { + "id": "option.countries.PW", + "defaultMessage": "Palau" + }, + "PS": { + "id": "option.countries.PS", + "defaultMessage": "Palestinian Territory, Occupied" + }, + "Panama": { + "id": "option.countries.Panama", + "defaultMessage": "Panama" + }, + "Papua New Guinea": { + "id": "option.countries.Papua New Guinea", + "defaultMessage": "Papua New Guinea" + }, + "Paraguay": { + "id": "option.countries.Paraguay", + "defaultMessage": "Paraguay" + }, + "Peru": { + "id": "option.countries.Peru", + "defaultMessage": "Peru" + }, + "Philippines": { + "id": "option.countries.Philippines", + "defaultMessage": "Philippines" + }, + "PN": { + "id": "option.countries.PN", + "defaultMessage": "Pitcairn" + }, + "PL": { + "id": "option.countries.PL", + "defaultMessage": "Poland" + }, + "Polynesia": { + "id": "option.countries.Polynesia", + "defaultMessage": "Polynesia" + }, + "Polynesie francaise": { + "id": "option.countries.Polynesie francaise", + "defaultMessage": "Polynesie francaise" + }, + "Portugal": { + "id": "option.countries.Portugal", + "defaultMessage": "Portugal" + }, + "Prathet Thai": { + "id": "option.countries.Prathet Thai", + "defaultMessage": "Prathet Thai" + }, + "Puerto Rico": { + "id": "option.countries.Puerto Rico", + "defaultMessage": "Puerto Rico" + }, + "QA": { + "id": "option.countries.QA", + "defaultMessage": "Qatar" + }, + "Republica Dominicana": { + "id": "option.countries.Republica Dominicana", + "defaultMessage": "Republica Dominicana" + }, + "Reunion": { + "id": "option.countries.Reunion", + "defaultMessage": "Reunion" + }, + "RO": { + "id": "option.countries.RO", + "defaultMessage": "Romania" + }, + "Russia": { + "id": "option.countries.Russia", + "defaultMessage": "Russia" + }, + "RW": { + "id": "option.countries.RW", + "defaultMessage": "Rwanda" + }, + "BL": { + "id": "option.countries.BL", + "defaultMessage": "Saint Barthélemy" + }, + "Saint Helena": { + "id": "option.countries.Saint Helena", + "defaultMessage": "Saint Helena" + }, + "KN": { + "id": "option.countries.KN", + "defaultMessage": "Saint Kitts and Nevis" + }, + "Saint Lucia": { + "id": "option.countries.Saint Lucia", + "defaultMessage": "Saint Lucia" + }, + "MF": { + "id": "option.countries.MF", + "defaultMessage": "Saint Martin (French Part)" + }, + "PM": { + "id": "option.countries.PM", + "defaultMessage": "Saint Pierre and Miquelon" + }, + "VC": { + "id": "option.countries.VC", + "defaultMessage": "Saint Vincent and the Grenadines" + }, + "Samoa": { + "id": "option.countries.Samoa", + "defaultMessage": "Samoa" + }, + "SM": { + "id": "option.countries.SM", + "defaultMessage": "San Marino" + }, + "ST": { + "id": "option.countries.ST", + "defaultMessage": "Sao Tome and Principe" + }, + "SA": { + "id": "option.countries.SA", + "defaultMessage": "Saudi Arabia" + }, + "Scotland": { + "id": "option.countries.Scotland", + "defaultMessage": "Scotland" + }, + "SN": { + "id": "option.countries.SN", + "defaultMessage": "Senegal" + }, + "RS": { + "id": "option.countries.RS", + "defaultMessage": "Serbia" + }, + "Seychelles": { + "id": "option.countries.Seychelles", + "defaultMessage": "Seychelles" + }, + "SL": { + "id": "option.countries.SL", + "defaultMessage": "Sierra Leone" + }, + "SG": { + "id": "option.countries.SG", + "defaultMessage": "Singapore" + }, + "SX": { + "id": "option.countries.SX", + "defaultMessage": "Sint Maarten (Dutch Part)" + }, + "SK": { + "id": "option.countries.SK", + "defaultMessage": "Slovakia" + }, + "Slovenia": { + "id": "option.countries.Slovenia", + "defaultMessage": "Slovenia" + }, + "SO": { + "id": "option.countries.SO", + "defaultMessage": "Somalia" + }, + "Solomon Islands": { + "id": "option.countries.Solomon Islands", + "defaultMessage": "Solomon Islands" + }, + "South Africa": { + "id": "option.countries.South Africa", + "defaultMessage": "South Africa" + }, + "GS": { + "id": "option.countries.GS", + "defaultMessage": "South Georgia and the South Sandwich Islands" + }, + "South Korea": { + "id": "option.countries.South Korea", + "defaultMessage": "South Korea" + }, + "SS": { + "id": "option.countries.SS", + "defaultMessage": "South Sudan" + }, + "Spain": { + "id": "option.countries.Spain", + "defaultMessage": "Spain" + }, + "Sri Lanka": { + "id": "option.countries.Sri Lanka", + "defaultMessage": "Sri Lanka" + }, + "Sudan": { + "id": "option.countries.Sudan", + "defaultMessage": "Sudan" + }, + "Suriname": { + "id": "option.countries.Suriname", + "defaultMessage": "Suriname" + }, + "SJ": { + "id": "option.countries.SJ", + "defaultMessage": "Svalbard and Jan Mayen" + }, + "SZ": { + "id": "option.countries.SZ", + "defaultMessage": "Swaziland" + }, + "Sweden": { + "id": "option.countries.Sweden", + "defaultMessage": "Sweden" + }, + "CH": { + "id": "option.countries.CH", + "defaultMessage": "Switzerland" + }, + "Syria": { + "id": "option.countries.Syria", + "defaultMessage": "Syria" + }, + "Taiwan": { + "id": "option.countries.Taiwan", + "defaultMessage": "Taiwan" + }, + "TJ": { + "id": "option.countries.TJ", + "defaultMessage": "Tajikistan" + }, + "Tanzania": { + "id": "option.countries.Tanzania", + "defaultMessage": "Tanzania" + }, + "Thailand": { + "id": "option.countries.Thailand", + "defaultMessage": "Thailand" + }, + "TL": { + "id": "option.countries.TL", + "defaultMessage": "Timor-Leste" + }, + "TG": { + "id": "option.countries.TG", + "defaultMessage": "Togo" + }, + "TK": { + "id": "option.countries.TK", + "defaultMessage": "Tokelau" + }, + "Tonga": { + "id": "option.countries.Tonga", + "defaultMessage": "Tonga" + }, + "Trinidad and Tobago": { + "id": "option.countries.Trinidad and Tobago", + "defaultMessage": "Trinidad and Tobago" + }, + "TN": { + "id": "option.countries.TN", + "defaultMessage": "Tunisia" + }, + "Turkey": { + "id": "option.countries.Turkey", + "defaultMessage": "Turkey" + }, + "TM": { + "id": "option.countries.TM", + "defaultMessage": "Turkmenistan" + }, + "TC": { + "id": "option.countries.TC", + "defaultMessage": "Turks and Caicos Islands" + }, + "TV": { + "id": "option.countries.TV", + "defaultMessage": "Tuvalu" + }, + "Uganda": { + "id": "option.countries.Uganda", + "defaultMessage": "Uganda" + }, + "UA": { + "id": "option.countries.UA", + "defaultMessage": "Ukraine" + }, + "AE": { + "id": "option.countries.AE", + "defaultMessage": "United Arab Emirates" + }, + "United Kingdom": { + "id": "option.countries.United Kingdom", + "defaultMessage": "United Kingdom" + }, + "UM": { + "id": "option.countries.UM", + "defaultMessage": "United States Minor Outlying Islands" + }, + "Uruguay": { + "id": "option.countries.Uruguay", + "defaultMessage": "Uruguay" + }, + "USA": { + "id": "option.countries.USA", + "defaultMessage": "USA" + }, + "UZ": { + "id": "option.countries.UZ", + "defaultMessage": "Uzbekistan" + }, + "Vanuatu": { + "id": "option.countries.Vanuatu", + "defaultMessage": "Vanuatu" + }, + "Venezuela": { + "id": "option.countries.Venezuela", + "defaultMessage": "Venezuela" + }, + "Viet Nam": { + "id": "option.countries.Viet Nam", + "defaultMessage": "Viet Nam" + }, + "VG": { + "id": "option.countries.VG", + "defaultMessage": "Virgin Islands, British" + }, + "Virgin Islands": { + "id": "option.countries.Virgin Islands", + "defaultMessage": "Virgin Islands" + }, + "WF": { + "id": "option.countries.WF", + "defaultMessage": "Wallis and Futuna" + }, + "EH": { + "id": "option.countries.EH", + "defaultMessage": "Western Sahara" + }, + "Western Samoa": { + "id": "option.countries.Western Samoa", + "defaultMessage": "Western Samoa" + }, + "YE": { + "id": "option.countries.YE", + "defaultMessage": "Yemen" + }, + "ZM": { + "id": "option.countries.ZM", + "defaultMessage": "Zambia" + }, + "Zhonghua": { + "id": "option.countries.Zhonghua", + "defaultMessage": "Zhonghua" + }, + "ZW": { + "id": "option.countries.ZW", + "defaultMessage": "Zimbabwe" + } + } + }, + "higherGeographies": { + "values": [ + "pacificocean", + "North America" + ], + "messages": { + "pacificocean": { + "id": "option.geographies.pacificocean", + "defaultMessage": "Pacific Ocean" + }, + "North America": { + "id": "option.geographies.North America", + "defaultMessage": "North America" + } + } + }, + "coordUncertaintyUnits": { + "values": [ + "unknown", + "feet", + "kilometers", + "meters", + "miles" + ], + "messages": { + "unknown": { + "id": "option.coordUncertaintyUnits.unknown", + "defaultMessage": "unknown" + }, + "feet": { + "id": "option.coordUncertaintyUnits.feet", + "defaultMessage": "feet" + }, + "kilometers": { + "id": "option.coordUncertaintyUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.coordUncertaintyUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.coordUncertaintyUnits.miles", + "defaultMessage": "miles" + } + } + }, + "depthUnits": { + "values": [ + "uncertain", + "centimeters", + "inches", + "fathoms", + "feet", + "furlongs", + "kilometers", + "meters", + "miles", + "rods" + ], + "messages": { + "uncertain": { + "id": "option.depthUnits.uncertain", + "defaultMessage": "uncertain" + }, + "centimeters": { + "id": "option.depthUnits.centimeters", + "defaultMessage": "centimeters" + }, + "inches": { + "id": "option.depthUnits.inches", + "defaultMessage": "inches" + }, + "fathoms": { + "id": "option.depthUnits.fathoms", + "defaultMessage": "fathoms" + }, + "feet": { + "id": "option.depthUnits.feet", + "defaultMessage": "feet" + }, + "furlongs": { + "id": "option.depthUnits.furlongs", + "defaultMessage": "furlongs" + }, + "kilometers": { + "id": "option.depthUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.depthUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.depthUnits.miles", + "defaultMessage": "miles" + }, + "rods": { + "id": "option.depthUnits.rods", + "defaultMessage": "rods" + } + } + }, + "elevationUnits": { + "values": [ + "uncertain", + "feet", + "meters" + ], + "messages": { + "uncertain": { + "id": "option.elevationUnits.uncertain", + "defaultMessage": "uncertain" + }, + "feet": { + "id": "option.elevationUnits.feet", + "defaultMessage": "feet" + }, + "meters": { + "id": "option.elevationUnits.meters", + "defaultMessage": "meters" + } + } + }, + "distanceAboveSurfaceUnits": { + "values": [ + "uncertain", + "centimeters", + "inches", + "fathoms", + "feet", + "furlongs", + "kilometers", + "meters", + "miles", + "rods" + ], + "messages": { + "uncertain": { + "id": "option.distanceAboveSurfaceUnits.uncertain", + "defaultMessage": "uncertain" + }, + "centimeters": { + "id": "option.distanceAboveSurfaceUnits.centimeters", + "defaultMessage": "centimeters" + }, + "inches": { + "id": "option.distanceAboveSurfaceUnits.inches", + "defaultMessage": "inches" + }, + "fathoms": { + "id": "option.distanceAboveSurfaceUnits.fathoms", + "defaultMessage": "fathoms" + }, + "feet": { + "id": "option.distanceAboveSurfaceUnits.feet", + "defaultMessage": "feet" + }, + "furlongs": { + "id": "option.distanceAboveSurfaceUnits.furlongs", + "defaultMessage": "furlongs" + }, + "kilometers": { + "id": "option.distanceAboveSurfaceUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.distanceAboveSurfaceUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.distanceAboveSurfaceUnits.miles", + "defaultMessage": "miles" + }, + "rods": { + "id": "option.distanceAboveSurfaceUnits.rods", + "defaultMessage": "rods" + } + } + }, + "georefProtocols": { + "values": [ + "chapman-wieczorek-2006-guide-best-practices-georeferencing", + "manis-herpnet-ornis-georeferencing-guidelines", + "georeferencing-dummies", + "biogeomancer" + ], + "messages": { + "chapman-wieczorek-2006-guide-best-practices-georeferencing": { + "id": "option.georefProtocols.chapman-wieczorek-2006-guide-best-practices-georeferencing", + "defaultMessage": "Chapman, Wieczorek 2006, Guide to Best Practices for Georeferencing" + }, + "manis-herpnet-ornis-georeferencing-guidelines": { + "id": "option.georefProtocols.manis-herpnet-ornis-georeferencing-guidelines", + "defaultMessage": "MaNIS/HerpNet/ORNIS Georeferencing Guidelines" + }, + "georeferencing-dummies": { + "id": "option.georefProtocols.georeferencing-dummies", + "defaultMessage": "Georeferencing For Dummies" + }, + "biogeomancer": { + "id": "option.georefProtocols.biogeomancer", + "defaultMessage": "BioGeomancer" + } + } + }, + "georefVerificationStatuses": { + "values": [ + "unverified", + "verified-data-custodian", + "verified-contributor" + ], + "messages": { + "unverified": { + "id": "option.georefVerificationStatuses.unverified", + "defaultMessage": "unverified" + }, + "verified-data-custodian": { + "id": "option.georefVerificationStatuses.verified-data-custodian", + "defaultMessage": "verified by data custodian" + }, + "verified-contributor": { + "id": "option.georefVerificationStatuses.verified-contributor", + "defaultMessage": "verified by contributor" + } + } + }, + "sexDeterminations": { + "values": [ + "Female", + "Probably female", + "Possibly female", + "Male", + "Probably male", + "Possibly male", + "Indeterminate", + "Unknown" + ], + "messages": { + "Female": { + "id": "option.sexDeterminations.Female", + "defaultMessage": "female" + }, + "Probably female": { + "id": "option.sexDeterminations.Probably female", + "defaultMessage": "probably female" + }, + "Possibly female": { + "id": "option.sexDeterminations.Possibly female", + "defaultMessage": "possibly female" + }, + "Male": { + "id": "option.sexDeterminations.Male", + "defaultMessage": "male" + }, + "Probably male": { + "id": "option.sexDeterminations.Probably male", + "defaultMessage": "probably male" + }, + "Possibly male": { + "id": "option.sexDeterminations.Possibly male", + "defaultMessage": "possibly male" + }, + "Indeterminate": { + "id": "option.sexDeterminations.Indeterminate", + "defaultMessage": "indeterminate" + }, + "Unknown": { + "id": "option.sexDeterminations.Unknown", + "defaultMessage": "unknown" + } + } + }, + "osteoLevels": { + "values": [ + "0", + "3", + "2b", + "2a", + "1", + "C" + ], + "messages": { + "0": { + "id": "option.osteoLevels.0", + "defaultMessage": "absent" + }, + "1": { + "id": "option.osteoLevels.1", + "defaultMessage": ">75% present" + }, + "3": { + "id": "option.osteoLevels.3", + "defaultMessage": "<25% present" + }, + "2b": { + "id": "option.osteoLevels.2b", + "defaultMessage": "25-50% present" + }, + "2a": { + "id": "option.osteoLevels.2a", + "defaultMessage": "50-75% present" + }, + "C": { + "id": "option.osteoLevels.C", + "defaultMessage": "complete" + } + } + }, + "osteoAbsoluteLevels": { + "values": [ + "0", + "C" + ], + "messages": { + "0": { + "id": "option.osteoAbsoluteLevels.0", + "defaultMessage": "absent" + }, + "C": { + "id": "option.osteoAbsoluteLevels.C", + "defaultMessage": "complete" + } + } + }, + "osteoCompleteStates": { + "values": [ + "C" + ], + "messages": { + "C": { + "id": "option.osteoCompleteStates.C", + "defaultMessage": "yes" + } + } + }, + "taxonTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.taxonTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.taxonTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.taxonTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "taxonTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.taxonTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.taxonTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.taxonTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.taxonTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "taxonomicStatuses": { + "values": [ + "valid", + "invalid", + "accepted", + "misapplied name" + ], + "messages": { + "valid": { + "id": "option.taxonomicStatuses.valid", + "defaultMessage": "valid" + }, + "invalid": { + "id": "option.taxonomicStatuses.invalid", + "defaultMessage": "invalid" + }, + "accepted": { + "id": "option.taxonomicStatuses.accepted", + "defaultMessage": "accepted" + }, + "misapplied name": { + "id": "option.taxonomicStatuses.misapplied name", + "defaultMessage": "misapplied name" + } + } + }, + "taxonRanks": { + "values": [ + "domain", + "kingdom", + "phylum", + "division", + "family", + "class", + "order", + "genus", + "species" + ], + "messages": { + "domain": { + "id": "option.taxonRanks.domain", + "defaultMessage": "domain" + }, + "kingdom": { + "id": "option.taxonRanks.kingdom", + "defaultMessage": "kingdom" + }, + "phylum": { + "id": "option.taxonRanks.phylum", + "defaultMessage": "phylum" + }, + "division": { + "id": "option.taxonRanks.division", + "defaultMessage": "division" + }, + "family": { + "id": "option.taxonRanks.family", + "defaultMessage": "family" + }, + "class": { + "id": "option.taxonRanks.class", + "defaultMessage": "class" + }, + "order": { + "id": "option.taxonRanks.order", + "defaultMessage": "order" + }, + "genus": { + "id": "option.taxonRanks.genus", + "defaultMessage": "genus" + }, + "species": { + "id": "option.taxonRanks.species", + "defaultMessage": "species" + } + } + }, + "taxonCurrencies": { + "values": [ + "current", + "obsolete", + "archaic" + ], + "messages": { + "current": { + "id": "option.taxonCurrencies.current", + "defaultMessage": "current" + }, + "obsolete": { + "id": "option.taxonCurrencies.obsolete", + "defaultMessage": "obsolete" + }, + "archaic": { + "id": "option.taxonCurrencies.archaic", + "defaultMessage": "archaic" + } + } + }, + "taxonAuthorTypes": { + "values": [ + "ascribed", + "parenthetical" + ], + "messages": { + "ascribed": { + "id": "option.taxonAuthorTypes.ascribed", + "defaultMessage": "ascribed" + }, + "parenthetical": { + "id": "option.taxonAuthorTypes.parenthetical", + "defaultMessage": "parenthetical" + } + } + }, + "nagpraNoticeDateTypes": { + "values": [ + "begin", + "end" + ], + "messages": { + "begin": { + "id": "option.nagpraNoticeDateTypes.begin", + "defaultMessage": "period begins" + }, + "end": { + "id": "option.nagpraNoticeDateTypes.end", + "defaultMessage": "period ends" + } + } + } + }, + "invocables": { + "batch": { + "org.collectionspace.services.batch.nuxeo.MergeAuthorityItemsBatchJob": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "target": { + "[config]": { + "messages": { + "name": { + "id": "field.batch.Merge Authority Items.targetCSID.name", + "defaultMessage": "Target record" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "disableAltTerms": true, + "source": "citation/local,citation/worldcat,concept/activity,concept/associated,concept/material,organization/local,organization/ulan,person/local,person/ulan,place/local,place/tgn,location/local,location/offsite,work/local", + "showQuickAdd": false + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "target" + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "org.collectionspace.services.batch.nuxeo.MergeAuthorityItemsBatchJob" + }, + "org.collectionspace.services.batch.nuxeo.UpdateInventoryStatusBatchJob": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.batch.UpdateInventoryStatusBatchJob.inventoryStatus.name", + "defaultMessage": "New inventory status" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "inventorystatus" + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "org.collectionspace.services.batch.nuxeo.UpdateInventoryStatusBatchJob" + } + }, + "report": { + "systematicInventory": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "startLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.report.systematicInventory.startLocation.name", + "defaultMessage": "From location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "showQuickAdd": false, + "source": "location/local,location/offsite" + } + } + } + }, + "endLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.report.systematicInventory.endLocation.name", + "defaultMessage": "To location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "showQuickAdd": false, + "source": "location/local,location/offsite" + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "startLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "endLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "systematicInventory" + } + } + }, + "listTypes": { + "account": { + "listNodeName": "ns2:accounts-common-list", + "itemNodeName": "account-list-item", + "messages": { + "resultCount": { + "id": "list.account.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No users} one {1 user} other {{startNum, number}–{endNum, number} of {totalItems, number} users}} found" + }, + "searching": { + "id": "list.account.searching", + "defaultMessage": "Finding users..." + } + } + }, + "audit": { + "listNodeName": "ns3:audit_common_list", + "itemNodeName": "audit-list-item", + "messages": { + "resultCount": { + "id": "list.audit.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No records} one {1 record} other {{startNum, number}–{endNum, number} of {totalItems, number} records}} found" + }, + "searching": { + "id": "list.audit.searching", + "defaultMessage": "Finding audit records..." + } + } + }, + "authRef": { + "listNodeName": "ns3:authority-ref-list", + "itemNodeName": "authority-ref-item", + "messages": { + "resultCount": { + "id": "list.authRef.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No terms} one {1 term} other {{startNum, number}–{endNum, number} of {totalItems, number} terms}} found" + }, + "searching": { + "id": "list.authRef.searching", + "defaultMessage": "Finding terms..." + } + } + }, + "common": { + "listNodeName": "ns2:abstract-common-list", + "itemNodeName": "list-item", + "messages": { + "resultCount": { + "id": "list.common.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No records} one {1 record} other {{startNum, number}–{endNum, number} of {totalItems, number} records}} found" + }, + "searching": { + "id": "list.common.searching", + "defaultMessage": "Finding records..." + } + } + }, + "refDoc": { + "listNodeName": "ns3:authority-ref-doc-list", + "itemNodeName": "authority-ref-doc-item", + "messages": { + "resultCount": { + "id": "list.refDoc.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No uses} one {1 use} other {{startNum, number}–{endNum, number} of {totalItems, number} uses}} found" + }, + "searching": { + "id": "list.refDoc.searching", + "defaultMessage": "Finding uses..." + } + } + }, + "role": { + "listNodeName": "ns2:roles_list", + "itemNodeName": "role", + "messages": { + "resultCount": { + "id": "list.role.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No roles} one {1 role} other {{startNum, number}–{endNum, number} of {totalItems, number} roles}} found" + }, + "searching": { + "id": "list.role.searching", + "defaultMessage": "Finding roles..." + } + } + } + }, + "recordTypes": { + "account": { + "messages": { + "record": { + "name": { + "id": "record.account.name", + "defaultMessage": "User" + }, + "collectionName": { + "id": "record.account.collectionName", + "defaultMessage": "Users" + } + } + }, + "serviceConfig": { + "servicePath": "accounts", + "serviceType": "security" + }, + "columns": { + "default": { + "screenName": { + "messages": { + "label": { + "id": "column.account.default.screenName", + "defaultMessage": "Full Name" + } + }, + "order": 10, + "width": 250 + }, + "status": { + "messages": { + "label": { + "id": "column.account.default.status", + "defaultMessage": "Status" + } + }, + "order": 20, + "width": 50 + } + } + }, + "deletePermType": "hard", + "fields": { + "ns2:accounts_common": { + "[config]": { + "messages": { + "errorNotConfirmed": { + "id": "field.accounts_common.errorNotConfirmed", + "defaultMessage": "Password and confirm password must be identical." + } + }, + "service": { + "ns": "http://collectionspace.org/services/account" + }, + "view": { + "type": "CompoundInput" + } + }, + "@csid": { + "[config]": { + "cloneable": false + } + }, + "createdAt": { + "[config]": { + "cloneable": false + } + }, + "updatedAt": { + "[config]": { + "cloneable": false + } + }, + "metadataProtection": { + "[config]": { + "cloneable": false + } + }, + "rolesProtection": { + "[config]": { + "cloneable": false + } + }, + "screenName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.screenName.name", + "defaultMessage": "Full name" + } + }, + "required": true, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "email": { + "[config]": { + "cloneable": false, + "messages": { + "errorInvalidEmail": { + "id": "field.accounts_common.email.errorInvalidEmail", + "defaultMessage": "Email is not a valid address. Correct the value {value}." + }, + "name": { + "id": "field.accounts_common.email.name", + "defaultMessage": "Email address" + } + }, + "required": true, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-email" + } + } + } + }, + "password": { + "[config]": { + "cloneable": false, + "messages": { + "errorInvalidPassword": { + "id": "field.accounts_common.password.errorInvalidPassword", + "defaultMessage": "Password must be between 8 and 24 characters." + }, + "name": { + "id": "field.accounts_common.password.name", + "defaultMessage": "Password" + } + }, + "view": { + "type": "PasswordInput", + "props": { + "autoComplete": "new-password" + } + } + } + }, + "confirmPassword": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.passwordConfirmation.name", + "defaultMessage": "Confirm password" + } + }, + "view": { + "type": "PasswordInput", + "props": { + "autoComplete": "new-password" + } + } + } + }, + "status": { + "[config]": { + "defaultValue": "active", + "messages": { + "name": { + "id": "field.accounts_common.status.name", + "defaultMessage": "Status" + } + }, + "required": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "accountStatuses" + } + } + } + }, + "userId": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.userId.name", + "defaultMessage": "User ID" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "roleList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "role": { + "[config]": { + "defaultValue": [ + + ], + "messages": { + "name": { + "id": "field.account.role.name", + "defaultMessage": "Roles" + } + }, + "view": { + "type": "RolesInput", + "props": { + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.account.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "ns3:accounts_common", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "email" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "screenName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "password" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "confirmPassword" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "status" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userId" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "roleList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "role" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "account" + }, + "acquisition": { + "messages": { + "record": { + "name": { + "id": "record.aquisition.name", + "defaultMessage": "Acquisition" + }, + "collectionName": { + "id": "record.acquisition.collectionName", + "defaultMessage": "Acquisitions" + } + }, + "panel": { + "info": { + "id": "panel.acquisition.info", + "defaultMessage": "Acquisition Information" + }, + "objectCollectionInformation": { + "id": "panel.acquisition.objectCollectionInformation", + "defaultMessage": "Object Collection Information" + }, + "priceInformation": { + "id": "panel.acquisition.priceInformation", + "defaultMessage": "Price Information" + } + }, + "inputTable": { + "acquisitionAuthorizer": { + "id": "inputTable.acquisition.acquisitionAuthorizer", + "defaultMessage": "Authorization" + }, + "groupPurchasePrice": { + "id": "inputTable.acquisition.groupPurchasePrice", + "defaultMessage": "Group purchase price" + }, + "objectOfferPrice": { + "id": "inputTable.acquisition.objectOfferPrice", + "defaultMessage": "Object offer price" + }, + "objectPurchaseOfferPrice": { + "id": "inputTable.acquisition.objectPurchaseOfferPrice", + "defaultMessage": "Object purchaser offer price" + }, + "objectPurchasePrice": { + "id": "inputTable.acquisition.objectPurchasePrice", + "defaultMessage": "Object purchase price" + }, + "originalObjectPurchasePrice": { + "id": "inputTable.acquisition.originalObjectPurchasePrice", + "defaultMessage": "Original object purchase price" + } + } + }, + "serviceConfig": { + "serviceName": "Acquisition", + "servicePath": "acquisitions", + "serviceType": "procedure", + "objectName": "Acquisition", + "documentName": "acquisitions" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:acquisitions_common/acquisitionReferenceNumber" + }, + { + "op": "range", + "path": "ns2:acquisitions_common/accessionDateGroup" + }, + { + "op": "range", + "path": "ns2:acquisitions_common/acquisitionDateGroupList/acquisitionDateGroup" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionMethod" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionSources/acquisitionSource" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionFundingList/acquisitionFunding/acquisitionFundingSource" + }, + { + "op": "cont", + "path": "ns2:acquisitions_common/creditLine" + }, + { + "op": "cont", + "path": "ns2:acquisitions_common/fieldCollectionEventNames/fieldCollectionEventName" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "acquisitionReferenceNumber": { + "messages": { + "label": { + "id": "column.acquisition.default.acquisitionReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "acquisitions_common:acquisitionReferenceNumber", + "width": 250 + }, + "acquisitionSource": { + "messages": { + "label": { + "id": "column.acquisition.default.acquisitionSource", + "defaultMessage": "Acquisition source" + } + }, + "order": 20, + "sortBy": "acquisitions_common:acquisitionSources/0", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.acquisition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:acquisitions_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:acquisitions_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:acquisitions_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/acquisition" + } + }, + "acquisitionReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.acquisitions_common.acquisitionReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.acquisitions_common.acquisitionReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "accession,archives,library" + } + } + } + }, + "accessionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "acquisitionAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "acquisitionAuthorizerDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionAuthorizerDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.acquisitions_common.acquisitionAuthorizerDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "acquisitionDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "acquisitionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionMethod.name", + "defaultMessage": "Acquisition method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "acquisitionMethods" + } + } + } + }, + "acquisitionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionSource": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionSource.name", + "defaultMessage": "Acquisition source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "owners": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.owner.name", + "defaultMessage": "Owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "transferOfTitleNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.transferOfTitleNumber.name", + "defaultMessage": "Transfer of title number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "approvalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.approvalGroup.name", + "defaultMessage": "Approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalGroup.approvalGroup.fullName", + "defaultMessage": "Approval group" + }, + "name": { + "id": "field.acquisitions_common.approvalGroup.approvalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "approvalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalIndividual.fullName", + "defaultMessage": "Approval individual" + }, + "name": { + "id": "field.acquisitions_common.approvalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "approvalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalStatus.fullName", + "defaultMessage": "Approval status" + }, + "name": { + "id": "field.acquisitions_common.approvalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "approvalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalDate.fullName", + "defaultMessage": "Approval status date" + }, + "name": { + "id": "field.acquisitions_common.approvalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "approvalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.approvalNote.name", + "defaultMessage": "Note" + }, + "fullName": { + "id": "field.acquisitions_common.approvalNote.fullName", + "defaultMessage": "Approval note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "groupPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.groupPurchasePriceCurrency.fullName", + "defaultMessage": "Group purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.groupPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "groupPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.groupPurchasePriceValue.fullName", + "defaultMessage": "Group purchase price value" + }, + "name": { + "id": "field.acquisitions_common.groupPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectOfferPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectOfferPriceCurrency.fullName", + "defaultMessage": "Object offer price currency" + }, + "name": { + "id": "field.acquisitions_common.objectOfferPriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectOfferPriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectOfferPriceValue.fullName", + "defaultMessage": "Object offer price value" + }, + "name": { + "id": "field.acquisitions_common.objectOfferPriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectPurchaseOfferPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceCurrency.fullName", + "defaultMessage": "Object purchaser offer price currency" + }, + "name": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectPurchaseOfferPriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceValue.fullName", + "defaultMessage": "Object purchaser offer price value" + }, + "name": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchasePriceCurrency.fullName", + "defaultMessage": "Object purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.objectPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchasePriceValue.fullName", + "defaultMessage": "Object purchase price value" + }, + "name": { + "id": "field.acquisitions_common.objectPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "originalObjectPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.originalObjectPurchasePriceCurrency.fullName", + "defaultMessage": "Original object purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.originalObjectPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "originalObjectPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.originalObjectPurchasePriceValue.fullName", + "defaultMessage": "Original object purchase price value" + }, + "name": { + "id": "field.acquisitions_common.originalObjectPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "acquisitionReason": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionReason.name", + "defaultMessage": "Acquisition reason" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionProvisos": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionProvisos.name", + "defaultMessage": "Provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionFundingList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionFunding": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionFunding.name", + "defaultMessage": "Funding" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "acquisitionFundingCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingCurrency.fullName", + "defaultMessage": "Funding currency" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "acquisitionFundingValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingValue.fullName", + "defaultMessage": "Funding value" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "acquisitionFundingSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingSource.fullName", + "defaultMessage": "Funding source" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "acquisitionFundingSourceProvisos": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingSourceProvisos.fullName", + "defaultMessage": "Funding source provisos" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingSourceProvisos.name", + "defaultMessage": "Source provisos" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldCollectionEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.fieldCollectionEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.acquisition.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionAuthorizer", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionAuthorizerDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transferOfTitleNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "priceInformation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionReason" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionProvisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFunding", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingSourceProvisos" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectCollectionInformation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventName" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "acquisition" + }, + "all": { + "messages": { + "record": { + "name": { + "id": "record.all.name", + "defaultMessage": "Record" + }, + "collectionName": { + "id": "record.all.collectionName", + "defaultMessage": "All Records" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/common/items", + "serviceType": "utility", + "objectName": "ServiceGroup/All" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "docNumber": { + "messages": { + "label": { + "id": "column.all.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 20, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.all.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 30, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.all.default.docType", + "defaultMessage": "Type" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.all.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "all" + }, + "audit": { + "messages": { + "record": { + "name": { + "id": "record.audit.name", + "defaultMessage": "Audit" + }, + "collectionName": { + "id": "record.audit.collectionName", + "defaultMessage": "Audits" + } + }, + "panel": { + "info": { + "id": "panel.audit.info", + "defaultMessage": "Audit Information" + }, + "change": { + "id": "panel.audit.change", + "defaultMessage": "Record Change Information" + } + } + }, + "serviceConfig": { + "serviceName": "Audits", + "servicePath": "audit", + "serviceType": "audit", + "objectName": "Audit", + "documentName": "audits" + }, + "fields": { + "ns3:audit_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/audit" + }, + "view": { + "type": "CompoundInput" + } + }, + "csid": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.csid.name", + "defaultMessage": "Audit record identifier" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "idNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.audit_common.idNumber.fullName", + "defaultMessage": "Audit record id" + }, + "name": { + "id": "field.audit_common.idNumber.name", + "defaultMessage": "Id" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "resourceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.audit_common.resourceType.fullName", + "defaultMessage": "Related record type" + }, + "name": { + "id": "field.audit_common.resourceType.name", + "defaultMessage": "Record type" + } + }, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + }, + "resourceCSID": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.resourceCSID.name", + "defaultMessage": "Audited record identifier" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "saveMessage": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.saveMessage.name", + "defaultMessage": "Save message" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventComment": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.eventComment.name", + "defaultMessage": "Event comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventType": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.eventType.name", + "defaultMessage": "Audit event type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "eventTypes", + "readOnly": true + } + } + } + }, + "principal": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.principal.name", + "defaultMessage": "Updated by" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventDate": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.audit_common.eventDate.name", + "defaultMessage": "Updated at" + } + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "fieldChangedGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldChangedGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "key": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.key.name", + "defaultMessage": "Key" + } + }, + "view": { + "type": "FieldTextInput", + "props": { + "readOnly": true + } + } + } + }, + "fieldName": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.fieldName.name", + "defaultMessage": "Field" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "originalValue": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.originalValue.name", + "defaultMessage": "Original value" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true, + "readOnly": true + } + } + } + }, + "newValue": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.newValue.name", + "defaultMessage": "New value" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true, + "readOnly": true + } + } + } + }, + "changeReason": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.changeReason.name", + "defaultMessage": "Change reason" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.audit.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "csid" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "resourceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "resourceCSID" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "principal" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "eventDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "eventType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "change", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldChangedGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldChangedGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "key" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "newValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "columns": { + "default": { + "principal": { + "messages": { + "label": { + "id": "column.audit.default.updatedBy", + "defaultMessage": "By" + } + }, + "order": 10, + "width": 450 + }, + "eventDate": { + "messages": { + "label": { + "id": "column.audit.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "width": 150 + } + } + }, + "name": "audit" + }, + "authority": { + "messages": { + "record": { + "name": { + "id": "record.authority.name", + "defaultMessage": "Authority Item" + }, + "collectionName": { + "id": "record.authority.collectionName", + "defaultMessage": "Authority Items" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/authority/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Authority" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "docName": { + "messages": { + "label": { + "id": "column.authority.default.docName", + "defaultMessage": "Item" + } + }, + "order": 10, + "width": 200 + }, + "docType": { + "messages": { + "label": { + "id": "column.authority.default.docType", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.authority.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.authority.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "authority" + }, + "authrole": { + "messages": { + "record": { + "name": { + "id": "record.authrole.name", + "defaultMessage": "Role" + }, + "collectionName": { + "id": "record.authrole.collectionName", + "defaultMessage": "Roles" + } + } + }, + "serviceConfig": { + "servicePath": "authorization/roles", + "serviceType": "security" + }, + "columns": { + "default": { + "displayName": { + "messages": { + "label": { + "id": "column.authRole.default.displayName", + "defaultMessage": "Name" + } + }, + "order": 10, + "width": 250 + } + } + }, + "deletePermType": "hard", + "fields": { + "ns2:role": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/authorization" + }, + "view": { + "type": "CompoundInput" + } + }, + "@csid": { + "[config]": { + "cloneable": false + } + }, + "createdAt": { + "[config]": { + "cloneable": false + } + }, + "updatedAt": { + "[config]": { + "cloneable": false + } + }, + "metadataProtection": { + "[config]": { + "cloneable": false + } + }, + "permsProtection": { + "[config]": { + "cloneable": false + } + }, + "displayName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.authrole.displayName.name", + "defaultMessage": "Name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.authrole.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "roleName": { + "[config]": { + } + }, + "permission": { + "[config]": { + "messages": { + "name": { + "id": "field.authrole.permission.name", + "defaultMessage": "Permissions" + } + }, + "view": { + "type": "PermissionsInput" + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.authrole.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "ns2:role", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "displayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "description" + }, + "_owner": null + }, + { + "type": "input", + "key": null, + "ref": null, + "props": { + "type": "text", + "style": { + "display": "none" + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "permission" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "authrole" + }, + "batch": { + "messages": { + "record": { + "name": { + "id": "record.batch.name", + "defaultMessage": "Data Update" + }, + "collectionName": { + "id": "record.batch.collectionName", + "defaultMessage": "Data Updates" + }, + "invokeUnsaved": { + "id": "record.batch.invokeUnsaved", + "defaultMessage": "This record has changes that have not been saved. The data update will not include any unsaved data." + }, + "singleTargetMissing": { + "id": "record.batch.singleTargetMissing", + "defaultMessage": "Select a record on which to run this data update." + }, + "listTargetMissing": { + "id": "record.batch.listTargetMissing", + "defaultMessage": "Select one or more records on which to run this data update." + }, + "groupTargetMissing": { + "id": "record.batch.groupTargetMissing", + "defaultMessage": "Select a group on which to run this data update." + } + }, + "panel": { + "mode": { + "id": "panel.batch.mode", + "defaultMessage": "Runs on" + } + } + }, + "serviceConfig": { + "servicePath": "batch", + "serviceType": "utility" + }, + "columns": { + "default": { + "name": { + "messages": { + "label": { + "id": "column.batch.default.name", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "batch_common:name", + "width": 400 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:batch_common" + } + } + }, + "ns2:batch_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/batch" + }, + "view": { + "type": "CompoundInput" + } + }, + "name": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "className": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.className.name", + "defaultMessage": "Java class" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "notes": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.notes.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "supportsNoContext": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsNoContext.name", + "defaultMessage": "All records" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsGroup": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsDocList": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsDocList.name", + "defaultMessage": "Record list" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsSingleDoc": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsSingleDoc.name", + "defaultMessage": "Single record" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "forDocTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "forDocType": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.forDocType.name", + "defaultMessage": "For record type" + } + }, + "repeating": true, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + } + }, + "createsNewFocus": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.createsNewFocus.name", + "defaultMessage": "Navigate to new record when complete" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.batch.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "className" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mode", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "supportsNoContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsDocList" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsSingleDoc" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "createsNewFocus" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "batch" + }, + "batchinvocation": { + "messages": { + "record": { + "name": { + "id": "record.batchinvocation.name", + "defaultMessage": "Data Update Invocation" + }, + "collectionName": { + "id": "record.batchinvocation.collectionName", + "defaultMessage": "Data Update Invocations" + } + } + }, + "serviceConfig": { + "servicePath": "batch/invoke", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "batchinvocation" + }, + "blob": { + "content": { + "popup": { + "subresource": "original" + }, + "preview": { + "subresource": "derivativeThumbnail" + }, + "snapshot": { + "subresource": "derivativeMedium" + }, + "thumbnail": { + "subresource": "derivativeThumbnail" + } + }, + "messages": { + "record": { + "name": { + "id": "record.blob.name", + "defaultMessage": "Blob" + }, + "collectionName": { + "id": "record.blob.collectionName", + "defaultMessage": "Blobs" + } + } + }, + "serviceConfig": { + "serviceName": "Blobs", + "servicePath": "blobs", + "serviceType": "utility", + "objectName": "Blob", + "documentName": "blobs" + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:blobs_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:blobs_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:blobs_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/blob" + } + }, + "file": { + "[config]": { + "view": { + "type": "UploadInput" + } + } + }, + "name": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "length": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.length.name", + "defaultMessage": "Size" + }, + "value": { + "id": "field.blobs_common.length.value", + "defaultMessage": "{value, number} bytes" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "mimeType": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.mimeType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.blob.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0 + }, + "upload": { + "messages": { + "name": { + "id": "form.blob.upload.name", + "defaultMessage": "Upload Template" + } + }, + "sortOrder": 2, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "file" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "view": { + "messages": { + "name": { + "id": "form.blob.view.name", + "defaultMessage": "View Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mimeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "length" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "createdAt", + "subpath": "ns2:collectionspace_core" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "updatedAt", + "subpath": "ns2:collectionspace_core" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "blob" + }, + "citation": { + "messages": { + "record": { + "name": { + "id": "record.citation.name", + "defaultMessage": "Citation" + }, + "collectionName": { + "id": "record.citation.collectionName", + "defaultMessage": "Citations" + } + }, + "panel": { + "info": { + "id": "panel.citation.info", + "defaultMessage": "Citation Information" + }, + "hierarchy": { + "id": "panel.citation.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.citation.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Citations", + "servicePath": "citationauthorities", + "serviceType": "authority", + "objectName": "Citation", + "documentName": "citations" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.citation.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.citation.all.collectionName", + "defaultMessage": "All Citations" + }, + "itemName": { + "id": "vocab.citation.all.itemName", + "defaultMessage": "Citation" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.citation.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.citation.local.collectionName", + "defaultMessage": "Local Citations" + }, + "itemName": { + "id": "vocab.citation.local.itemName", + "defaultMessage": "Local Citation" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(citation)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "worldcat": { + "messages": { + "name": { + "id": "vocab.citation.worldcat.name", + "defaultMessage": "WorldCat" + }, + "collectionName": { + "id": "vocab.citation.worldcat.collectionName", + "defaultMessage": "WorldCat Citations" + }, + "itemName": { + "id": "vocab.citation.worldcat.itemName", + "defaultMessage": "WorldCat Citation" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(worldcat)" + }, + "name": "worldcat", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termType" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termLanguage" + }, + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termFullCitation" + }, + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termTitle" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.citation.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "citations_common:citationTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.citation.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "citations_common:citationTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.citation.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.citation.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:citations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.citation.parent", + "defaultMessage": "Broader citation" + }, + "children": { + "id": "hierarchyInput.citation.children", + "defaultMessage": "Narrower citations" + }, + "siblings": { + "id": "hierarchyInput.citation.siblings", + "defaultMessage": "Adjacent citations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:citations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:citations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "citationTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.citations_common.citationTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "citationTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.citations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.citations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.citations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermtype" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.citations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.citations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "citationTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.citations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.citations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.citations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.citations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termFullCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termFullCitation.fullName", + "defaultMessage": "Term full citation" + }, + "name": { + "id": "field.citations_common.termFullCitation.name", + "defaultMessage": "Full citation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termTitle.fullName", + "defaultMessage": "Term title" + }, + "name": { + "id": "field.citations_common.termTitle.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSubTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSubTitle.fullName", + "defaultMessage": "Term subtitle" + }, + "name": { + "id": "field.citations_common.termSubTitle.name", + "defaultMessage": "Subtitle" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSectionTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSectionTitle.fullName", + "defaultMessage": "Term section title" + }, + "name": { + "id": "field.citations_common.termSectionTitle.name", + "defaultMessage": "Section title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termVolume": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termVolume.fullName", + "defaultMessage": "Term volume" + }, + "name": { + "id": "field.citations_common.termVolume.name", + "defaultMessage": "Volume" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termIssue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termIssue.fullName", + "defaultMessage": "Term issue" + }, + "name": { + "id": "field.citations_common.termIssue.name", + "defaultMessage": "Issue" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.citations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.citations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.citations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.citations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.citations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.citations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.citations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.citations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationRecordType.name", + "defaultMessage": "Citation type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermtype" + } + } + } + } + }, + "citationPublicationInfoGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationPublicationInfoGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationPublicationInfoGroup.name", + "defaultMessage": "Publication" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "publisher": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.publisher.name", + "defaultMessage": "Publisher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "publicationPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.publicationPlace.fullName", + "defaultMessage": "Publication place" + }, + "name": { + "id": "field.citations_common.publicationPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "publicationDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "edition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.edition.fullName", + "defaultMessage": "Publication edition" + }, + "name": { + "id": "field.citations_common.edition.name", + "defaultMessage": "Edition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pages": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.pages.fullName", + "defaultMessage": "Publication page(s)" + }, + "name": { + "id": "field.citations_common.pages.name", + "defaultMessage": "Page(s)" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationAgentInfoGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationAgentInfoGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationAgentInfoGroup.name", + "defaultMessage": "Agent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "agent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.agent.fullName", + "defaultMessage": "Agent name" + }, + "name": { + "id": "field.citations_common.agent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/ulan,organization/local" + } + } + } + }, + "role": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.role.fullName", + "defaultMessage": "Agent role" + }, + "name": { + "id": "field.citations_common.role.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agentinfotype" + } + } + } + }, + "note": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.note.fullName", + "defaultMessage": "Agent note" + }, + "name": { + "id": "field.citations_common.note.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "citationResourceIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationResourceIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationResourceIdentGroup.name", + "defaultMessage": "Resource identifier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "resourceIdent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.resourceIdent.fullName", + "defaultMessage": "Resource identifier" + }, + "name": { + "id": "field.citations_common.resourceIdent.name", + "defaultMessage": "Identifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "type": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.type.fullName", + "defaultMessage": "Resource identifier type" + }, + "name": { + "id": "field.citations_common.type.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "resourceidtype" + } + } + } + }, + "captureDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + } + }, + "citationRelatedTermsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationRelatedTermsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationRelatedTermsGroup.name", + "defaultMessage": "Related term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "relatedTerm": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.relatedTerm.fullName", + "defaultMessage": "Related term" + }, + "name": { + "id": "field.citations_common.relatedTerm.name", + "defaultMessage": "Term" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated,concept/activity,concept/material" + } + } + } + }, + "relationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.relationType.fullName", + "defaultMessage": "Related term type" + }, + "name": { + "id": "field.citations_common.relationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "relationtypetype" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.citation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "citationTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFullCitation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSubTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSectionTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termVolume" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termIssue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationPublicationInfoGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationPublicationInfoGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publicationPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publicationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "edition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "pages" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationAgentInfoGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationAgentInfoGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "agent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "role" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "note" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationResourceIdentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationResourceIdentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "resourceIdent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "captureDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationRelatedTermsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationRelatedTermsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relatedTerm" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "relationType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.citation.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFullCitation", + "subpath": [ + "ns2:citations_common", + "citationTermGroupList", + "citationTermGroup", + 0 + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termTitle", + "subpath": [ + "ns2:citations_common", + "citationTermGroupList", + "citationTermGroup", + 0 + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "citation" + }, + "chronology": { + "messages": { + "record": { + "name": { + "id": "record.chronology.name", + "defaultMessage": "Chronology" + }, + "collectionName": { + "id": "record.chronology.collectionName", + "defaultMessage": "Chronologies" + } + }, + "panel": { + "info": { + "id": "panel.chronology.info", + "defaultMessage": "Chronology Information" + }, + "altdate": { + "id": "panel.chronology.altdate", + "defaultMessage": "Alternative Date Information" + }, + "hierarchy": { + "id": "panel.chronology.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.chronology.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Chronologies", + "servicePath": "chronologyauthorities", + "serviceType": "authority", + "objectName": "Chronology", + "documentName": "chronologies" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.chronology.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.chronology.all.collectionName", + "defaultMessage": "All Chronologies" + }, + "itemName": { + "id": "vocab.chronology.all.itemName", + "defaultMessage": "Chronology" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "era": { + "messages": { + "name": { + "id": "vocab.chronology.era.name", + "defaultMessage": "Era" + }, + "collectionName": { + "id": "vocab.chronology.era.collectionName", + "defaultMessage": "Era Chronologies" + }, + "itemName": { + "id": "vocab.chronology.era.itemName", + "defaultMessage": "Era Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(era)" + }, + "sortOrder": 0, + "name": "era", + "disableAltTerms": false + }, + "event": { + "messages": { + "name": { + "id": "vocab.chronology.event.name", + "defaultMessage": "Event" + }, + "collectionName": { + "id": "vocab.chronology.event.collectionName", + "defaultMessage": "Event Chronologies" + }, + "itemName": { + "id": "vocab.chronology.event.itemName", + "defaultMessage": "Event Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(event)" + }, + "name": "event", + "disableAltTerms": false + }, + "fieldcollection": { + "messages": { + "name": { + "id": "vocab.chronology.fieldcollection.name", + "defaultMessage": "Field Collection" + }, + "collectionName": { + "id": "vocab.chronology.fieldcollection.collectionName", + "defaultMessage": "Field Collection Chronologies" + }, + "itemName": { + "id": "vocab.chronology.fieldcollection.itemName", + "defaultMessage": "Field Collection Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(field_collection)" + }, + "name": "fieldcollection", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termType" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termLanguage" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.chronology.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "chronologies_common:citationTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.chronology.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "chronologies_common:citationTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.chronology.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.chronology.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:chronologies_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.chronology.parent", + "defaultMessage": "Broader chronology" + }, + "children": { + "id": "hierarchyInput.chronology.children", + "defaultMessage": "Narrower chronologies" + }, + "siblings": { + "id": "hierarchyInput.chronology.siblings", + "defaultMessage": "Adjacent chronologies" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:chronologies_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:chronologies_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "chronologyTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.chronologies_common.chronologyTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "chronologyTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.chronologies_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.chronologies_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.chronologies_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermtype" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.chronologies_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.chronologies_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermstatus" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.chronologies_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyhistoricalstatus" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.chronologies_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.chronologies_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.chronologies_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.chronologies_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.chronologies_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.chronologies_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.chronologies_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.chronologies_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.chronologies_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.chronologies_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.chronologies_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.chronologies_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "primaryDateRangeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "spatialCoverages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "spatialCoverage": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.spatialCoverage.name", + "defaultMessage": "Spatial coverage" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + } + }, + "chronologyType": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyType.name", + "defaultMessage": "Chronology type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytypes" + } + } + } + }, + "chronologyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyNote.name", + "defaultMessage": "Chronology note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "chronologyDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyDescription.name", + "defaultMessage": "Chronology description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "identifierGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "identifierGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.identifierGroup.name", + "defaultMessage": "Resource identifier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "identifierValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierValue.fullName", + "defaultMessage": "Resource identifier value" + }, + "name": { + "id": "field.chronologies_common.identifierValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "identifierCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierCitation.fullName", + "defaultMessage": "Resource identifier citation" + }, + "name": { + "id": "field.chronologies_common.identifierCitation.name", + "defaultMessage": "Citation" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "identifierDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierDate.fullName", + "defaultMessage": "Resource identifier date" + }, + "name": { + "id": "field.chronologies_common.identifierDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "altDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.altDateGroup.name", + "defaultMessage": "Alternative date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "altDateRangeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "altDateSpatialCoverages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateSpatialCoverage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateSpatialCoverage.fullName", + "defaultMessage": "Alternative date spatial coverage" + }, + "name": { + "id": "field.chronologies_common.altDateSpatialCoverage.name", + "defaultMessage": "Spatial coverage" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + } + }, + "altDateCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateCitation.fullName", + "defaultMessage": "Alternative date citation" + }, + "name": { + "id": "field.chronologies_common.altDateCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "altDateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateNote.fullName", + "defaultMessage": "Alternative date note" + }, + "name": { + "id": "field.chronologies_common.altDateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.chronology.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronologyTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "chronologyTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "primaryDateRangeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "spatialCoverages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "spatialCoverage" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronologyDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "identifierGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identifierValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierCitation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altdate", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "altDateRangeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altDateSpatialCoverages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateSpatialCoverage" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "altDateCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.chronology.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "chronology" + }, + "collectionobject": { + "messages": { + "record": { + "name": { + "id": "record.collectionobject.name", + "defaultMessage": "Object" + }, + "collectionName": { + "id": "record.collectionobject.collectionName", + "defaultMessage": "Objects" + } + }, + "panel": { + "id": { + "id": "panel.collectionobject.id", + "defaultMessage": "Object Identification Information" + }, + "desc": { + "id": "panel.collectionobject.desc", + "defaultMessage": "Object Description Information" + }, + "content": { + "id": "panel.collectionobject.content", + "defaultMessage": "Content" + }, + "textInscript": { + "id": "panel.collectionobject.textInscript", + "defaultMessage": "Textual Inscription" + }, + "nonTextInscript": { + "id": "panel.collectionobject.nonTextInscript", + "defaultMessage": "Non-Textual Inscription" + }, + "prod": { + "id": "panel.collectionobject.prod", + "defaultMessage": "Object Production Information" + }, + "hist": { + "id": "panel.collectionobject.hist", + "defaultMessage": "Object History and Association Information" + }, + "assoc": { + "id": "panel.collectionobject.assoc", + "defaultMessage": "Associations" + }, + "owner": { + "id": "panel.collectionobject.owner", + "defaultMessage": "Object Owner's Contribution Information" + }, + "viewer": { + "id": "panel.collectionobject.viewer", + "defaultMessage": "Object Viewer's Contribution Information" + }, + "reference": { + "id": "panel.collectionobject.reference", + "defaultMessage": "Reference Information" + }, + "collect": { + "id": "panel.collectionobject.collect", + "defaultMessage": "Object Collection Information" + }, + "hierarchy": { + "id": "panel.collectionobject.hierarchy", + "defaultMessage": "Hierarchy" + }, + "software": { + "id": "panel.collectionobject.software", + "defaultMessage": "Technical Specifications: Software/Web" + }, + "avTechSpecs": { + "id": "panel.collectionobject.avTechSpecs", + "defaultMessage": "Technical Specifications: Audio/Video/Still" + }, + "rights": { + "id": "panel.collectionobject.rights", + "defaultMessage": "Rights Management Information" + }, + "rightsin": { + "id": "panel.collectionobject.rightsin", + "defaultMessage": "Rights In Management Information" + }, + "bio": { + "id": "panel.collectionobject.bio", + "defaultMessage": "Biological Information" + }, + "commingledRemains": { + "id": "panel.collectionobject.commingledRemains", + "defaultMessage": "Commingled Remains" + }, + "locality": { + "id": "panel.collectionobject.locality", + "defaultMessage": "Locality Information" + }, + "culturalCare": { + "id": "panel.collectionobject.culturalCare", + "defaultMessage": "Cultural Care Information" + }, + "georefDetail": { + "id": "panel.ext.locality.georefDetail", + "defaultMessage": "Georeference Detail" + }, + "nagpraCompliance": { + "id": "panel.ext.nagpra.nagpraCompliance", + "defaultMessage": "Repatriation and NAGPRA Compliance Information" + } + }, + "inputTable": { + "age": { + "id": "inputTable.collectionobject.age", + "defaultMessage": "Age" + }, + "assocEvent": { + "id": "inputTable.collectionobject.assocEvent", + "defaultMessage": "Associated event" + }, + "ownershipExchange": { + "id": "inputTable.collectionobject.ownershipExchange", + "defaultMessage": "Ownership exchange" + }, + "behrensmeyer": { + "id": "inputTable.collectionobject.behrensmeyer", + "defaultMessage": "Behrensmeyer stage" + }, + "depth": { + "id": "inputTable.ext.locality.depth", + "defaultMessage": "Depth" + }, + "elevation": { + "id": "inputTable.ext.locality.elevation", + "defaultMessage": "Elevation" + }, + "distanceAboveSurface": { + "id": "inputTable.ext.locality.distanceAboveSurface", + "defaultMessage": "Distance above surface" + }, + "nagpraReportFiled": { + "id": "panel.ext.nagpra.nagpraReportFiled", + "defaultMessage": "Reported to National NAGPRA" + }, + "taxonName": { + "id": "inputTable.collectionobject.taxonName", + "defaultMessage": "Taxonomic identification" + }, + "taxonIdent": { + "id": "inputTable.collectionobject.taxonIdent", + "defaultMessage": "Identification by" + }, + "taxonReference": { + "id": "inputTable.collectionobject.taxonReference", + "defaultMessage": "Reference" + } + } + }, + "serviceConfig": { + "serviceName": "CollectionObjects", + "servicePath": "collectionobjects", + "serviceType": "object", + "objectName": "CollectionObject", + "documentName": "collectionobjects" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionobjects_common/objectNumber" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/responsibleDepartments/responsibleDepartment" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/collection" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/recordStatus" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/objectNameList/objectNameGroup/objectName" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/materialGroupList/materialGroup/material" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/titleGroupList/titleGroup/title" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/fieldColEventNames/fieldColEventName" + }, + { + "op": "range", + "path": "ns2:collectionobjects_common/objectProductionDateGroupList/objectProductionDateGroup" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/techniqueGroupList/techniqueGroup/technique" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/objectProductionPlaceGroupList/objectProductionPlaceGroup/objectProductionPlace" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/objectProductionPeopleGroupList/objectProductionPeopleGroup/objectProductionPeople" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionPersonGroupList/objectProductionPersonGroup/objectProductionPerson" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionOrganizationGroupList/objectProductionOrganizationGroup/objectProductionOrganization" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/forms/form" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/editionNumber" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/styles/style" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectComponentGroupList/objectComponentGroup/objectComponentName" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/sex" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/phase" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/nonTextualInscriptionGroupList/nonTextualInscriptionGroup/inscriptionDescriptionInscriber" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/nonTextualInscriptionGroupList/nonTextualInscriptionGroup/inscriptionDescriptionMethod" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "objectNumber": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectNumber", + "defaultMessage": "Identification number" + } + }, + "order": 10, + "sortBy": "collectionobjects_common:objectNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.collectionobject.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:titleGroupList/0/title", + "width": 450, + "disabled": true + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.collectionobject.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + }, + "objectName": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectName", + "defaultMessage": "Object name" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:objectNameList/0/objectName", + "width": 450 + }, + "objectNameControlled": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectNameControlled", + "defaultMessage": "Controlled object name" + } + }, + "order": 25, + "sortBy": "collectionobjects_common:objectNameList/0/objectNameControlled", + "width": 450 + } + }, + "narrow": { + "objectNumber": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.objectNumber", + "defaultMessage": "ID" + } + }, + "order": 10, + "sortBy": "collectionobjects_common:objectNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "width": 450, + "disabled": true + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + }, + "objectName": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.objectName", + "defaultMessage": "Object name" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:objectNameList/0/objectName", + "width": 450 + } + } + }, + "defaultForSearch": true, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:collectionobjects_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:collectionobjects_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "parentTypeOptionListName": "objectParentTypes", + "childTypeOptionListName": "objectChildTypes", + "messages": { + "parent": { + "id": "hierarchyInput.collectionobject.parent", + "defaultMessage": "Broader object" + }, + "parentName": { + "id": "hierarchyInput.collectionobject.parentName", + "defaultMessage": "Object" + }, + "parentType": { + "id": "hierarchyInput.collectionobject.parentType", + "defaultMessage": "Type" + }, + "children": { + "id": "hierarchyInput.collectionobject.children", + "defaultMessage": "Component objects" + }, + "childName": { + "id": "hierarchyInput.collectionobject.childName", + "defaultMessage": "Object" + }, + "childType": { + "id": "hierarchyInput.collectionobject.childType", + "defaultMessage": "Type" + }, + "siblings": { + "id": "hierarchyInput.collectionobject.siblings", + "defaultMessage": "Adjacent objects" + } + } + } + } + } + } + }, + "ns2:collectionobjects_annotation": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/annotation" + } + }, + "annotationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "annotationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_annotation.annotationGroup.name", + "defaultMessage": "Annotation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "annotationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationType.fullName", + "defaultMessage": "Annotation type" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "annotationtype" + } + } + } + }, + "annotationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationNote.fullName", + "defaultMessage": "Annotation note" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "annotationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationDate.fullName", + "defaultMessage": "Annotation date" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "annotationAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationAuthor.fullName", + "defaultMessage": "Annotation author" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationAuthor.name", + "defaultMessage": "Author" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + } + } + }, + "ns2:collectionobjects_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject" + } + }, + "objectNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.collectionobjects_common.objectNumber.inUse", + "defaultMessage": "The identification number {value} is in use by another record." + }, + "name": { + "id": "field.collectionobjects_common.objectNumber.name", + "defaultMessage": "Identification number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "accession,intake,loanin" + } + } + } + }, + "numberOfObjects": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.collectionobjects_common.numberOfObjects.name", + "defaultMessage": "Number of objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "otherNumberList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.otherNumber.name", + "defaultMessage": "Other number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "numberValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberValue.fullName", + "defaultMessage": "Other number value" + }, + "name": { + "id": "field.collectionobjects_common.numberValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "numberType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberType.fullName", + "defaultMessage": "Other number type" + }, + "name": { + "id": "field.collectionobjects_common.numberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "numberTypes" + } + } + } + } + } + }, + "responsibleDepartments": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "responsibleDepartment": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.responsibleDepartment.name", + "defaultMessage": "Responsible department" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "departments" + } + } + } + } + }, + "collection": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.collection.name", + "defaultMessage": "Collection" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "collections" + } + } + } + }, + "namedCollections": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "namedCollection": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.namedCollection.name", + "defaultMessage": "Named collection" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "work/local" + } + } + } + } + }, + "recordStatus": { + "[config]": { + "defaultValue": "new", + "messages": { + "name": { + "id": "field.collectionobjects_common.recordStatus.name", + "defaultMessage": "Record status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "recordStatuses" + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "defaultValue": "urn:cspace:core.collectionspace.org:vocabularies:name(publishto):item:name(none)'None'", + "messages": { + "name": { + "id": "field.collectionobjects_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "inventoryStatusList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryStatus": { + "[config]": { + "defaultValue": "urn:cspace:core.collectionspace.org:vocabularies:name(inventorystatus):item:name(unknown)'unknown'", + "messages": { + "name": { + "id": "field.collectionobjects_common.inventoryStatus.name", + "defaultMessage": "Inventory status" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "inventorystatus" + } + } + } + } + }, + "briefDescriptions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "briefDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.briefDescription.name", + "defaultMessage": "Brief description" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "distinguishingFeatures": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.distinguishingFeatures.name", + "defaultMessage": "Distinguishing features" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "comments": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "comment": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.comment.name", + "defaultMessage": "Comment" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "computedCurrentLocation": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.collectionobjects_common.computedCurrentLocation.name", + "defaultMessage": "Computed current location" + } + }, + "searchView": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared", + "readOnly": true + } + } + } + }, + "titleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "titleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.titleGroup.name", + "defaultMessage": "Title" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "titleLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleLanguage.fullName", + "defaultMessage": "Title language" + }, + "name": { + "id": "field.collectionobjects_common.titleLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "titleTranslationSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "titleTranslationSubGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslationSubGroup.fullName", + "defaultMessage": "Title translation" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslationSubGroup.name", + "defaultMessage": "Translation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "titleTranslation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslation.fullName", + "defaultMessage": "Title translation" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslation.name", + "defaultMessage": "Translation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "titleTranslationLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslationLanguage.fullName", + "defaultMessage": "Title translation language" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslationLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + } + }, + "titleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleType.fullName", + "defaultMessage": "Title type" + }, + "name": { + "id": "field.collectionobjects_common.titleType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "titleTypes" + } + } + } + } + } + }, + "objectNameList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectNameGroup.name", + "defaultMessage": "Object name" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectName.fullName", + "defaultMessage": "Object name" + }, + "name": { + "id": "field.collectionobjects_common.objectName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectNameControlled": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameControlled.fullName", + "defaultMessage": "Object name controlled" + }, + "name": { + "id": "field.collectionobjects_common.objectNameControlled.name", + "defaultMessage": "Controlled" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/nomenclature" + } + } + } + }, + "objectNameCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameCurrency.fullName", + "defaultMessage": "Object name currency" + }, + "name": { + "id": "field.collectionobjects_common.objectNameCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameCurrencies" + } + } + } + }, + "objectNameLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameLevel.fullName", + "defaultMessage": "Object name level" + }, + "name": { + "id": "field.collectionobjects_common.objectNameLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameLevels" + } + } + } + }, + "objectNameSystem": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameSystem.fullName", + "defaultMessage": "Object name system" + }, + "name": { + "id": "field.collectionobjects_common.objectNameSystem.name", + "defaultMessage": "System" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameSystems" + } + } + } + }, + "objectNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameType.fullName", + "defaultMessage": "Object name type" + }, + "name": { + "id": "field.collectionobjects_common.objectNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameTypes" + } + } + } + }, + "objectNameLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameLanguage.fullName", + "defaultMessage": "Object name language" + }, + "name": { + "id": "field.collectionobjects_common.objectNameLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "objectNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameNote.fullName", + "defaultMessage": "Object name note" + }, + "name": { + "id": "field.collectionobjects_common.objectNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "copyNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.copyNumber.name", + "defaultMessage": "Copy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectStatusList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectStatus.name", + "defaultMessage": "Object status" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectStatuses" + } + } + } + } + }, + "sex": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.sex.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexes" + } + } + } + }, + "phase": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.phase.name", + "defaultMessage": "Phase" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "phases" + } + } + } + }, + "forms": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "form": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.form.name", + "defaultMessage": "Form" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "forms" + } + } + } + } + }, + "editionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.editionNumber.name", + "defaultMessage": "Edition number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "age": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.age.fullName", + "defaultMessage": "Age value" + }, + "name": { + "id": "field.collectionobjects_common.age.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "ageQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ageQualifier.fullName", + "defaultMessage": "Age qualifier" + }, + "name": { + "id": "field.collectionobjects_common.ageQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agequalifier" + } + } + } + }, + "ageUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ageUnit.fullName", + "defaultMessage": "Age unit" + }, + "name": { + "id": "field.collectionobjects_common.ageUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ageUnits" + } + } + } + }, + "styles": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "style": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.style.name", + "defaultMessage": "Style" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "colors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "color": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.color.name", + "defaultMessage": "Color" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "materialGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "materialGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.materialGroup.name", + "defaultMessage": "Material" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "material": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.material.name", + "defaultMessage": "Material" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialComponent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialComponent.fullName", + "defaultMessage": "Material component" + }, + "name": { + "id": "field.collectionobjects_common.materialComponent.name", + "defaultMessage": "Component" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialComponentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialComponentNote.fullName", + "defaultMessage": "Material component note" + }, + "name": { + "id": "field.collectionobjects_common.materialComponentNote.name", + "defaultMessage": "Component note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialName.fullName", + "defaultMessage": "Material name" + }, + "name": { + "id": "field.collectionobjects_common.materialName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialSource.fullName", + "defaultMessage": "Material source" + }, + "name": { + "id": "field.collectionobjects_common.materialSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialControlled": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialControlled.fullName", + "defaultMessage": "Material controlled" + }, + "name": { + "id": "field.collectionobjects_common.materialControlled.name", + "defaultMessage": "Controlled" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/material" + } + } + } + } + } + }, + "physicalDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.physicalDescription.name", + "defaultMessage": "Physical description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectComponentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectComponentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectComponentGroup.name", + "defaultMessage": "Object component" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectComponentName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectComponentName.fullName", + "defaultMessage": "Object component name" + }, + "name": { + "id": "field.collectionobjects_common.objectComponentName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectComponentNames" + } + } + } + }, + "objectComponentInformation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectComponentInformation.fullName", + "defaultMessage": "Object component information" + }, + "name": { + "id": "field.collectionobjects_common.objectComponentInformation.name", + "defaultMessage": "Information" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "technicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "technicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.technicalAttributeGroup.name", + "defaultMessage": "Technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "technicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttribute.fullName", + "defaultMessage": "Technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttribute.name", + "defaultMessage": "Attribute" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributes" + } + } + } + }, + "technicalAttributeMeasurement": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttributeMeasurement.fullName", + "defaultMessage": "Technical attribute measurement" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttributeMeasurement.name", + "defaultMessage": "Measurement" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributeMeasurements" + } + } + } + }, + "technicalAttributeMeasurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttributeMeasurementUnit.fullName", + "defaultMessage": "Technical attribute measurement unit" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttributeMeasurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributeMeasurementUnits" + } + } + } + } + } + }, + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject" + } + } + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDescription.fullName", + "defaultMessage": "Content description" + }, + "name": { + "id": "field.collectionobjects_common.contentDescription.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "contentLanguages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentLanguage.fullName", + "defaultMessage": "Content language" + }, + "name": { + "id": "field.collectionobjects_common.contentLanguage.name", + "defaultMessage": "Language" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + }, + "contentActivities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentActivity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentActivity.fullName", + "defaultMessage": "Content activity" + }, + "name": { + "id": "field.collectionobjects_common.contentActivity.name", + "defaultMessage": "Activity" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentConcepts": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentConcept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentConcept.fullName", + "defaultMessage": "Content concept" + }, + "name": { + "id": "field.collectionobjects_common.contentConcept.name", + "defaultMessage": "Concept" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated,concept/material,concept/material_shared" + } + } + } + } + }, + "contentDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contentPositions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPosition.fullName", + "defaultMessage": "Content position" + }, + "name": { + "id": "field.collectionobjects_common.contentPosition.name", + "defaultMessage": "Position" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + } + }, + "contentObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentObjectGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObjectGroup.fullName", + "defaultMessage": "Content object" + }, + "name": { + "id": "field.collectionobjects_common.contentObjectGroup.name", + "defaultMessage": "Object" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentObject": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObject.fullName", + "defaultMessage": "Content object name" + }, + "name": { + "id": "field.collectionobjects_common.contentObject.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentObjectType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObjectType.fullName", + "defaultMessage": "Content object type" + }, + "name": { + "id": "field.collectionobjects_common.contentObjectType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "contentObjectTypes" + } + } + } + } + } + }, + "contentPeoples": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPeople.fullName", + "defaultMessage": "Content people" + }, + "name": { + "id": "field.collectionobjects_common.contentPeople.name", + "defaultMessage": "People" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentPersons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPerson.fullName", + "defaultMessage": "Content person" + }, + "name": { + "id": "field.collectionobjects_common.contentPerson.name", + "defaultMessage": "Person" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + } + }, + "contentPlaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPlace.fullName", + "defaultMessage": "Content place" + }, + "name": { + "id": "field.collectionobjects_common.contentPlace.name", + "defaultMessage": "Place" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentScripts": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentScript": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentScript.fullName", + "defaultMessage": "Content script" + }, + "name": { + "id": "field.collectionobjects_common.contentScript.name", + "defaultMessage": "Script" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "scripts" + } + } + } + } + }, + "contentOrganizations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOrganization.fullName", + "defaultMessage": "Content organization" + }, + "name": { + "id": "field.collectionobjects_common.contentOrganization.name", + "defaultMessage": "Organization" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "contentEventNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentEventNameGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventNameGroup.fullName", + "defaultMessage": "Content event" + }, + "name": { + "id": "field.collectionobjects_common.contentEventNameGroup.name", + "defaultMessage": "Event" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentEventName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventName.fullName", + "defaultMessage": "Content event name" + }, + "name": { + "id": "field.collectionobjects_common.contentEventName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentEventNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventNameType.fullName", + "defaultMessage": "Content event type" + }, + "name": { + "id": "field.collectionobjects_common.contentEventNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentEvent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEvent.fullName", + "defaultMessage": "Content controlled event or period/era" + }, + "name": { + "id": "field.collectionobjects_common.contentEvent.name", + "defaultMessage": "Event or period/era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/event,chronology/era" + } + } + } + } + }, + "contentOtherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentOtherGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOtherGroup.fullName", + "defaultMessage": "Content other" + }, + "name": { + "id": "field.collectionobjects_common.contentOtherGroup.name", + "defaultMessage": "Other" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentOther": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOther.fullName", + "defaultMessage": "Content other name" + }, + "name": { + "id": "field.collectionobjects_common.contentOther.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentOtherType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOtherType.fullName", + "defaultMessage": "Content other type" + }, + "name": { + "id": "field.collectionobjects_common.contentOtherType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentNote.fullName", + "defaultMessage": "Content note" + }, + "name": { + "id": "field.collectionobjects_common.contentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "textualInscriptionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "textualInscriptionGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.textualInscriptionGroup.fullName", + "defaultMessage": "Textual inscription" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "inscriptionContent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContent.fullName", + "defaultMessage": "Textual inscription content" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContent.name", + "defaultMessage": "Inscription content" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionContentInscriber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentInscriber.fullName", + "defaultMessage": "Textual inscription inscriber" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentInscriber.name", + "defaultMessage": "Inscriber" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local,organization/shared" + } + } + } + }, + "inscriptionContentLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentLanguage.fullName", + "defaultMessage": "Textual inscription language" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "inscriptionContentDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "inscriptionContentPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentPosition.fullName", + "defaultMessage": "Textual inscription position" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentPosition.name", + "defaultMessage": "Position" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + }, + "inscriptionContentScript": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentScript.fullName", + "defaultMessage": "Textual inscription script" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentScript.name", + "defaultMessage": "Script" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "scripts" + } + } + } + }, + "inscriptionContentType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentType.fullName", + "defaultMessage": "Textual inscription type" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "inscriptionTypes" + } + } + } + }, + "inscriptionContentMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentMethod.fullName", + "defaultMessage": "Textual inscription method" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionContentInterpretation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentInterpretation.fullName", + "defaultMessage": "Textual inscription interpretation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentInterpretation.name", + "defaultMessage": "Interpretation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionContentTranslation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentTranslation.fullName", + "defaultMessage": "Textual inscription translation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentTranslation.name", + "defaultMessage": "Translation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionContentTransliteration": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentTransliteration.fullName", + "defaultMessage": "Textual inscription transliteration" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentTransliteration.name", + "defaultMessage": "Transliteration" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nonTextualInscriptionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nonTextualInscriptionGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.nonTextualInscriptionGroup.fullName", + "defaultMessage": "Non-textual inscription" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "inscriptionDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescription.fullName", + "defaultMessage": "Non-textual inscription description" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescription.name", + "defaultMessage": "Inscription description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionDescriptionInscriber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionInscriber.fullName", + "defaultMessage": "Non-textual inscription inscriber" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionInscriber.name", + "defaultMessage": "Inscriber" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "inscriptionDescriptionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "inscriptionDescriptionPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionPosition.fullName", + "defaultMessage": "Non-textual inscription position" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionPosition.name", + "defaultMessage": "Position" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + }, + "inscriptionDescriptionType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionType.fullName", + "defaultMessage": "Non-textual inscription type" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "inscriptionTypes" + } + } + } + }, + "inscriptionDescriptionMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionMethod.fullName", + "defaultMessage": "Non-textual inscription method" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionDescriptionInterpretation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionInterpretation.fullName", + "defaultMessage": "Non-textual inscription interpretation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionInterpretation.name", + "defaultMessage": "Interpretation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "objectProductionDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "objectProductionEras": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionEra": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionEra.name", + "defaultMessage": "Production era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/era" + } + } + } + } + }, + "techniqueGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "techniqueGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.techniqueGroup.name", + "defaultMessage": "Production technique" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "technique": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technique.fullName", + "defaultMessage": "Production technique" + }, + "name": { + "id": "field.collectionobjects_common.technique.name", + "defaultMessage": "Technique" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "techniqueType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.techniqueType.fullName", + "defaultMessage": "Production technique type" + }, + "name": { + "id": "field.collectionobjects_common.techniqueType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodtechniquetype" + } + } + } + } + } + }, + "objectProductionPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPlaceGroup.name", + "defaultMessage": "Production place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPlace.fullName", + "defaultMessage": "Production place" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,place/tgn" + } + } + } + }, + "objectProductionPlaceRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPlaceRole.fullName", + "defaultMessage": "Production place role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPlaceRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodplacerole" + } + } + } + } + } + }, + "objectProductionReasons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionReason": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionReason.name", + "defaultMessage": "Production reason" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "objectProductionPeopleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPeopleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPeopleGroup.name", + "defaultMessage": "Production people" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPeople.fullName", + "defaultMessage": "Production people" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPeople.name", + "defaultMessage": "People" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/archculture,concept/ethculture" + } + } + } + }, + "objectProductionPeopleRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPeopleRole.fullName", + "defaultMessage": "Production people role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPeopleRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodpeoplerole" + } + } + } + } + } + }, + "objectProductionPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPersonGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPersonGroup.name", + "defaultMessage": "Production person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPerson.fullName", + "defaultMessage": "Production person" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPerson.name", + "defaultMessage": "Person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "objectProductionPersonRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPersonRole.fullName", + "defaultMessage": "Production person role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPersonRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodpersonrole" + } + } + } + } + } + }, + "objectProductionOrganizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionOrganizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionOrganizationGroup.name", + "defaultMessage": "Production organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionOrganization.fullName", + "defaultMessage": "Production organization" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionOrganization.name", + "defaultMessage": "Organization" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "objectProductionOrganizationRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionOrganizationRole.fullName", + "defaultMessage": "Production organization role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionOrganizationRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodorgrole" + } + } + } + } + } + }, + "objectProductionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionNote.name", + "defaultMessage": "Production note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assocActivityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocActivityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocActivityGroup.name", + "defaultMessage": "Associated activity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocActivity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivity.fullName", + "defaultMessage": "Associated activity" + }, + "name": { + "id": "field.collectionobjects_common.assocActivity.name", + "defaultMessage": "Activity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocActivityType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivityType.fullName", + "defaultMessage": "Associated activity type" + }, + "name": { + "id": "field.collectionobjects_common.assocActivityType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocActivityNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivityNote.fullName", + "defaultMessage": "Associated activity note" + }, + "name": { + "id": "field.collectionobjects_common.assocActivityNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocObjectGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocObjectGroup.name", + "defaultMessage": "Associated object" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocObject": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObject.fullName", + "defaultMessage": "Associated object" + }, + "name": { + "id": "field.collectionobjects_common.assocObject.name", + "defaultMessage": "Object" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocObjectType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObjectType.fullName", + "defaultMessage": "Associated object type" + }, + "name": { + "id": "field.collectionobjects_common.assocObjectType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocObjectNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObjectNote.fullName", + "defaultMessage": "Associated object note" + }, + "name": { + "id": "field.collectionobjects_common.assocObjectNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocConceptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocConceptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocConceptGroup.name", + "defaultMessage": "Associated concept" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocConcept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConcept.fullName", + "defaultMessage": "Associated concept" + }, + "name": { + "id": "field.collectionobjects_common.assocConcept.name", + "defaultMessage": "Concept" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated" + } + } + } + }, + "assocConceptType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConceptType.fullName", + "defaultMessage": "Associated concept type" + }, + "name": { + "id": "field.collectionobjects_common.assocConceptType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocConceptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConceptNote.fullName", + "defaultMessage": "Associated concept note" + }, + "name": { + "id": "field.collectionobjects_common.assocConceptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocCulturalContextGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocCulturalContextGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocCulturalContextGroup.name", + "defaultMessage": "Associated cultural affinity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocCulturalContext": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContext.fullName", + "defaultMessage": "Associated cultural affinity" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContext.name", + "defaultMessage": "Cultural affinity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocCulturalContextType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContextType.fullName", + "defaultMessage": "Associated cultural affinity type" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContextType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocCulturalContextNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContextNote.fullName", + "defaultMessage": "Associated cultural affinity note" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContextNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocOrganizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocOrganizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocOrganizationGroup.name", + "defaultMessage": "Associated organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganization.fullName", + "defaultMessage": "Associated organization" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganization.name", + "defaultMessage": "Organization" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "assocOrganizationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganizationType.fullName", + "defaultMessage": "Associated organization type" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganizationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocOrganizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganizationNote.fullName", + "defaultMessage": "Associated organization note" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPeopleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPeopleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPeopleGroup.name", + "defaultMessage": "Associated people" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeople.fullName", + "defaultMessage": "Associated people" + }, + "name": { + "id": "field.collectionobjects_common.assocPeople.name", + "defaultMessage": "People" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPeopleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeopleType.fullName", + "defaultMessage": "Associated people type" + }, + "name": { + "id": "field.collectionobjects_common.assocPeopleType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPeopleNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeopleNote.fullName", + "defaultMessage": "Associated people note" + }, + "name": { + "id": "field.collectionobjects_common.assocPeopleNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPersonGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPersonGroup.name", + "defaultMessage": "Associated person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPerson.fullName", + "defaultMessage": "Associated person" + }, + "name": { + "id": "field.collectionobjects_common.assocPerson.name", + "defaultMessage": "Person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "assocPersonType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPersonType.fullName", + "defaultMessage": "Associated person type" + }, + "name": { + "id": "field.collectionobjects_common.assocPersonType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPersonNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPersonNote.fullName", + "defaultMessage": "Associated person note" + }, + "name": { + "id": "field.collectionobjects_common.assocPersonNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPlaceGroup.name", + "defaultMessage": "Associated place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlace.fullName", + "defaultMessage": "Associated place" + }, + "name": { + "id": "field.collectionobjects_common.assocPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPlaceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlaceType.fullName", + "defaultMessage": "Associated place type" + }, + "name": { + "id": "field.collectionobjects_common.assocPlaceType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPlaceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlaceNote.fullName", + "defaultMessage": "Associated place note" + }, + "name": { + "id": "field.collectionobjects_common.assocPlaceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocEventName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEventName.fullName", + "defaultMessage": "Associated event" + }, + "name": { + "id": "field.collectionobjects_common.assocEventName.name", + "defaultMessage": "Event" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocEventNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEventNameType.fullName", + "defaultMessage": "Associated event type" + }, + "name": { + "id": "field.collectionobjects_common.assocEventNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEvent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEvent.fullName", + "defaultMessage": "Associated controlled event or period/era" + }, + "name": { + "id": "field.collectionobjects_common.assocEvent.name", + "defaultMessage": "Event or period/era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/event,chronology/era" + } + } + } + } + }, + "assocEventOrganizations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventOrganization": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventOrganization.name", + "defaultMessage": "Associated event organization" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + }, + "assocEventPeoples": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPeople": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPeople.name", + "defaultMessage": "Associated event people" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "assocEventPersons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPerson": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPerson.name", + "defaultMessage": "Associated event person" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "assocEventPlaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPlace.name", + "defaultMessage": "Associated event place" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "assocEventNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventNote.name", + "defaultMessage": "Associated event note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocDateGroup.name", + "defaultMessage": "Associated date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "assocDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocDateType.fullName", + "defaultMessage": "Associated date type" + }, + "name": { + "id": "field.collectionobjects_common.assocDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocDateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocDateNote.fullName", + "defaultMessage": "Associated date note" + }, + "name": { + "id": "field.collectionobjects_common.assocDateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "objectHistoryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectHistoryNote.name", + "defaultMessage": "Object history note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "usageGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "usageGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.usageGroup.name", + "defaultMessage": "Usage" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "usage": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.usage.name", + "defaultMessage": "Usage" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "usageNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.usageNote.fullName", + "defaultMessage": "Usage note" + }, + "name": { + "id": "field.collectionobjects_common.usageNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "owners": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "searchDisabled": true + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.owner.name", + "defaultMessage": "Owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "ownershipDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "searchDisabled": true + }, + "ownershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "ownershipAccess": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipAccess.name", + "defaultMessage": "Ownership access" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipAccessLevels" + } + }, + "searchDisabled": true + } + }, + "ownershipCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipCategory.name", + "defaultMessage": "Ownership category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipCategories" + } + }, + "searchDisabled": true + } + }, + "ownershipPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipPlace.name", + "defaultMessage": "Ownership place" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownershipExchangeMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangeMethod.fullName", + "defaultMessage": "Ownership exchange method" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangeMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipExchangeMethods" + } + }, + "searchDisabled": true + } + }, + "ownershipExchangeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangeNote.fullName", + "defaultMessage": "Ownership exchange note" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownershipExchangePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangePriceCurrency.fullName", + "defaultMessage": "Ownership exchange price currency" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangePriceCurrency.name", + "defaultMessage": "Price currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + }, + "searchDisabled": true + } + }, + "ownershipExchangePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangePriceValue.fullName", + "defaultMessage": "Ownership exchange price value" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangePriceValue.name", + "defaultMessage": "Price value" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownersPersonalExperience": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersPersonalExperience.name", + "defaultMessage": "Owner's personal experience" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "ownersPersonalResponse": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersPersonalResponse.name", + "defaultMessage": "Owner's personal response" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "ownersReferences": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ownersReference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersReference.name", + "defaultMessage": "Owner's reference" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "ownersContributionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersContributionNote.name", + "defaultMessage": "Owner's contribution note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersRole": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersRole.name", + "defaultMessage": "Viewer's role" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "viewersPersonalExperience": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersPersonalExperience.name", + "defaultMessage": "Viewer's personal experience" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersPersonalResponse": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersPersonalResponse.name", + "defaultMessage": "Viewer's personal response" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersReferences": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "viewersReference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersReference.name", + "defaultMessage": "Viewer's reference" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "viewersContributionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersContributionNote.name", + "defaultMessage": "Viewer's contribution note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "referenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "referenceGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.referenceGroup.fullName", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.reference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "referenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.referenceNote.fullName", + "defaultMessage": "Reference note" + }, + "name": { + "id": "field.collectionobjects_common.referenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldCollectionSites": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSite": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionSite.name", + "defaultMessage": "Field collection site" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/archaeological" + } + } + } + } + }, + "fieldCollectionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "fieldCollectionMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionMethod.name", + "defaultMessage": "Field collection method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "collectionmethod" + } + } + } + } + }, + "fieldCollectionFeature": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionFeature.name", + "defaultMessage": "Field collection feature" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionNote.name", + "defaultMessage": "Field collection note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionNumber.name", + "defaultMessage": "Field collection number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,place/tgn" + } + } + } + }, + "fieldCollectionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSource": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionSource.name", + "defaultMessage": "Field collection source" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "fieldCollectors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollector": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollector.name", + "defaultMessage": "Field collector" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "fieldColEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldColEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldColEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "objectSignificanceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectSignificanceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectSignificanceGroup.name", + "defaultMessage": "Object significance" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assignedSignificance": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assignedSignificance.fullName", + "defaultMessage": "Object significance level" + }, + "name": { + "id": "field.collectionobjects_common.assignedSignificance.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assignedsignificance" + } + } + } + }, + "significanceAssignedBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedBy.fullName", + "defaultMessage": "Object significance assigned by" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedBy.name", + "defaultMessage": "Assigned by" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "significanceassignedby" + } + } + } + }, + "significanceAssignedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedDate.fullName", + "defaultMessage": "Object significance assigned date" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "significanceAssignedContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedContact.fullName", + "defaultMessage": "Object significance assigned contact" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + } + } + }, + "objectSuppliedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectSuppliedBy.name", + "defaultMessage": "Supplied by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + }, + "variableMediaComponentStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.variableMediaComponentStatus.name", + "defaultMessage": "Variable media component status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vmcomponentstatus" + } + } + } + }, + "credentialGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "credentialGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.credentialGroup.name", + "defaultMessage": "Credential" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "credentialType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialType.fullName", + "defaultMessage": "Credential type" + }, + "name": { + "id": "field.collectionobjects_common.credentialType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "credentialtype" + } + } + } + }, + "credentialRequiredForUse": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialRequiredForUse.fullName", + "defaultMessage": "Credential required for use" + }, + "name": { + "id": "field.collectionobjects_common.credentialRequiredForUse.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "credentialLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialLocation.fullName", + "defaultMessage": "Credential location" + }, + "name": { + "id": "field.collectionobjects_common.credentialLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "distributedLedgerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "distributedLedgerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.distributedLedgerGroup.name", + "defaultMessage": "Distributed ledger" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "distributedStorageLedger": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedStorageLedger.fullName", + "defaultMessage": "Distributed ledger type" + }, + "name": { + "id": "field.collectionobjects_common.distributedStorageLedger.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "distributedledgertype" + } + } + } + }, + "distributedLedgerParentIdentifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedLedgerParentIdentifier.fullName", + "defaultMessage": "Distributed ledger parent identifier" + }, + "name": { + "id": "field.collectionobjects_common.distributedLedgerParentIdentifier.name", + "defaultMessage": "Parent identifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distributedLedgerObjectIdentifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedLedgerObjectIdentifier.fullName", + "defaultMessage": "Distributed ledger object identifier" + }, + "name": { + "id": "field.collectionobjects_common.distributedLedgerObjectIdentifier.name", + "defaultMessage": "Object identifier" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "ledgerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ledgerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ledgerGroup.name", + "defaultMessage": "Ledger" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "ledger": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledger.fullName", + "defaultMessage": "Ledger type" + }, + "name": { + "id": "field.collectionobjects_common.ledger.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "ledgertype" + } + } + } + }, + "ledgerContractAddress": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledgerContractAddress.fullName", + "defaultMessage": "Ledger contract address" + }, + "name": { + "id": "field.collectionobjects_common.ledgerContractAddress.name", + "defaultMessage": "Contract address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "ledgerTokenID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledgerTokenID.fullName", + "defaultMessage": "Ledger token ID" + }, + "name": { + "id": "field.collectionobjects_common.ledgerTokenID.name", + "defaultMessage": "Token ID" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "intendedBehavior": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedBehavior.name", + "defaultMessage": "Intended behavior" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "programmingLanguageGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "programmingLanguageGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.programmingLanguageGroup.name", + "defaultMessage": "Programming language" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "programmingLanguageName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.programmingLanguageName.fullName", + "defaultMessage": "Programming language name" + }, + "name": { + "id": "field.collectionobjects_common.programmingLanguageName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "programminglanguage" + } + } + } + }, + "programmingLanguageVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.programmingLanguageVersion.fullName", + "defaultMessage": "Programming language version" + }, + "name": { + "id": "field.collectionobjects_common.programmingLanguageVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "utilizedSoftwareGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "utilizedSoftwareGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.utilizedSoftwareGroup.name", + "defaultMessage": "Utilized software" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "software": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.software.fullName", + "defaultMessage": "Utilized software name" + }, + "name": { + "id": "field.collectionobjects_common.software.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "utilizedsoftware" + } + } + } + }, + "softwareVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareVersion.fullName", + "defaultMessage": "Utilized software version" + }, + "name": { + "id": "field.collectionobjects_common.softwareVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "softwareLibraries": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "softwareLibrary": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.softwareLibrary.name", + "defaultMessage": "Library" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwarelibraries" + } + } + } + } + }, + "codeCompilers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "codeCompiler": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.codeCompiler.name", + "defaultMessage": "Compiler" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "compilers" + } + } + } + } + }, + "intendedOperatingSystemGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "intendedOperatingSystemGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystemGroup.name", + "defaultMessage": "Intended operating system" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "intendedOperatingSystem": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedOperatingSystem.fullName", + "defaultMessage": "Intended operating system name" + }, + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystem.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "operatingsystems" + } + } + } + }, + "intendedOperatingSystemVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedOperatingSystemVersion.fullName", + "defaultMessage": "Intended operating system version" + }, + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystemVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "intendedBrowserGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "intendedBrowserGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedBrowserGroup.name", + "defaultMessage": "Intended browser" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "intendedBrowser": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedBrowser.fullName", + "defaultMessage": "Itended browser name" + }, + "name": { + "id": "field.collectionobjects_common.intendedBrowser.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "webbrowsers" + } + } + } + }, + "intendedBrowserVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedBrowserVersion.fullName", + "defaultMessage": "Itended browser version" + }, + "name": { + "id": "field.collectionobjects_common.intendedBrowserVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "networkConnectionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "networkConnectionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.networkConnectionGroup.name", + "defaultMessage": "Network connection" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "networkConnectionRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.networkConnectionRequired.fullName", + "defaultMessage": "Network connection required" + }, + "name": { + "id": "field.collectionobjects_common.networkConnectionRequired.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "networkConnectionType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.networkConnectionType.fullName", + "defaultMessage": "Network connection type" + }, + "name": { + "id": "field.collectionobjects_common.networkConnectionType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "connectiontype" + } + } + } + } + } + }, + "domainGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "domainGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.domainGroup.name", + "defaultMessage": "Domain" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "domainName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainName.fullName", + "defaultMessage": "Domain name" + }, + "name": { + "id": "field.collectionobjects_common.domainName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "domainHost": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainHost.fullName", + "defaultMessage": "Domain host" + }, + "name": { + "id": "field.collectionobjects_common.domainHost.name", + "defaultMessage": "Host" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "domainType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainType.fullName", + "defaultMessage": "Domain type" + }, + "name": { + "id": "field.collectionobjects_common.domainType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "domaintype" + } + } + } + }, + "domainVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainVersion.fullName", + "defaultMessage": "Domain version" + }, + "name": { + "id": "field.collectionobjects_common.domainVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "domainOwner": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainOwner.fullName", + "defaultMessage": "Domain owner" + }, + "name": { + "id": "field.collectionobjects_common.domainOwner.name", + "defaultMessage": "Owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + } + }, + "applicationInteractionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "applicationInteractionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.applicationInteractionGroup.name", + "defaultMessage": "Interacting application" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "applicationInteractionRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationInteractionRequired.fullName", + "defaultMessage": "Interacting application required" + }, + "name": { + "id": "field.collectionobjects_common.applicationInteractionRequired.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "applicationRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationRequired.fullName", + "defaultMessage": "Interacting application name" + }, + "name": { + "id": "field.collectionobjects_common.applicationRequired.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "interactingapplication" + } + } + } + }, + "applicationRequiredFor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationRequiredFor.fullName", + "defaultMessage": "Interacting application required for" + }, + "name": { + "id": "field.collectionobjects_common.applicationRequiredFor.name", + "defaultMessage": "For" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "apiUrls": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "apiUrl": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.apiUrl.name", + "defaultMessage": "API URL" + } + }, + "repeating": true, + "view": { + "type": "URLInput" + } + } + } + }, + "avFormatGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avFormatGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avFormatGroup.name", + "defaultMessage": "Format" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "format": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.format.fullName", + "defaultMessage": "Format name" + }, + "name": { + "id": "field.collectionobjects_common.format.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formats" + } + } + } + }, + "formatType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.formatType.fullName", + "defaultMessage": "Format type" + }, + "name": { + "id": "field.collectionobjects_common.formatType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formattypenames" + } + } + } + } + } + }, + "avChannelGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avChannelGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avChannelGroup.name", + "defaultMessage": "AV channel" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "numberOfChannels": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberOfChannels.fullName", + "defaultMessage": "AV channel number of associated channels" + }, + "name": { + "id": "field.collectionobjects_common.numberOfChannels.name", + "defaultMessage": "Number of associated channels" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "channelType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.channelType.fullName", + "defaultMessage": "AV channel type" + }, + "name": { + "id": "field.collectionobjects_common.channelType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formattypenames" + } + } + } + } + } + }, + "channelLayout": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.channelLayout.name", + "defaultMessage": "Channel layout" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fileCodecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fileCodecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fileCodecGroup.name", + "defaultMessage": "File codec" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "fileCodec": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.fileCodec.fullName", + "defaultMessage": "File codec name" + }, + "name": { + "id": "field.collectionobjects_common.fileCodec.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "filecodecs" + } + } + } + }, + "compressionStandard": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.compressionstandard.fullName", + "defaultMessage": "File codec compression standard" + }, + "name": { + "id": "field.collectionobjects_common.compressionstandard.name", + "defaultMessage": "Compression standard" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "compressionstandards" + } + } + } + }, + "fileContainer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.fileContainer.fullName", + "defaultMessage": "File codec container" + }, + "name": { + "id": "field.collectionobjects_common.fileContainer.name", + "defaultMessage": "Container" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "filecontainers" + } + } + } + } + } + }, + "audioType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.audioType.name", + "defaultMessage": "Audio type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "audiotypes" + } + } + } + }, + "audioPreferences": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.audioPreferences.name", + "defaultMessage": "Audio preference" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "audiopreferences" + } + } + } + }, + "aspectRatioGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "aspectRatioGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.aspectRatioGroup.name", + "defaultMessage": "Aspect ratio" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "aspectRatio": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.aspectRatio.fullName", + "defaultMessage": "Aspect ratio width:height" + }, + "name": { + "id": "field.collectionobjects_common.aspectRatio.name", + "defaultMessage": "Width:height" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "aspectratios" + } + } + } + }, + "aspectRatioType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.aspectRatioType.fullName", + "defaultMessage": "Aspect ratio type" + }, + "name": { + "id": "field.collectionobjects_common.aspectRatioType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "aspectratiotypes" + } + } + } + } + } + }, + "colorSpaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "colorSpaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.colorSpaceGroup.name", + "defaultMessage": "Color space" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "colorSpace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.colorSpace.fullName", + "defaultMessage": "Color space name" + }, + "name": { + "id": "field.collectionobjects_common.colorSpace.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "colorspaces" + } + } + } + }, + "colorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.colorType.fullName", + "defaultMessage": "Color space type" + }, + "name": { + "id": "field.collectionobjects_common.colorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "colortypes" + } + } + } + } + } + }, + "avSpecificationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avSpecificationNote.name", + "defaultMessage": "Audio or video specification note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "softwareTechnicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "softwareTechnicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeGroup.name", + "defaultMessage": "Software technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "softwareTechnicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttribute.fullName", + "defaultMessage": "Software technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttribute.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwareattributes" + } + } + } + }, + "softwareTechnicalAttributeLowValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeLowValue.fullName", + "defaultMessage": "Software technical attribute low/single value" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeLowValue.name", + "defaultMessage": "Low/single value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "softwareTechnicalAttributeHighValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeHighValue.fullName", + "defaultMessage": "Software technical attribute high value" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeHighValue.name", + "defaultMessage": "High value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "softwareTechnicalAttributeUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeUnit.fullName", + "defaultMessage": "Software technical attribute unit" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwareattributeunits" + } + } + } + } + } + }, + "chromaSubsampling": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.chromaSubsampling.name", + "defaultMessage": "Chroma subsampling" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chromasubsampling" + } + } + } + }, + "avTechnicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avTechnicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeGroup.name", + "defaultMessage": "AV technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "avTechnicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttribute.fullName", + "defaultMessage": "AV technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttribute.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "avattributes" + } + } + } + }, + "avTechnicalAttributeLowValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeLowValue.fullName", + "defaultMessage": "AV technical attribute low/single value" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeLowValue.name", + "defaultMessage": "Low/single value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "avTechnicalAttributeHighValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeHighValue.fullName", + "defaultMessage": "AV technical attribute high value" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeHighValue.name", + "defaultMessage": "High value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "avTechnicalAttributeUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeUnit.fullName", + "defaultMessage": "AV technical attribute unit" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "avattributeunits" + } + } + } + } + } + }, + "checksumGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "checksumGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.checksumGroup.name", + "defaultMessage": "Checksum" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "checksumValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumValue.fullName", + "defaultMessage": "Checksum value" + }, + "name": { + "id": "field.collectionobjects_common.checksumValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "checksumType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumType.fullName", + "defaultMessage": "Checksum type" + }, + "name": { + "id": "field.collectionobjects_common.checksumType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "checksumtypes" + } + } + } + }, + "checksumDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumDate.fullName", + "defaultMessage": "Checksum date" + }, + "name": { + "id": "field.collectionobjects_common.checksumDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "rightsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightsGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "rightType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightType.name", + "defaultMessage": "Right type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightstype" + } + } + } + }, + "rightHolderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightHolderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightHolderGroup.name", + "defaultMessage": "Right holder" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "rightHolder": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightHolder.fullName", + "defaultMessage": "Right holder name" + }, + "name": { + "id": "field.collectionobjects_common.rightHolder.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,person/local,person/shared" + } + } + } + }, + "rightHolderContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightHolderContact.fullName", + "defaultMessage": "Right holder contact" + }, + "name": { + "id": "field.collectionobjects_common.rightHolderContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,person/local,person/shared" + } + } + } + } + } + }, + "rightBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightBeginDate.name", + "defaultMessage": "Right begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightEndDate.name", + "defaultMessage": "Right end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightJurisdiction": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightJurisdiction.name", + "defaultMessage": "Right jurisdiction" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "addressCountries" + } + } + } + }, + "standardizedRightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.standardizedRightStatement.name", + "defaultMessage": "Standardized right statement" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "standardizedrightstatement" + } + } + } + }, + "rightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightStatement.name", + "defaultMessage": "Right statement" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "rightNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightNote.name", + "defaultMessage": "Right note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "rightsInGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightsInGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "rightInTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightInType": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInType.name", + "defaultMessage": "Right in type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightsin" + } + } + } + } + }, + "rightInBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInBeginDate.name", + "defaultMessage": "Right in begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightInEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInEndDate.name", + "defaultMessage": "Right in end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementSent": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementSent.fullName", + "defaultMessage": "Right in agreement sent" + }, + "name": { + "id": "field.collectionobjects_common.agreementSent.name", + "defaultMessage": "Agreement sent" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementReceived": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementReceived.fullName", + "defaultMessage": "Right in agreement received" + }, + "name": { + "id": "field.collectionobjects_common.agreementReceived.name", + "defaultMessage": "Agreement received" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementSigned": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementSigned.fullName", + "defaultMessage": "Right in agreement signed" + }, + "name": { + "id": "field.collectionobjects_common.agreementSigned.name", + "defaultMessage": "Agreement signed" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightInRestrictions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightInRestriction": { + "[config]": { + "repeating": true, + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightInRestriction.fullName", + "defaultMessage": "Right in restriction" + }, + "name": { + "id": "field.collectionobjects_common.rightInRestriction.name", + "defaultMessage": "Restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightsinrestriction" + } + } + } + } + }, + "rightReproductionStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightReproductionStatement.name", + "defaultMessage": "Right statement for reproduction" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "rightInNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInNote.name", + "defaultMessage": "Right in note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "apparelSizes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "apparelSize": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.apparelSize.name", + "defaultMessage": "Apparel size" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "apparelsizes" + } + } + } + } + }, + "descriptionLevel": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.descriptionLevel.name", + "defaultMessage": "Description level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "descriptionlevel" + } + } + } + } + }, + "ns2:collectionobjects_anthro": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/anthro" + } + }, + "ethnoFileCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ethnoFileCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.ethnoFileCode.name", + "defaultMessage": "Ethnographic file code" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethfilecode" + } + } + } + } + }, + "anthroOwnershipGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "anthroOwnershipGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipGroup.name", + "defaultMessage": "Previous ownership" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "anthroOwner": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwner.fullName", + "defaultMessage": "Previous owner name" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwner.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "anthroOwnershipAccess": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipAccess.fullName", + "defaultMessage": "Previous ownership access" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipAccess.name", + "defaultMessage": "Access" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipAccessLevels" + } + } + } + }, + "anthroOwnershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "anthroOwnershipCategory": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipCategory.fullName", + "defaultMessage": "Previous ownership category" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipCategory.name", + "defaultMessage": "Category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipCategories" + } + } + } + }, + "anthroOwnershipPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPlace.fullName", + "defaultMessage": "Previous ownership place" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "anthroOwnershipMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipMethod.fullName", + "defaultMessage": "Previous ownership exchange method" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipMethod.name", + "defaultMessage": "Exch. meth." + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipExchangeMethods" + } + } + } + }, + "anthroOwnershipPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceCurrency.fullName", + "defaultMessage": "Previous ownership exchange price currency" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceCurrency.name", + "defaultMessage": "Price currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "anthroOwnershipPriceAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceAmount.fullName", + "defaultMessage": "Previous ownership exchange price amount" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceAmount.name", + "defaultMessage": "Price amount" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "anthroOwnershipNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipNote.fullName", + "defaultMessage": "Previous ownership note" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.fieldLocVerbatim.name", + "defaultMessage": "Field collection place (verbatim)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "commingledRemainsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "commingledRemainsGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.commingledRemainsGroup.fullName", + "defaultMessage": "Commingled remains" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "minIndividuals": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.minIndividuals.fullName", + "defaultMessage": "Commingled remains min. number of individuals" + }, + "name": { + "id": "field.collectionobjects_anthro.minIndividuals.name", + "defaultMessage": "Min. number of individuals" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "bone": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.bone.fullName", + "defaultMessage": "Commingled remains bone" + }, + "name": { + "id": "field.collectionobjects_anthro.bone.name", + "defaultMessage": "Bone" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "side": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.side.fullName", + "defaultMessage": "Commingled remains side" + }, + "name": { + "id": "field.collectionobjects_anthro.side.name", + "defaultMessage": "Side" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "bodyside" + } + } + } + }, + "count": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.count.fullName", + "defaultMessage": "Commingled remains count" + }, + "name": { + "id": "field.collectionobjects_anthro.count.name", + "defaultMessage": "Count" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sex": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.sex.fullName", + "defaultMessage": "Commingled remains sex" + }, + "name": { + "id": "field.collectionobjects_anthro.sex.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexDeterminations" + } + } + } + }, + "ageRange": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.ageRange.fullName", + "defaultMessage": "Commingled remains age range represented" + }, + "name": { + "id": "field.collectionobjects_anthro.ageRange.name", + "defaultMessage": "Age range represented" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agerange" + } + } + } + }, + "dentition": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.dentition.fullName", + "defaultMessage": "Commingled remains dentition present?" + }, + "name": { + "id": "field.collectionobjects_anthro.dentition.name", + "defaultMessage": "Dentition present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "mortuaryTreatmentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "mortuaryTreatmentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentGroup.name", + "defaultMessage": "Mortuary treatment" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "mortuaryTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.mortuaryTreatment.fullName", + "defaultMessage": "Mortuary treatment" + }, + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatment.name", + "defaultMessage": "Treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "mortuarytreatment" + } + } + } + }, + "mortuaryTreatmentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentNote.fullName", + "defaultMessage": "Mortuary treatment note" + }, + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "behrensmeyerSingleLower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.behrensmeyerSingleLower.fullName", + "defaultMessage": "Behrensmeyer stage - Single/lower" + }, + "name": { + "id": "field.collectionobjects_anthro.behrensmeyerSingleLower.name", + "defaultMessage": "Single/lower" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "behrensmeyerUpper": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.behrensmeyerUpper.fullName", + "defaultMessage": "Behrensmeyer stage - Upper" + }, + "name": { + "id": "field.collectionobjects_anthro.behrensmeyerUpper.name", + "defaultMessage": "Upper" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "commingledRemainsNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.commingledRemainsNote.fullName", + "defaultMessage": "Commingled remains note" + }, + "name": { + "id": "field.collectionobjects_anthro.commingledRemainsNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "fieldCollectionEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEvent": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.fieldCollectionEvent.name", + "defaultMessage": "Field collection event" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/fieldcollection,chronology/event" + } + } + } + } + }, + "localityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "locality", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/anthro" + } + } + }, + "localityGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localityGroup.fullName", + "defaultMessage": "Locality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocVerbatim.name", + "defaultMessage": "Field collection location verbatim" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldLocPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + }, + "taxonomicRange": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.taxonomicRange.name", + "defaultMessage": "Geographic range of taxon" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldLocCounty": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCounty.name", + "defaultMessage": "County" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-county", + "source": "counties" + } + } + } + }, + "fieldLocState": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocState.name", + "defaultMessage": "State" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-state", + "source": "states" + } + } + } + }, + "fieldLocCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "countries" + } + } + } + }, + "fieldLocHigherGeography": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocHigherGeography.name", + "defaultMessage": "Higher geography" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "higherGeographies" + } + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordinates.name", + "defaultMessage": "TRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vOtherCoords": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vOtherCoords.name", + "defaultMessage": "Other coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordSys.name", + "defaultMessage": "Other coords system" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vcoordsys" + } + } + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertainty": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertainty.fullName", + "defaultMessage": "Coord uncertainty" + }, + "name": { + "id": "field.ext.locality.coordUncertainty.name", + "defaultMessage": "Uncertainty" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordUncertaintyUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertaintyUnit.fullName", + "defaultMessage": "Coord uncertainty unit" + }, + "name": { + "id": "field.ext.locality.coordUncertaintyUnit.name", + "defaultMessage": "Uncertainty unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordUncertaintyUnits" + } + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDepth.fullName", + "defaultMessage": "Depth verbatim" + }, + "name": { + "id": "field.ext.locality.vDepth.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDepth.fullName", + "defaultMessage": "Depth min" + }, + "name": { + "id": "field.ext.locality.minDepth.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDepth.fullName", + "defaultMessage": "Depth max" + }, + "name": { + "id": "field.ext.locality.maxDepth.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "depthUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.depthUnit.fullName", + "defaultMessage": "Depth unit" + }, + "name": { + "id": "field.ext.locality.depthUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "depthUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vElevation.fullName", + "defaultMessage": "Elevation verbatim" + }, + "name": { + "id": "field.ext.locality.vElevation.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minElevation.fullName", + "defaultMessage": "Elevation min" + }, + "name": { + "id": "field.ext.locality.minElevation.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxElevation.fullName", + "defaultMessage": "Elevation max" + }, + "name": { + "id": "field.ext.locality.maxElevation.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "elevationUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.elevationUnit.fullName", + "defaultMessage": "Elevation unit" + }, + "name": { + "id": "field.ext.locality.elevationUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "elevationUnits" + } + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface verbatim" + }, + "name": { + "id": "field.ext.locality.vDistanceAboveSurface.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface min" + }, + "name": { + "id": "field.ext.locality.minDistanceAboveSurface.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface max" + }, + "name": { + "id": "field.ext.locality.maxDistanceAboveSurface.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distanceAboveSurfaceUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.fullName", + "defaultMessage": "Distance above surface unit" + }, + "name": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "distanceAboveSurfaceUnits" + } + } + } + }, + "localityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.localityNote.name", + "defaultMessage": "Locality note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "localitySource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySource.fullName", + "defaultMessage": "Locality source" + }, + "name": { + "id": "field.ext.locality.localitySource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "localitySourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySourceDetail.fullName", + "defaultMessage": "Locality source detail" + }, + "name": { + "id": "field.ext.locality.localitySourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.pointRadiusSpatialFit.name", + "defaultMessage": "Pt. radius sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSpatialFit.name", + "defaultMessage": "Footprint sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.coordPrecision.name", + "defaultMessage": "Coord precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefencedBy.name", + "defaultMessage": "Georeference by" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.ext.locality.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.ext.locality.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.ext.locality.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefRemarks.fullName", + "defaultMessage": "Georeference note" + }, + "name": { + "id": "field.ext.locality.geoRefRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefPlaceName.name", + "defaultMessage": "Georeference place name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionLocationVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionLocationVerbatim.name", + "defaultMessage": "Collection location verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionPlace.name", + "defaultMessage": "Collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + } + } + } + }, + "ns2:collectionobjects_culturalcare": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/collectionobject" + } + }, + "culturalCareNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "culturalCareNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.culturalCareNote.name", + "defaultMessage": "Cultural care note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "accessLimitationsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "accessLimitationsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.accessLimitationsGroup.name", + "defaultMessage": "Access limitation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "limitationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationType.fullName", + "defaultMessage": "Access limitation type" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationtype" + } + } + } + }, + "limitationLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationLevel.fullName", + "defaultMessage": "Access limitation level" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationlevel" + } + } + } + }, + "limitationDetails": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationDetails.fullName", + "defaultMessage": "Access limitation detail" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationDetails.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "requester": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requester.fullName", + "defaultMessage": "Access limitation requestor" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requester.name", + "defaultMessage": "Requestor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "requestOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.fullName", + "defaultMessage": "Access limitation requested on behalf of" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "requestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestDate.fullName", + "defaultMessage": "Access limitation request date" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + }, + "ns2:collectionobjects_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/nagpra" + } + }, + "nagpraInventoryNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraInventoryName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraInventoryName.name", + "defaultMessage": "NAGPRA inventory" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagprainventory" + } + } + } + } + }, + "nagpraCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCategory.name", + "defaultMessage": "Museum NAGPRA category determination" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpracategory" + } + } + } + } + }, + "graveAssocCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "graveAssocCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.graveAssocCode.name", + "defaultMessage": "Grave association code" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "graveassoccode" + } + } + } + } + }, + "nagpraCulturalDeterminations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCulturalDetermination": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCulturalDetermination.name", + "defaultMessage": "NAGPRA cultural determination note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraNote.name", + "defaultMessage": "NAGPRA note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraDetermGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraDetermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermGroup.name", + "defaultMessage": "Cultural determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraDetermCulture": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.fullName", + "defaultMessage": "Cultural determination culture" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.name", + "defaultMessage": "Culture" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraDetermType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.fullName", + "defaultMessage": "Cultural determination type" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpradetermtype" + } + } + } + }, + "nagpraDetermBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.fullName", + "defaultMessage": "Cultural determination by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.name", + "defaultMessage": "By" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "nagpraDetermNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.fullName", + "defaultMessage": "Cultural determination note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "repatriationNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "repatriationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.repatriationNote.name", + "defaultMessage": "Repatriation note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraReportFiledGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraReportFiledGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledGroup.name", + "defaultMessage": "Reported to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraReportFiled": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.fullName", + "defaultMessage": "NAGPRA report filed" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.name", + "defaultMessage": "Report filed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nagpraReportFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.fullName", + "defaultMessage": "NAGPRA report filed by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledWith": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.fullName", + "defaultMessage": "NAGPRA report filed with" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.name", + "defaultMessage": "Filed with" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraReportFiledNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.fullName", + "defaultMessage": "Reporting note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:collectionobjects_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/naturalhistory_extension" + } + }, + "taxonomicIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "taxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "qualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.qualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.qualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "identBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "identDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "institution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.institution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.institution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.institution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "identKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "reference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.reference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.reference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.reference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "refPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.refPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.refPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.refPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "notes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.notes.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.notes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "taxonomicIdentHybridParentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentHybridParentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentGroup.name", + "defaultMessage": "Hybrid parent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonomicIdentHybridParent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.fullName", + "defaultMessage": "Hybrid parent name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "taxonomicIdentHybridParentQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.fullName", + "defaultMessage": "Hybrid parent qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "hybridparentqualifier" + } + } + } + } + } + }, + "affinityTaxon": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.affinityTaxon.name", + "defaultMessage": "Affinity taxon" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "hybridFlag": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.hybridFlag.name", + "defaultMessage": "Hybrid flag" + } + }, + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "determinationHistoryGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "determinationHistoryGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.determinationHistoryGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "determinationTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "determinationQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "determinationBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "determinationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "determinationInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "determinationKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "determinationReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationReference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationNote.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "typeSpecimenGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "typeSpecimenGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenGroup.name", + "defaultMessage": "Type specimen" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "typeSpecimenKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.fullName", + "defaultMessage": "Type specimen kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "typespecimenkind" + } + } + } + }, + "typeSpecimenAssertionBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.fullName", + "defaultMessage": "Type specimen asserted by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.name", + "defaultMessage": "Asserted by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "typeSpecimenReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.fullName", + "defaultMessage": "Type specimen reference" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.fullName", + "defaultMessage": "Type specimen reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenBasionym": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.fullName", + "defaultMessage": "Type specimen verified basionym" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.name", + "defaultMessage": "Verified basionym" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "typeSpecimenNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.fullName", + "defaultMessage": "Type specimen note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "vegetationType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.vegetationType.name", + "defaultMessage": "Vegetation type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vegetationtype" + } + } + } + }, + "associatedTaxaGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "associatedTaxaGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxaGroup.name", + "defaultMessage": "Associated taxa" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "associatedTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.fullName", + "defaultMessage": "Associated taxon name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.commonName.fullName", + "defaultMessage": "Associated taxon common name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.commonName.name", + "defaultMessage": "Common name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "interaction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.interaction.fullName", + "defaultMessage": "Associated taxon interaction" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.interaction.name", + "defaultMessage": "Interaction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assoctaxoninteraction" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.collectionobject.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ethnoFileCodes", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ethnoFileCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameControlled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialControlled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSites", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSite" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim", + "subpath": "ns2:collectionobjects_anthro" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEvents", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEvent" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionFeature" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionEras", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionEra" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReason" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "forms", + "children": { + "key": null, + "ref": null, + "props": { + "name": "form" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "styles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "style" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "apparelSizes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "apparelSize" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distinguishingFeatures" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "phase" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "age", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ageQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "age" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonReference", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "refPage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commingledRemains", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minIndividuals" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bone" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "side" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "count" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentition" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyer", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerSingleLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerUpper" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEvents", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEvent" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "textInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentScript" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInterpretation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTransliteration" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nonTextInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInterpretation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assoc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocConcept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEvent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEvents", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEvent" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPriceAmount" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "viewersRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locality", + "collapsible": true, + "collapsed": true, + "children": { + "type": "CompoundInput", + "key": null, + "ref": null, + "props": { + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "tabular": false + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rights", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightHolderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightHolderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightHolder" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightHolderContact" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightJurisdiction" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "standardizedRightStatement" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightStatement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightsin", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsInGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsInGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightInTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightInBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightInEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "agreementSent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "agreementReceived" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "agreementSigned" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInRestrictions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInRestriction" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightReproductionStatement" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightInNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "inventory": { + "messages": { + "name": { + "id": "form.collectionobject.inventory.name", + "defaultMessage": "Inventory Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.collectionobject.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:collectionobjects_common", + "briefDescriptions", + "briefDescription" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "photo": { + "messages": { + "name": { + "id": "form.collectionobject.photo.name", + "defaultMessage": "Photograph Template" + } + }, + "sortOrder": 2, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distinguishingFeatures" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurementUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "public": { + "messages": { + "name": { + "id": "form.collectionobject.public.name", + "defaultMessage": "Public Browser Template" + } + }, + "sortOrder": 3, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonReference", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "refPage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "timebased": { + "messages": { + "name": { + "id": "form.collectionobject.timebased.name", + "defaultMessage": "Time-Based Media Template" + } + }, + "sortOrder": 3, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectSignificanceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectSignificanceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assignedSignificance" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedContact" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectSuppliedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "variableMediaComponentStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "credentialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "credentialType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialRequiredForUse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "distributedStorageLedger" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerParentIdentifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerObjectIdentifier" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ledgerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ledger" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerContractAddress" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerTokenID" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "checksumGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "checksumValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "styles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "style" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBehavior" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurementUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "textInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentScript" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInterpretation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTransliteration" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nonTextInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInterpretation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReason" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechSpecs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avFormatGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avFormatGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "formatType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "format" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avChannelGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avChannelGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberOfChannels" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "channelType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "channelLayout" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fileCodecGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fileCodecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fileCodec" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "compressionStandard" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fileContainer" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "audioType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "audioPreferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chromaSubsampling" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "aspectRatio" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "colorSpaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "colorSpaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "colorSpace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeLowValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeHighValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avSpecificationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "software", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "utilizedSoftwareGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "utilizedSoftwareGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "software" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareLibraries", + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareLibrary" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "codeCompilers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "codeCompiler" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowser" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "domainGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "domainName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainHost" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainVersion" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainOwner" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationRequiredFor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeLowValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeHighValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "apiUrls", + "children": { + "key": null, + "ref": null, + "props": { + "name": "apiUrl" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assoc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocConcept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEvent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "owners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroup" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownershipAccess" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipCategory" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchange", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangeMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "viewersRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + "disabled": true + } + }, + "name": "collectionobject" + }, + "concept": { + "messages": { + "record": { + "name": { + "id": "record.concept.name", + "defaultMessage": "Concept" + }, + "collectionName": { + "id": "record.concept.collectionName", + "defaultMessage": "Concepts" + } + }, + "panel": { + "info": { + "id": "panel.concept.info", + "defaultMessage": "Concept Information" + }, + "hierarchy": { + "id": "panel.concept.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.concept.termSource", + "defaultMessage": "Source" + }, + "scopeNote": { + "id": "inputTable.concept.scopeNote", + "defaultMessage": "Scope note" + } + } + }, + "serviceConfig": { + "serviceName": "Concepts", + "servicePath": "conceptauthorities", + "serviceType": "authority", + "objectName": "Conceptitem", + "documentName": "concepts" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.concept.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.concept.all.collectionName", + "defaultMessage": "All Concepts" + }, + "itemName": { + "id": "vocab.concept.all.itemName", + "defaultMessage": "Concept" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "associated": { + "messages": { + "name": { + "id": "vocab.concept.associated.name", + "defaultMessage": "Associated" + }, + "collectionName": { + "id": "vocab.concept.associated.collectionName", + "defaultMessage": "Associated Concepts" + }, + "itemName": { + "id": "vocab.concept.associated.itemName", + "defaultMessage": "Associated Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(concept)" + }, + "name": "associated", + "disableAltTerms": false + }, + "activity": { + "messages": { + "name": { + "id": "vocab.concept.activity.name", + "defaultMessage": "Activity" + }, + "collectionName": { + "id": "vocab.concept.activity.collectionName", + "defaultMessage": "Activity Concepts" + }, + "itemName": { + "id": "vocab.concept.activity.itemName", + "defaultMessage": "Activity Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(activity)" + }, + "name": "activity", + "disableAltTerms": false + }, + "material": { + "messages": { + "name": { + "id": "vocab.concept.material.name", + "defaultMessage": "Material" + }, + "collectionName": { + "id": "vocab.concept.material.collectionName", + "defaultMessage": "Material Concepts" + }, + "itemName": { + "id": "vocab.concept.material.itemName", + "defaultMessage": "Material Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(material_ca)" + }, + "name": "material", + "disableAltTerms": false + }, + "nomenclature": { + "messages": { + "name": { + "id": "vocab.concept.nomenclature.name", + "defaultMessage": "Nomenclature" + }, + "collectionName": { + "id": "vocab.concept.nomenclature.collectionName", + "defaultMessage": "Nomenclature Concepts" + }, + "itemName": { + "id": "vocab.concept.nomenclature.itemName", + "defaultMessage": "Nomenclature" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(nomenclature)" + }, + "name": "nomenclature", + "disableAltTerms": false + }, + "occasion": { + "messages": { + "name": { + "id": "vocab.concept.occasion.name", + "defaultMessage": "Occasion" + }, + "collectionName": { + "id": "vocab.concept.occasion.collectionName", + "defaultMessage": "Occasion Concepts" + }, + "itemName": { + "id": "vocab.concept.occasion.itemName", + "defaultMessage": "Occasion Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(occasion)" + }, + "name": "occasion", + "disableAltTerms": false + }, + "archculture": { + "messages": { + "name": { + "id": "vocab.concept.archculture.name", + "defaultMessage": "Archaeological Culture" + }, + "collectionName": { + "id": "vocab.concept.archculture.collectionName", + "defaultMessage": "Archaeological Cultures" + }, + "itemName": { + "id": "vocab.concept.archculture.itemName", + "defaultMessage": "Archaeological Culture" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(archculture)" + }, + "name": "archculture", + "disableAltTerms": false + }, + "ethculture": { + "messages": { + "name": { + "id": "vocab.concept.ethculture.name", + "defaultMessage": "Ethnographic Culture" + }, + "collectionName": { + "id": "vocab.concept.ethculture.collectionName", + "defaultMessage": "Ethnographic Cultures" + }, + "itemName": { + "id": "vocab.concept.ethculture.itemName", + "defaultMessage": "Ethnographic Culture" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ethculture)" + }, + "name": "ethculture", + "disableAltTerms": false + }, + "ethfilecode": { + "messages": { + "name": { + "id": "vocab.concept.ethfilecode.name", + "defaultMessage": "Ethnographic File Code" + }, + "collectionName": { + "id": "vocab.concept.ethfilecode.collectionName", + "defaultMessage": "Ethnographic File Codes" + }, + "itemName": { + "id": "vocab.concept.ethfilecode.itemName", + "defaultMessage": "Ethnographic File Code" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ethfilecode)" + }, + "name": "ethfilecode", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptRecordTypes/conceptRecordType" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.concept.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "concepts_common:conceptTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.concept.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "concepts_common:conceptTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.concept.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.concept.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:concepts_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.concept.parent", + "defaultMessage": "Broader concept" + }, + "children": { + "id": "hierarchyInput.concept.children", + "defaultMessage": "Narrower concepts" + }, + "siblings": { + "id": "hierarchyInput.concept.siblings", + "defaultMessage": "Adjacent concepts" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:concepts_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:concepts_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "conceptTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.concepts_common.conceptTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "conceptTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.conceptTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.concepts_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.concepts_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.concepts_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.concepts_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "concepttermflag" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.concepts_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptHistoricalStatuses" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.concepts_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.concepts_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.concepts_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.concepts_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.concepts_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.concepts_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.concepts_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.concepts_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.concepts_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.concepts_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.concepts_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.concepts_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.concepts_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conceptRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conceptRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.conceptRecordType.name", + "defaultMessage": "Concept type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "concepttype" + } + } + } + } + }, + "scopeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNote.fullName", + "defaultMessage": "Scope note" + }, + "name": { + "id": "field.concepts_common.scopeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "scopeNoteSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNoteSource.fullName", + "defaultMessage": "Scope note source" + }, + "name": { + "id": "field.concepts_common.scopeNoteSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "scopeNoteSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNoteSourceDetail.fullName", + "defaultMessage": "Scope note source detail" + }, + "name": { + "id": "field.concepts_common.scopeNoteSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "citationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.citationGroup.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "citationSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.citationSource.fullName", + "defaultMessage": "Citation source" + }, + "name": { + "id": "field.concepts_common.citationSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "citationSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.citationSourceDetail.fullName", + "defaultMessage": "Citation source detail" + }, + "name": { + "id": "field.concepts_common.citationSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "additionalSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "additionalSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.additionalSourceGroup.name", + "defaultMessage": "Additional source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "additionalSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSource.fullName", + "defaultMessage": "Additional source" + }, + "name": { + "id": "field.concepts_common.additionalSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceDetail.fullName", + "defaultMessage": "Additional source detail" + }, + "name": { + "id": "field.concepts_common.additionalSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceID.fullName", + "defaultMessage": "Additional source ID" + }, + "name": { + "id": "field.concepts_common.additionalSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceNote.fullName", + "defaultMessage": "Additional source note" + }, + "name": { + "id": "field.concepts_common.additionalSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.concept.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conceptTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptRecordType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNoteSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNoteSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "citationSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "additionalSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.concept.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:concepts_common", + "conceptRecordTypes", + "conceptRecordType" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "concept" + }, + "conditioncheck": { + "messages": { + "record": { + "name": { + "id": "record.conditioncheck.name", + "defaultMessage": "Condition Check" + }, + "collectionName": { + "id": "record.conditioncheck.collectionName", + "defaultMessage": "Condition Checks" + } + }, + "panel": { + "conditionCheckAndTechAssessmentInfo": { + "id": "panel.conditioncheck.conditionCheckAndTechAssessmentInfo", + "defaultMessage": "Condition Check/Technical Assessment Information" + }, + "objectConditionAndTechAssessmentInfo": { + "id": "panel.conditioncheck.objectConditionAndTechAssessmentInfo", + "defaultMessage": "Object Condition Information" + }, + "objectRequirementInfo": { + "id": "panel.conditioncheck.objectRequirementInfo", + "defaultMessage": "Object Recommendation/Requirement Information" + } + } + }, + "serviceConfig": { + "serviceName": "Conditionchecks", + "servicePath": "conditionchecks", + "serviceType": "procedure", + "objectName": "Conditioncheck", + "documentName": "conditionchecks" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:conditionchecks_common/conditionCheckRefNumber" + }, + { + "op": "range", + "path": "ns2:conditionchecks_common/conditionCheckAssessmentDate" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/objectAuditCategory" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/conservationTreatmentPriority" + }, + { + "op": "range", + "path": "ns2:conditionchecks_common/nextConditionCheckDate" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/conditionCheckGroupList/conditionCheckGroup/condition" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "conditionCheckRefNumber": { + "messages": { + "label": { + "id": "column.conditioncheck.default.conditionCheckRefNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "conditionchecks_common:conditionCheckRefNumber", + "width": 200 + }, + "condition": { + "messages": { + "label": { + "id": "column.conditioncheck.default.condition", + "defaultMessage": "Condition" + } + }, + "order": 20, + "sortBy": "conditionchecks_common:conditionCheckGroupList/0/condition", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.conditioncheck.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conditionchecks_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conditionchecks_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:conditionchecks_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/conditioncheck" + } + }, + "objectAuditCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.objectAuditCategory.name", + "defaultMessage": "Object audit category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectAuditCategories" + } + } + } + }, + "completenessGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "completenessGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.completenessGroup.name", + "defaultMessage": "Completeness" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "completeness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completeness.fullName", + "defaultMessage": "Completeness description" + }, + "name": { + "id": "field.conditionchecks_common.completeness.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "completenessLevels" + } + } + } + }, + "completenessDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completenessDate.fullName", + "defaultMessage": "Completeness date" + }, + "name": { + "id": "field.conditionchecks_common.completenessDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "completenessNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completenessNote.fullName", + "defaultMessage": "Completeness note" + }, + "name": { + "id": "field.conditionchecks_common.completenessNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conditionCheckGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckGroup.name", + "defaultMessage": "Condition" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "condition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.condition.fullName", + "defaultMessage": "Condition description" + }, + "name": { + "id": "field.conditionchecks_common.condition.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditions" + } + } + } + }, + "conditionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.conditionDate.fullName", + "defaultMessage": "Condition date" + }, + "name": { + "id": "field.conditionchecks_common.conditionDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.conditionNote.fullName", + "defaultMessage": "Condition note" + }, + "name": { + "id": "field.conditionchecks_common.conditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conservationTreatmentPriority": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conservationTreatmentPriority.name", + "defaultMessage": "Conservation treatment priority" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conservationTreatmentPriorities" + } + } + } + }, + "envConditionNoteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "envConditionNoteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.envConditionNoteGroup.name", + "defaultMessage": "Environmental condition" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "envConditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.envConditionNote.fullName", + "defaultMessage": "Environmental condition note" + }, + "name": { + "id": "field.conditionchecks_common.envConditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "envConditionNoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.envConditionNoteDate.fullName", + "defaultMessage": "Environmental condition date" + }, + "name": { + "id": "field.conditionchecks_common.envConditionNoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "nextConditionCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conditionchecks_common.nextConditionCheckDate.name", + "defaultMessage": "Next check/assessment date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "techAssessmentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "techAssessmentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.techAssessmentGroup.name", + "defaultMessage": "Technical assessment" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "techAssessment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.techAssessment.fullName", + "defaultMessage": "Technical assessment description" + }, + "name": { + "id": "field.conditionchecks_common.techAssessment.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "techAssessmentDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.techAssessmentDate.fullName", + "defaultMessage": "Technical assessment date" + }, + "name": { + "id": "field.conditionchecks_common.techAssessmentDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "hazardGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "hazardGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.hazardGroup.name", + "defaultMessage": "Hazard" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "hazard": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazard.fullName", + "defaultMessage": "Hazard description" + }, + "name": { + "id": "field.conditionchecks_common.hazard.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "hazards" + } + } + } + }, + "hazardDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazardDate.fullName", + "defaultMessage": "Hazard date" + }, + "name": { + "id": "field.conditionchecks_common.hazardDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "hazardNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazardNote.fullName", + "defaultMessage": "Hazard note" + }, + "name": { + "id": "field.conditionchecks_common.hazardNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conditionCheckAssessmentDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckAssessmentDate.name", + "defaultMessage": "Check/assessment date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionCheckMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditionCheckMethods" + } + } + } + }, + "conditionCheckNote": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionCheckReason": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckReason.name", + "defaultMessage": "Reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditionCheckReasons" + } + } + } + }, + "conditionCheckRefNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.conditionchecks_common.conditionCheckRefNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.conditionchecks_common.conditionCheckRefNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "conditioncheck" + } + } + } + }, + "conditionChecker": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionChecker.name", + "defaultMessage": "Checker/assessor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "displayRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.displayRecommendations.name", + "defaultMessage": "Display recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "envRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.envRecommendations.name", + "defaultMessage": "Environmental recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "handlingRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.handlingRecommendations.name", + "defaultMessage": "Handling recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.packingRecommendations.name", + "defaultMessage": "Packing recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "securityRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.securityRecommendations.name", + "defaultMessage": "Security recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "specialRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.specialRequirements.name", + "defaultMessage": "Special requirement" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "storageRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.storageRequirements.name", + "defaultMessage": "Storage recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "legalRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.legalRequirements.name", + "defaultMessage": "Legal requirement" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "salvagePriorityCodeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "salvagePriorityCodeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.salvagePriorityCodeGroup.name", + "defaultMessage": "Salvage priority" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "salvagePriorityCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.salvagePriorityCode.fullName", + "defaultMessage": "Salvage priority code" + }, + "name": { + "id": "field.conditionchecks_common.salvagePriorityCode.name", + "defaultMessage": "Code" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "salvagePriorityCodes" + } + } + } + }, + "salvagePriorityCodeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.salvagePriorityCodeDate.fullName", + "defaultMessage": "Salvage priority date" + }, + "name": { + "id": "field.conditionchecks_common.salvagePriorityCodeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "legalReqsHeldGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "legalReqsHeldGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.legalReqsHeldGroup.name", + "defaultMessage": "Legal/license requirement held" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "legalReqsHeld": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeld.fullName", + "defaultMessage": "Legal/license requirement held description" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeld.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "legalReqsHeldBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldBeginDate.fullName", + "defaultMessage": "Legal/license requirement held begin date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldBeginDate.name", + "defaultMessage": "Begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "legalReqsHeldEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldEndDate.fullName", + "defaultMessage": "Legal/license requirement held end date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldEndDate.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "legalReqsHeldNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldNumber.fullName", + "defaultMessage": "Legal/license requirement held number" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "legalReqsHeldRenewDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldRenewDate.fullName", + "defaultMessage": "Legal/license requirement held renewal date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldRenewDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.conditioncheck.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckAndTechAssessmentInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckRefNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckAssessmentDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionChecker" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectConditionAndTechAssessmentInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectAuditCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conservationTreatmentPriority" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nextConditionCheckDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "completenessGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "completeness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "hazardGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "hazard" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "techAssessment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "condition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectRequirementInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "displayRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "handlingRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "securityRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "storageRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "envRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "specialRequirements" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeld" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldEndDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldRenewDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCode" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "conditioncheck" + }, + "conservation": { + "messages": { + "record": { + "name": { + "id": "record.conservation.name", + "defaultMessage": "Conservation" + }, + "collectionName": { + "id": "record.conservation.collectionName", + "defaultMessage": "Conservation Treatments" + } + }, + "panel": { + "info": { + "id": "panel.conservation.info", + "defaultMessage": "Conservation Treatment Information" + }, + "objectAnalysisInfo": { + "id": "panel.conservation.objectAnalysisInfo", + "defaultMessage": "Object Analysis Information" + } + } + }, + "serviceConfig": { + "serviceName": "Conservation", + "servicePath": "conservation", + "serviceType": "procedure", + "objectName": "Conservation", + "documentName": "conservation" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:conservation_common/conservationNumber" + }, + { + "op": "eq", + "path": "ns2:conservation_common/conservationStatusGroupList/conservationStatusGroup/status" + }, + { + "op": "eq", + "path": "ns2:conservation_common/treatmentPurpose" + }, + { + "op": "eq", + "path": "ns2:conservation_common/conservators/conservator" + }, + { + "op": "eq", + "path": "ns2:conservation_common/approvedBy" + }, + { + "op": "range", + "path": "ns2:conservation_common/approvedDate" + }, + { + "op": "range", + "path": "ns2:conservation_common/treatmentStartDate" + }, + { + "op": "range", + "path": "ns2:conservation_common/treatmentEndDate" + }, + { + "op": "eq", + "path": "ns2:conservation_common/researcher" + }, + { + "op": "range", + "path": "ns2:conservation_common/proposedAnalysisDate" + }, + { + "op": "eq", + "path": "ns2:conservation_common/destAnalysisGroupList/destAnalysisGroup/sampleBy" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "conservationNumber": { + "messages": { + "label": { + "id": "column.conservation.default.conservationNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "conservation_common:conservationNumber", + "width": 250 + }, + "status": { + "messages": { + "label": { + "id": "column.conservation.default.status", + "defaultMessage": "Status" + } + }, + "order": 20, + "sortBy": "conservation_common:conservationStatusGroupList/0/status", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.conservation.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conservation_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conservation_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:conservation_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/conservation" + } + }, + "conservationNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.conservation_common.conservationNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.conservation_common.conservationNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "conservation" + } + } + } + }, + "conservationStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conservationStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.conservationStatusGroup.name", + "defaultMessage": "Procedural status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "status": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.status.fullName", + "defaultMessage": "Procedural status" + }, + "name": { + "id": "field.conservation_common.status.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conservationstatus" + } + } + } + }, + "statusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.statusDate.fullName", + "defaultMessage": "Procedural status date" + }, + "name": { + "id": "field.conservation_common.statusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "treatmentPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.treatmentPurpose.name", + "defaultMessage": "Treatment purpose" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "treatmentpurpose" + } + } + } + }, + "conservators": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conservator": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.conservation_common.conservator.name", + "defaultMessage": "Conservator" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "otherPartyGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherPartyGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.otherPartyGroup.name", + "defaultMessage": "Other treatment party" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "otherParty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherParty.fullName", + "defaultMessage": "Other treatment party name" + }, + "name": { + "id": "field.conservation_common.otherParty.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "otherPartyRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherPartyRole.fullName", + "defaultMessage": "Other treatment party role" + }, + "name": { + "id": "field.conservation_common.otherPartyRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "otherpartyrole" + } + } + } + }, + "otherPartyNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherPartyNote.fullName", + "defaultMessage": "Other treatment party note" + }, + "name": { + "id": "field.conservation_common.otherPartyNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "examinationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "examinationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.examinationGroup.name", + "defaultMessage": "Examination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "examinationStaff": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationStaff.fullName", + "defaultMessage": "Examination staff" + }, + "name": { + "id": "field.conservation_common.examinationStaff.name", + "defaultMessage": "Staff" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "examinationPhase": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationPhase.fullName", + "defaultMessage": "Examination phase of treatment" + }, + "name": { + "id": "field.conservation_common.examinationPhase.name", + "defaultMessage": "Phase of treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "examinationphase" + } + } + } + }, + "examinationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.examinationDate.fullName", + "defaultMessage": "Examination date" + }, + "name": { + "id": "field.conservation_common.examinationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "examinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationNote.fullName", + "defaultMessage": "Examination note" + }, + "name": { + "id": "field.conservation_common.examinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "fabricationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.fabricationNote.name", + "defaultMessage": "Fabrication note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "proposedTreatment": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.proposedTreatment.name", + "defaultMessage": "Proposed treatment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "approvedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.approvedBy.name", + "defaultMessage": "Approved by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "approvedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.approvedDate.name", + "defaultMessage": "Approval date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentStartDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.treatmentStartDate.name", + "defaultMessage": "Treatment start date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.treatmentEndDate.name", + "defaultMessage": "Treatment end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.treatmentSummary.name", + "defaultMessage": "Treatment summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "researcher": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.researcher.fullName", + "defaultMessage": "Analysis researcher" + }, + "name": { + "id": "field.conservation_common.researcher.name", + "defaultMessage": "Researcher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "proposedAnalysis": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.proposedAnalysis.name", + "defaultMessage": "Proposed analysis" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "proposedAnalysisDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.proposedAnalysisDate.fullName", + "defaultMessage": "Analysis proposal date" + }, + "name": { + "id": "field.conservation_common.proposedAnalysisDate.name", + "defaultMessage": "Proposal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "destAnalysisGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "destAnalysisGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.destAnalysisGroup.name", + "defaultMessage": "Destructive analysis" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "destAnalysisApprovedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.destAnalysisApprovedDate.fullName", + "defaultMessage": "Destructive analysis approval date" + }, + "name": { + "id": "field.conservation_common.destAnalysisApprovedDate.name", + "defaultMessage": "Approval date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "destAnalysisApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.destAnalysisApprovalNote.fullName", + "defaultMessage": "Destructive analysis approval note" + }, + "name": { + "id": "field.conservation_common.destAnalysisApprovalNote.name", + "defaultMessage": "Approval note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sampleBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleBy.fullName", + "defaultMessage": "Destructive analysis sample taken by" + }, + "name": { + "id": "field.conservation_common.sampleBy.name", + "defaultMessage": "Sample taken by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "sampleDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.sampleDate.fullName", + "defaultMessage": "Destructive analysis sample date" + }, + "name": { + "id": "field.conservation_common.sampleDate.name", + "defaultMessage": "Sample date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "sampleDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleDescription.fullName", + "defaultMessage": "Destructive analysis sample description" + }, + "name": { + "id": "field.conservation_common.sampleDescription.name", + "defaultMessage": "Sample description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "sampleReturned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.conservation_common.sampleReturned.fullName", + "defaultMessage": "Destructive analysis sample returned" + }, + "name": { + "id": "field.conservation_common.sampleReturned.nadme", + "defaultMessage": "Sample returned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "sampleReturnedLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleReturnedLocation.fullName", + "defaultMessage": "Destructive analysis sample returned location" + }, + "name": { + "id": "field.conservation_common.sampleReturnedLocation.name", + "defaultMessage": "Sample returned location" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "analysisMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.analysisMethod.name", + "defaultMessage": "Analytical methodology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "analysisResults": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.analysisResults.name", + "defaultMessage": "Analytical result" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.conservation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conservationNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conservationStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conservationStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "status" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "statusDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conservators", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conservator" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherPartyGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "otherParty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "examinationGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "examinationStaff" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationPhase" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fabricationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "proposedTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentStartDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectAnalysisInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "proposedAnalysis" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "researcher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "proposedAnalysisDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisApprovedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisApprovalNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sampleReturned" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleReturnedLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "analysisMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "analysisResults" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "conservation" + }, + "contact": { + "messages": { + "record": { + "name": { + "id": "record.contact.name", + "defaultMessage": "Contact" + }, + "collectionName": { + "id": "record.contact.collectionName", + "defaultMessage": "Contacts" + } + }, + "panel": { + "info": { + "id": "panel.contact.info", + "defaultMessage": "Contact Information" + } + } + }, + "serviceConfig": { + "serviceName": "Contacts", + "servicePath": "contacts", + "serviceType": "utility", + "objectName": "Contact", + "documentName": "contacts" + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:contacts_common" + } + } + }, + "ns2:contacts_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/contact" + } + }, + "emailGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "emailGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.emailGroup.name", + "defaultMessage": "Email" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "email": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.email.name", + "defaultMessage": "Address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "emailType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.emailType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "emailTypes" + } + } + } + } + } + }, + "telephoneNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "telephoneNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumberGroup.name", + "defaultMessage": "Phone" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "telephoneNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "telephoneNumberType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "telephoneNumberTypes" + } + } + } + } + } + }, + "faxNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "faxNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumberGroup.name", + "defaultMessage": "Fax" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "faxNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "faxNumberType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "faxNumberTypes" + } + } + } + } + } + }, + "webAddressGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "webAddressGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddressGroup.name", + "defaultMessage": "Web site" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "webAddress": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddress.name", + "defaultMessage": "URL" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "webAddressType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "webAddressTypes" + } + } + } + } + } + }, + "addressGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "addressGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "addressTypes" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressStateOrProvince.name", + "defaultMessage": "State/province" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-state" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "addressCountries" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.contact.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "emailGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "emailGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "email" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "emailType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "faxNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "faxNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "faxNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "faxNumberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "webAddressGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "webAddressGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "webAddress" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "webAddressType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "contact" + }, + "exhibition": { + "messages": { + "record": { + "name": { + "id": "record.exhibition.name", + "defaultMessage": "Exhibition" + }, + "collectionName": { + "id": "record.exhibition.collectionName", + "defaultMessage": "Exhibitions" + } + }, + "panel": { + "info": { + "id": "panel.exhibition.info", + "defaultMessage": "Exhibition Information" + }, + "planningInfo": { + "id": "panel.exhibition.planningInfo", + "defaultMessage": "Exhibition Planning Information" + }, + "exhibitedObjectInformation": { + "id": "panel.exhibition.exhibitedObjectInformation", + "defaultMessage": "Exhibited Object Information" + } + } + }, + "serviceConfig": { + "serviceName": "Exhibition", + "servicePath": "exhibitions", + "serviceType": "procedure", + "objectName": "Exhibition", + "documentName": "exhibitions" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:exhibitions_common/exhibitionNumber" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/type" + }, + { + "op": "cont", + "path": "ns2:exhibitions_common/title" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/sponsors/sponsor" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/organizers/organizer" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venue" + }, + { + "op": "range", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venueOpeningDate" + }, + { + "op": "range", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venueClosingDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "exhibitionNumber": { + "messages": { + "label": { + "id": "column.exhibition.default.exhibitionNumber", + "defaultMessage": "Exhibition number" + } + }, + "order": 10, + "sortBy": "exhibitions_common:exhibitionNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.exhibition.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "exhibitions_common:title", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.exhibition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:exhibitions_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:exhibitions_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:exhibitions_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/exhibition" + } + }, + "exhibitionNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.exhibitions_common.exhibitionNumber.inUse", + "defaultMessage": "The exhibition number {value} is in use by another record." + }, + "name": { + "id": "field.exhibitions_common.exhibitionNumber.name", + "defaultMessage": "Exhibition number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "exhibition" + } + } + } + }, + "type": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.type.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitiontype" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sponsors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sponsor": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.sponsor.name", + "defaultMessage": "Sponsor" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "organizers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizer": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.organizer.name", + "defaultMessage": "Organizer" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "venueGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "venueGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.venueGroup.name", + "defaultMessage": "Venue" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "venue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venue.fullName", + "defaultMessage": "Venue name" + }, + "name": { + "id": "field.exhibitions_common.venue.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,organization/ulan,location/local,location/offsite,place/local,place/shared,place/tgn" + } + } + } + }, + "venueOpeningDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueOpeningDate.fullName", + "defaultMessage": "Venue opening date" + }, + "name": { + "id": "field.exhibitions_common.venueOpeningDate.name", + "defaultMessage": "Opening date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "venueClosingDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueClosingDate.fullName", + "defaultMessage": "Venue closing date" + }, + "name": { + "id": "field.exhibitions_common.venueClosingDate.name", + "defaultMessage": "Closing date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "venueAttendance": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueAttendance.fullName", + "defaultMessage": "Venue attendance" + }, + "name": { + "id": "field.exhibitions_common.venueAttendance.name", + "defaultMessage": "Attendance" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "venueUrl": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueUrl.fullName", + "defaultMessage": "Venue web address" + }, + "name": { + "id": "field.exhibitions_common.venueUrl.name", + "defaultMessage": "Web address" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "workingGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "workingGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.workingGroup.name", + "defaultMessage": "Working group" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "workingGroupTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.workingGroupTitle.fullName", + "defaultMessage": "Working group title" + }, + "name": { + "id": "field.exhibitions_common.workingGroupTitle.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "workingGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.workingGroupNote.fullName", + "defaultMessage": "Working group note" + }, + "name": { + "id": "field.exhibitions_common.workingGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionPersonGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPersonGroup.fullName", + "defaultMessage": "Working group member" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPersonGroup.name", + "defaultMessage": "Member" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPerson.fullName", + "defaultMessage": "Working group member name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPerson.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "exhibitionPersonRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPersonRole.fullName", + "defaultMessage": "Working group member role" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPersonRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionpersonrole" + } + } + } + } + } + } + } + }, + "planningNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.planningNote.name", + "defaultMessage": "Planning note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "curatorialNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.curatorialNote.name", + "defaultMessage": "Curatorial note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "generalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.generalNote.name", + "defaultMessage": "General note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "boilerplateText": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.boilerplateText.name", + "defaultMessage": "Boilerplate text" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "galleryRotationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "galleryRotationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.galleryRotationGroup.name", + "defaultMessage": "Gallery rotation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "galleryRotationName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationName.fullName", + "defaultMessage": "Gallery rotation name" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "galleryRotationStartDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "galleryRotationEndDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "galleryRotationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationNote.fullName", + "defaultMessage": "Gallery rotation note" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "exhibitionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionReferenceGroup.name", + "defaultMessage": "Bibliographic reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReference.fullName", + "defaultMessage": "Bibliographic reference" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "exhibitionReferenceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReferenceType.fullName", + "defaultMessage": "Bibliographic reference type" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReferenceType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionreferencetype" + } + } + } + }, + "exhibitionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReferenceNote.fullName", + "defaultMessage": "Bibliographic reference note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionSectionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionSectionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionSectionGroup.name", + "defaultMessage": "Exhibition section" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionSectionName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionName.fullName", + "defaultMessage": "Exhibition section name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionLocation.fullName", + "defaultMessage": "Exhibition section location" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionObjects": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionObjects.fullName", + "defaultMessage": "Exhibition section objects" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionObjects.name", + "defaultMessage": "Objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionNote.fullName", + "defaultMessage": "Exhibition section note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionStatusGroup.name", + "defaultMessage": "Exhibition status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatus.fullName", + "defaultMessage": "Exhibition status" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionstatus" + } + } + } + }, + "exhibitionStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatusDate.fullName", + "defaultMessage": "Exhibition status date" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "exhibitionStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatusNote.fullName", + "defaultMessage": "Exhibition status note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionObjectGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionObjectGroup.name", + "defaultMessage": "Object checklist" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionObjectNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectNumber.fullName", + "defaultMessage": "Object number" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectName.fullName", + "defaultMessage": "Object name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectConsCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectConsCheckDate.fullName", + "defaultMessage": "Object cons. check" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectConsCheckDate.name", + "defaultMessage": "Cons. check" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "exhibitionObjectConsTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectConsTreatment.fullName", + "defaultMessage": "Object cons. treatment" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectConsTreatment.name", + "defaultMessage": "Cons. treatment" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exhibitionConsTreatmentStatuses" + } + } + } + }, + "exhibitionObjectMount": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectMount.fullName", + "defaultMessage": "Object mount" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectMount.name", + "defaultMessage": "Mount" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exhibitionMountStatuses" + } + } + } + }, + "exhibitionObjectSection": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectSection.fullName", + "defaultMessage": "Object section" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectSection.name", + "defaultMessage": "Section" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectCase": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectCase.fullName", + "defaultMessage": "Object case" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectCase.name", + "defaultMessage": "Case" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectSeqNum": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectSeqNum.fullName", + "defaultMessage": "Object seq. #" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectSeqNum.name", + "defaultMessage": "Seq. #" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectRotation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectRotation.fullName", + "defaultMessage": "Object rotation" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectRotation.name", + "defaultMessage": "Rotation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectNote.fullName", + "defaultMessage": "Object note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.exhibition.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sponsors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sponsor" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizer" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "venueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "venueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "venue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueOpeningDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueClosingDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueAttendance" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueUrl" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workingGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "planningNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "curatorialNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "generalNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "boilerplateText" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationStartDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationEndDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "planningInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitedObjectInformation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectConsCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectConsTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectMount" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectSection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectCase" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectSeqNum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectRotation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "exhibition" + }, + "export": { + "messages": { + "record": { + "name": { + "id": "record.export.name", + "defaultMessage": "Export" + }, + "collectionName": { + "id": "record.export.collectionName", + "defaultMessage": "Exports" + } + } + }, + "serviceConfig": { + "servicePath": "exports", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "export" + }, + "group": { + "messages": { + "record": { + "name": { + "id": "record.group.name", + "defaultMessage": "Group" + }, + "collectionName": { + "id": "record.group.collectionName", + "defaultMessage": "Groups" + } + }, + "panel": { + "info": { + "id": "panel.group.info", + "defaultMessage": "Group Information" + } + } + }, + "serviceConfig": { + "serviceName": "Groups", + "servicePath": "groups", + "serviceType": "procedure", + "objectName": "Group", + "documentName": "groups" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:groups_common/title" + }, + { + "op": "eq", + "path": "ns2:groups_common/responsibleDepartment" + }, + { + "op": "eq", + "path": "ns2:groups_common/owner" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "title": { + "messages": { + "label": { + "id": "column.group.default.title", + "defaultMessage": "Title" + } + }, + "order": 10, + "sortBy": "groups_common:title", + "width": 250 + }, + "owner": { + "messages": { + "label": { + "id": "column.group.default.owner", + "defaultMessage": "Owner" + } + }, + "order": 20, + "sortBy": "groups_common:owner", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.group.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:groups_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:groups_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:groups_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/group" + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.title.name", + "defaultMessage": "Title" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "responsibleDepartment": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.responsibleDepartment.name", + "defaultMessage": "Responsible department" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "departments" + } + } + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.owner.name", + "defaultMessage": "Group owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "groupEarliestSingleDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.groups_common.groupEarliestSingleDate.name", + "defaultMessage": "Earliest/single date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "groupLatestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.groups_common.groupLatestDate.name", + "defaultMessage": "Latest date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "scopeNote": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.scopeNote.name", + "defaultMessage": "Scope note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.group.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupEarliestSingleDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupLatestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "group" + }, + "idgenerator": { + "messages": { + "record": { + "name": { + "id": "record.idgenerator.name", + "defaultMessage": "ID Generator" + }, + "collectionName": { + "id": "record.idgenerator.collectionName", + "defaultMessage": "ID Generators" + } + } + }, + "serviceConfig": { + "servicePath": "idgenerators", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "idgenerator" + }, + "insurance": { + "messages": { + "record": { + "name": { + "id": "record.insurance.name", + "defaultMessage": "Insurance/Indemnity" + }, + "collectionName": { + "id": "record.insurance.collectionName", + "defaultMessage": "Insurance/Indemnities" + } + }, + "inputTable": { + "insurancePurchasePrice": { + "id": "inputTable.insurance.insurancePurchasePrice", + "defaultMessage": "Insurance/indemnity price" + }, + "minimumLiabilityPrice": { + "id": "inputTable.insurance.minimumLiabilityPrice", + "defaultMessage": "Minimum liability price" + }, + "authorization": { + "id": "inputTable.insurance.authorization", + "defaultMessage": "Authorization" + } + }, + "panel": { + "info": { + "id": "panel.insurance.info", + "defaultMessage": "Insurance and Indemnity Information" + } + } + }, + "serviceConfig": { + "serviceName": "Insurance", + "servicePath": "insurances", + "serviceType": "procedure", + "objectName": "Insurance", + "documentName": "insurances" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:insurances_common/insuranceIndemnityReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityType" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insurerIndemnifier" + }, + { + "op": "cont", + "path": "ns2:insurances_common/insuranceIndemnityPolicyNumber" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityAuthorizer" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityStatusGroupList/insuranceIndemnityStatusGroup/insuranceIndemnityStatus" + }, + { + "op": "range", + "path": "ns2:insurances_common/insuranceIndemnityStatusGroupList/insuranceIndemnityStatusGroup/insuranceIndemnityStatusDate" + }, + { + "op": "eq", + "path": "ns2:insurances_common/quoteProviderGroupList/quoteProviderGroup/insuranceIndemnityQuoteProvider" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "insuranceIndemnityReferenceNumber": { + "messages": { + "label": { + "id": "column.insurance.default.insuranceIndemnityReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "insurances_common:insuranceIndemnityReferenceNumber", + "width": 200 + }, + "insurerIndemnifier": { + "messages": { + "label": { + "id": "column.insurance.default.insurerIndemnifier", + "defaultMessage": "Insurer/indemnifier" + } + }, + "order": 20, + "sortBy": "insurances_common:insurerIndemnifier", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.insurance.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:insurances_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:insurances_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:insurances_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/insurance" + } + }, + "insuranceIndemnityReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.insurances_common.insuranceIndemnityReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "insurance,indemnity" + } + } + } + }, + "insuranceIndemnityType": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "insurancetype" + } + } + } + }, + "insurerIndemnifier": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insurerIndemnifier.name", + "defaultMessage": "Insurer/indemnifier" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "insuranceIndemnityPolicyNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityPolicyNumber.name", + "defaultMessage": "Policy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityCurrency.fullName", + "defaultMessage": "Insurance/indemnity price currency" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "insuranceIndemnityValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityValue.fullName", + "defaultMessage": "Insurance/indemnity price value" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minimumLiabilityCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.minimumLiabilityCurrency.fullName", + "defaultMessage": "Minimum liability price currency" + }, + "name": { + "id": "field.insurances_common.minimumLiabilityCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "minimumLiabilityValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.minimumLiabilityValue.fullName", + "defaultMessage": "Minimum liability price value" + }, + "name": { + "id": "field.insurances_common.minimumLiabilityValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + }, + "insuranceIndemnityAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityAuthorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityAuthorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "insuranceIndemnityStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "insuranceIndemnityStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusGroup.name", + "defaultMessage": "Status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "insuranceIndemnityStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatus.fullName", + "defaultMessage": "Status type" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatus.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "insurancestatus" + } + } + } + }, + "insuranceIndemnityStatusDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatusDate.fullName", + "defaultMessage": "Status date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusDate.name", + "defaultMessage": "Date" + } + }, + "dataType": "DATA_TYPE_DATE", + "view": { + "type": "DateInput" + } + } + }, + "insuranceIndemnityStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatusNote.fullName", + "defaultMessage": "Status note" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "insuranceIndemnityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "quoteProviderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "quoteProviderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.quoteProviderGroup.name", + "defaultMessage": "Quote" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "insuranceIndemnityQuoteProvider": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteProvider.fullName", + "defaultMessage": "Quote provider" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteProvider.name", + "defaultMessage": "Provider" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "insuranceIndemnityQuoteCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteCurrency.fullName", + "defaultMessage": "Quote currency" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "insuranceIndemnityQuoteValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteValue.fullName", + "defaultMessage": "Quote value" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityQuoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteDate.fullName", + "defaultMessage": "Quote date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.insurance.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurerIndemnifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityPolicyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurancePurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorization", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "quoteProviderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "quoteProviderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteProvider" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "insurance" + }, + "intake": { + "messages": { + "record": { + "name": { + "id": "record.intake.name", + "defaultMessage": "Intake" + }, + "collectionName": { + "id": "record.intake.collectionName", + "defaultMessage": "Intakes" + } + }, + "panel": { + "objectEntryInfo": { + "id": "panel.intake.objectEntryInfo", + "defaultMessage": "Object Entry Information" + }, + "objectCollectionInfo": { + "id": "panel.intake.objectCollectionInfo", + "defaultMessage": "Object Collection Information" + }, + "valuation": { + "id": "panel.intake.valuation", + "defaultMessage": "Valuation Information" + }, + "insurance": { + "id": "panel.intake.insurance", + "defaultMessage": "Insurance Information" + }, + "location": { + "id": "panel.intake.location", + "defaultMessage": "Location Information" + }, + "condition": { + "id": "panel.intake.condition", + "defaultMessage": "Condition Check Information" + } + } + }, + "serviceConfig": { + "serviceName": "Intake", + "servicePath": "intakes", + "serviceType": "procedure", + "objectName": "Intake", + "documentName": "intakes" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:intakes_common/entryNumber" + }, + { + "op": "range", + "path": "ns2:intakes_common/entryDate" + }, + { + "op": "eq", + "path": "ns2:intakes_common/entryReason" + }, + { + "op": "eq", + "path": "ns2:intakes_common/entryMethods/entryMethod" + }, + { + "op": "range", + "path": "ns2:intakes_common/returnDate" + }, + { + "op": "eq", + "path": "ns2:intakes_common/currentOwners/currentOwner" + }, + { + "op": "eq", + "path": "ns2:intakes_common/depositorGroupList/depositorGroup/depositor" + }, + { + "op": "cont", + "path": "ns2:intakes_common/fieldCollectionEventNames/fieldCollectionEventName" + }, + { + "op": "eq", + "path": "ns2:intakes_common/currentLocationGroupList/currentLocationGroup/currentLocation" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "entryNumber": { + "messages": { + "label": { + "id": "column.intake.default.entryNumber", + "defaultMessage": "Entry number" + } + }, + "order": 10, + "sortBy": "intakes_common:entryNumber", + "width": 200 + }, + "currentOwner": { + "messages": { + "label": { + "id": "column.intake.default.currentOwner", + "defaultMessage": "Current owner" + } + }, + "order": 20, + "sortBy": "intakes_common:currentOwners/0", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.intake.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:intakes_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:intakes_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:intakes_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/intake" + } + }, + "entryNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.intakes_common.entryNumber.inUse", + "defaultMessage": "The entry number {value} is in use by another record." + }, + "name": { + "id": "field.intakes_common.entryNumber.name", + "defaultMessage": "Entry number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "intake,study,evaluation" + } + } + } + }, + "entryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.entryDate.name", + "defaultMessage": "Entry date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "entryReason": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryReason.name", + "defaultMessage": "Entry reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "entryReasons" + } + } + } + }, + "entryMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "entryMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryMethod.name", + "defaultMessage": "Entry method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "entrymethod" + } + } + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.returnDate.name", + "defaultMessage": "Return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "currentOwners": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "currentOwner": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.currentOwner.name", + "defaultMessage": "Current owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "depositorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "depositorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.depositorGroup.name", + "defaultMessage": "Depositor" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "depositor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.depositor.fullName", + "defaultMessage": "Depositor name" + }, + "name": { + "id": "field.intakes_common.depositor.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "depositorsRequirements": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.depositorsRequirements.fullName", + "defaultMessage": "Depositor requirements" + }, + "name": { + "id": "field.intakes_common.depositorsRequirements.name", + "defaultMessage": "Requirements" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "approvalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.approvalGroup.name", + "defaultMessage": "Approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalGroup.approvalGroup.fullName", + "defaultMessage": "Approval group" + }, + "name": { + "id": "field.intakes_common.approvalGroup.approvalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "approvalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalIndividual.fullName", + "defaultMessage": "Approval individual" + }, + "name": { + "id": "field.intakes_common.approvalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "approvalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalStatus.fullName", + "defaultMessage": "Approval status" + }, + "name": { + "id": "field.intakes_common.approvalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "approvalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.approvalDate.fullName", + "defaultMessage": "Approval status date" + }, + "name": { + "id": "field.intakes_common.approvalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "approvalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalNote.fullName", + "defaultMessage": "Approval note" + }, + "name": { + "id": "field.intakes_common.approvalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "entryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryNote.name", + "defaultMessage": "Entry note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.packingNote.name", + "defaultMessage": "Packing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionDate.name", + "defaultMessage": "Field collection date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "fieldCollectionMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionMethod.name", + "defaultMessage": "Field collection method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "collectionmethod" + } + } + } + } + }, + "fieldCollectionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionNote.name", + "defaultMessage": "Field collection note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionNumber.name", + "defaultMessage": "Field collection number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSource": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionSource.name", + "defaultMessage": "Field collection source" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,concept/ethculture" + } + } + } + } + }, + "fieldCollectors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollector": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollector.name", + "defaultMessage": "Field collector" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "fieldCollectionEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "valuer": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.valuer.name", + "defaultMessage": "Valuer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "valuationReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.valuationReferenceNumber.fullName", + "defaultMessage": "Valuation reference number" + }, + "name": { + "id": "field.intakes_common.valuationReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insurers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "insurer": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.insurer.name", + "defaultMessage": "Insurer" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "insurancePolicyNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insurancePolicyNumber.fullName", + "defaultMessage": "Insurance policy number" + }, + "name": { + "id": "field.intakes_common.insurancePolicyNumber.name", + "defaultMessage": "Policy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceRenewalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceRenewalDate.fullName", + "defaultMessage": "Insurance renewal date" + }, + "name": { + "id": "field.intakes_common.insuranceRenewalDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "insuranceReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceReferenceNumber.fullName", + "defaultMessage": "Insurance reference number" + }, + "name": { + "id": "field.intakes_common.insuranceReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceNote.fullName", + "defaultMessage": "Insurance note" + }, + "name": { + "id": "field.intakes_common.insuranceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "currentLocationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "currentLocationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.currentLocationGroup.name", + "defaultMessage": "Current location" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "currentLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocation.fullName", + "defaultMessage": "Current location" + }, + "name": { + "id": "field.intakes_common.currentLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared,place/local" + } + } + } + }, + "currentLocationFitness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocationFitness.fullName", + "defaultMessage": "Current location fitness" + }, + "name": { + "id": "field.intakes_common.currentLocationFitness.name", + "defaultMessage": "Fitness" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditionfitness" + } + } + } + }, + "currentLocationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocationNote.fullName", + "defaultMessage": "Current location note" + }, + "name": { + "id": "field.intakes_common.currentLocationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "locationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.locationDate.name", + "defaultMessage": "Location date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "normalLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.normalLocation.name", + "defaultMessage": "Normal location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared,place/local" + } + } + } + }, + "conditionCheckMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckMethod.fullName", + "defaultMessage": "Condition check method" + }, + "name": { + "id": "field.intakes_common.conditionCheckMethod.name", + "defaultMessage": "Method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditioncheckmethod" + } + } + } + } + }, + "conditionCheckReasons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckReason": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckReason.fullName", + "defaultMessage": "Condition check reason" + }, + "name": { + "id": "field.intakes_common.conditionCheckReason.name", + "defaultMessage": "Reason" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditioncheckreason" + } + } + } + } + }, + "conditionCheckersOrAssessors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckerOrAssessor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckerOrAssessor.fullName", + "defaultMessage": "Condition check assessor" + }, + "name": { + "id": "field.intakes_common.conditionCheckerOrAssessor.name", + "defaultMessage": "Assessor" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "conditionCheckNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckNote.fullName", + "defaultMessage": "Condition check note" + }, + "name": { + "id": "field.intakes_common.conditionCheckNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckDate.fullName", + "defaultMessage": "Condition check date" + }, + "name": { + "id": "field.intakes_common.conditionCheckDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionCheckReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckReferenceNumber.fullName", + "defaultMessage": "Condition check reference number" + }, + "name": { + "id": "field.intakes_common.conditionCheckReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.intake.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "returnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentOwners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentOwner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "depositorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depositor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorsRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectCollectionInfo", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventName" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valuation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valuer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valuationReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurance", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insurers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "insurer" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurancePolicyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceRenewalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "condition", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckersOrAssessors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckerOrAssessor" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "doorstep": { + "messages": { + "name": { + "id": "form.intake.doorstep.name", + "defaultMessage": "Doorstep Donation Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "condition", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckersOrAssessors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckerOrAssessor" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "intake" + }, + "loanin": { + "messages": { + "record": { + "name": { + "id": "record.loanin.name", + "defaultMessage": "Loan In" + }, + "collectionName": { + "id": "record.loanin.collectionName", + "defaultMessage": "Loans In" + } + }, + "panel": { + "info": { + "id": "panel.loanin.info", + "defaultMessage": "Loan In Information" + } + }, + "inputTable": { + "borrower": { + "id": "inputTable.loanin.borrower", + "defaultMessage": "Borrower" + } + } + }, + "serviceConfig": { + "serviceName": "Loanin", + "servicePath": "loansin", + "serviceType": "procedure", + "objectName": "Loanin", + "documentName": "loansin" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:loansin_common/loanInNumber" + }, + { + "op": "eq", + "path": "ns2:loansin_common/loanPurpose" + }, + { + "op": "eq", + "path": "ns2:loansin_common/loanStatusGroupList/loanStatusGroup/loanStatus" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lender" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lendersContact" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lendersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansin_common/borrowersContact" + }, + { + "op": "eq", + "path": "ns2:loansin_common/borrowersAuthorizer" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanInDate" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanReturnDate" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanRenewalApplicationDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "loanInNumber": { + "messages": { + "label": { + "id": "column.loanin.default.loanInNumber", + "defaultMessage": "Loan in number" + } + }, + "order": 10, + "sortBy": "loansin_common:loanInNumber", + "width": 250 + }, + "lender": { + "messages": { + "label": { + "id": "column.loanin.default.lender", + "defaultMessage": "Lender" + } + }, + "order": 20, + "sortBy": "loansin_common:lenderGroupList/0/lender", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.loanin.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansin_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansin_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:loansin_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanin" + } + }, + "loanInNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.loansin_common.loanInNumber.inUse", + "defaultMessage": "The loan in number {value} is in use by another record." + }, + "name": { + "id": "field.loansin_common.loanInNumber.name", + "defaultMessage": "Loan in number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "loanin" + } + } + } + }, + "loanPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanPurpose.name", + "defaultMessage": "Loan purpose" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "loanPurposes" + } + } + } + }, + "loanStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "loanStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanStatusGroup.name", + "defaultMessage": "Loan status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "loanGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanGroup.fullName", + "defaultMessage": "Loan status group" + }, + "name": { + "id": "field.loansin_common.loanGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "loanIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanIndividual.fullName", + "defaultMessage": "Loan status individual" + }, + "name": { + "id": "field.loansin_common.loanIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "loanStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatus.fullName", + "defaultMessage": "Loan status" + }, + "name": { + "id": "field.loansin_common.loanStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "loanoutstatus" + } + } + } + }, + "loanStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatusDate.fullName", + "defaultMessage": "Loan status date" + }, + "name": { + "id": "field.loansin_common.loanStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatusNote.fullName", + "defaultMessage": "Loan status note" + }, + "name": { + "id": "field.loansin_common.loanStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "lenderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "lenderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.lenderGroup.name", + "defaultMessage": "Lender" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "lender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lender.fullName", + "defaultMessage": "Lender name" + }, + "name": { + "id": "field.loansin_common.lender.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "lendersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lendersContact.fullName", + "defaultMessage": "Lender contact" + }, + "name": { + "id": "field.loansin_common.lendersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lendersAuthorizer.fullName", + "defaultMessage": "Lender authorizer" + }, + "name": { + "id": "field.loansin_common.lendersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.lendersAuthorizationDate.fullName", + "defaultMessage": "Lender authorization date" + }, + "name": { + "id": "field.loansin_common.lendersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "borrowersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersContact.fullName", + "defaultMessage": "Borrower contact" + }, + "name": { + "id": "field.loansin_common.borrowersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersAuthorizer.fullName", + "defaultMessage": "Borrower authorizer" + }, + "name": { + "id": "field.loansin_common.borrowersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersAuthorizationDate.fullName", + "defaultMessage": "Borrower authorization date" + }, + "name": { + "id": "field.loansin_common.borrowersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanInConditions": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanInConditions.name", + "defaultMessage": "Conditions of loan" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanInNote": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanInNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanInDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanInDate.name", + "defaultMessage": "Loan in date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanReturnDate.name", + "defaultMessage": "Loan return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanRenewalApplicationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanRenewalApplicationDate.name", + "defaultMessage": "Loan renewal application date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.loanin.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lenderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "lenderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "lender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrower", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "borrowersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInConditions" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanInNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanReturnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanRenewalApplicationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "loanin" + }, + "loanout": { + "messages": { + "record": { + "name": { + "id": "record.loanout.name", + "defaultMessage": "Loan Out" + }, + "collectionName": { + "id": "record.loanout.collectionName", + "defaultMessage": "Loans Out" + } + }, + "panel": { + "info": { + "id": "panel.loanout.info", + "defaultMessage": "Loan Out Information" + } + }, + "inputTable": { + "borrower": { + "id": "inputTable.loanout.borrower", + "defaultMessage": "Borrower" + }, + "lender": { + "id": "inputTable.loanout.lender", + "defaultMessage": "Lender" + } + } + }, + "serviceConfig": { + "serviceName": "Loanout", + "servicePath": "loansout", + "serviceType": "procedure", + "objectName": "Loanout", + "documentName": "loansout" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:loansout_common/loanOutNumber" + }, + { + "op": "eq", + "path": "ns2:loansout_common/loanPurpose" + }, + { + "op": "eq", + "path": "ns2:loansout_common/lendersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansout_common/lendersContact" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrower" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrowersContact" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrowersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansout_common/loanStatusGroupList/loanStatusGroup/loanStatus" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanOutDate" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanReturnDate" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanRenewalApplicationDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "loanOutNumber": { + "messages": { + "label": { + "id": "column.loanout.default.loanOutNumber", + "defaultMessage": "Loan out number" + } + }, + "order": 10, + "sortBy": "loansout_common:loanOutNumber", + "width": 250 + }, + "borrower": { + "messages": { + "label": { + "id": "column.loanout.default.borrower", + "defaultMessage": "Borrower" + } + }, + "order": 20, + "sortBy": "loansout_common:borrower", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.loanout.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansout_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansout_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:loansout_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanout" + } + }, + "loanOutNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.loansout_common.loanOutNumber.inUse", + "defaultMessage": "The loan out number {value} is in use by another record." + }, + "name": { + "id": "field.loansout_common.loanOutNumber.name", + "defaultMessage": "Loan out number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "loanout" + } + } + } + }, + "loanPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanPurpose.name", + "defaultMessage": "Loan purpose" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "loanPurposes" + } + } + } + }, + "lendersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.lendersAuthorizer.fullName", + "defaultMessage": "Lender authorizer" + }, + "name": { + "id": "field.loansout_common.lendersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.lendersContact.fullName", + "defaultMessage": "Lender contact" + }, + "name": { + "id": "field.loansout_common.lendersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.lendersAuthorizationDate.fullName", + "defaultMessage": "Lender authorization date" + }, + "name": { + "id": "field.loansout_common.lendersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "borrower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrower.fullName", + "defaultMessage": "Borrower name" + }, + "name": { + "id": "field.loansout_common.borrower.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "borrowersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersContact.fullName", + "defaultMessage": "Borrower contact" + }, + "name": { + "id": "field.loansout_common.borrowersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersAuthorizer.fullName", + "defaultMessage": "Borrower authorizer" + }, + "name": { + "id": "field.loansout_common.borrowersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersAuthorizationDate.fullName", + "defaultMessage": "Borrower authorization date" + }, + "name": { + "id": "field.loansout_common.borrowersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "specialConditionsOfLoan": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.specialConditionsOfLoan.name", + "defaultMessage": "Conditions of loan" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanOutNote": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanOutNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "loanStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanStatusGroup.name", + "defaultMessage": "Loan status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "loanGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanGroup.fullName", + "defaultMessage": "Loan status group" + }, + "name": { + "id": "field.loansout_common.loanGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "loanIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanIndividual.fullName", + "defaultMessage": "Loan status individual" + }, + "name": { + "id": "field.loansout_common.loanIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "loanStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatus.fullName", + "defaultMessage": "Loan status" + }, + "name": { + "id": "field.loansout_common.loanStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "loanoutstatus" + } + } + } + }, + "loanStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatusDate.fullName", + "defaultMessage": "Loan status date" + }, + "name": { + "id": "field.loansout_common.loanStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatusNote.fullName", + "defaultMessage": "Loan status note" + }, + "name": { + "id": "field.loansout_common.loanStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "loanOutDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanOutDate.name", + "defaultMessage": "Loan out date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanReturnDate.name", + "defaultMessage": "Loan return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanRenewalApplicationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanRenewalApplicationDate.name", + "defaultMessage": "Loan renewal application date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.loanout.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanOutNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lender", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrower", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "borrower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "specialConditionsOfLoan" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanOutNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanOutDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanReturnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanRenewalApplicationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "loanout" + }, + "location": { + "messages": { + "record": { + "name": { + "id": "record.location.name", + "defaultMessage": "Storage Location" + }, + "collectionName": { + "id": "record.location.collectionName", + "defaultMessage": "Storage Locations" + } + }, + "panel": { + "info": { + "id": "panel.location.info", + "defaultMessage": "Storage Location Information" + }, + "hierarchy": { + "id": "panel.location.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.location.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Locations", + "servicePath": "locationauthorities", + "serviceType": "authority", + "objectName": "Locationitem", + "documentName": "locations" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.location.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.location.all.collectionName", + "defaultMessage": "All Locations" + }, + "itemName": { + "id": "vocab.location.all.itemName", + "defaultMessage": "Location" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.location.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.location.local.collectionName", + "defaultMessage": "Local Storage Locations" + }, + "itemName": { + "id": "vocab.location.local.itemName", + "defaultMessage": "Local Storage Location" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(location)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "offsite": { + "messages": { + "name": { + "id": "vocab.location.offsite.name", + "defaultMessage": "Offsite" + }, + "collectionName": { + "id": "vocab.location.offsite.collectionName", + "defaultMessage": "Offsite Storage Locations" + }, + "itemName": { + "id": "vocab.location.offsite.itemName", + "defaultMessage": "Offsite Storage Location" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(offsite_sla)" + }, + "name": "offsite", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:locations_common/locationType" + }, + { + "op": "cont", + "path": "ns2:locations_common/securityNote" + }, + { + "op": "cont", + "path": "ns2:locations_common/address" + }, + { + "op": "cont", + "path": "ns2:locations_common/accessNote" + }, + { + "op": "cont", + "path": "ns2:locations_common/conditionGroupList/conditionGroup/conditionNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.location.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "locations_common:locTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.location.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "locations_common:locTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.location.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.location.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:locations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.location.parent", + "defaultMessage": "Broader location" + }, + "children": { + "id": "hierarchyInput.location.children", + "defaultMessage": "Narrower locations" + }, + "siblings": { + "id": "hierarchyInput.location.siblings", + "defaultMessage": "Adjacent locations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:locations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:locations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "locTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.locations_common.locTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "locTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.locTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.locations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.locations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.locations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.locations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "locationtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.locations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.locations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.locations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.locations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.locations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.locations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.locations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.locations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.locations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.locations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.locations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.locations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.locations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "locationType": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.locationType.name", + "defaultMessage": "Storage location type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "locationtype" + } + } + } + }, + "securityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.securityNote.name", + "defaultMessage": "Security note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "address": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.address.name", + "defaultMessage": "Address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "accessNote": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.accessNote.name", + "defaultMessage": "Access note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.conditionGroup.name", + "defaultMessage": "Condition note" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "conditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.conditionNote.fullName", + "defaultMessage": "Condition note" + }, + "name": { + "id": "field.locations_common.conditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "conditionNoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.locations_common.conditionNoteDate.fullName", + "defaultMessage": "Condition note date" + }, + "name": { + "id": "field.locations_common.conditionNoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.location.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "locTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "securityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "address" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionNoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.location.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "address" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "location" + }, + "media": { + "messages": { + "record": { + "name": { + "id": "record.media.name", + "defaultMessage": "Media Handling" + }, + "collectionName": { + "id": "record.media.collectionName", + "defaultMessage": "Media Handling" + } + }, + "panel": { + "media": { + "id": "panel.media.media", + "defaultMessage": "Media Handling Information" + }, + "file": { + "id": "panel.media.file", + "defaultMessage": "File Information" + } + } + }, + "serviceConfig": { + "serviceName": "Media", + "servicePath": "media", + "serviceType": "procedure", + "objectName": "Media", + "documentName": "media" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:media_common/identificationNumber" + }, + { + "op": "cont", + "path": "ns2:media_common/title" + }, + { + "op": "eq", + "path": "ns2:media_common/creator" + }, + { + "op": "eq", + "path": "ns2:media_common/languageList/language" + }, + { + "op": "eq", + "path": "ns2:media_common/publisher" + }, + { + "op": "eq", + "path": "ns2:media_common/typeList/type" + }, + { + "op": "range", + "path": "ns2:media_common/dateGroupList/dateGroup" + }, + { + "op": "cont", + "path": "ns2:media_common/source" + }, + { + "op": "cont", + "path": "ns2:media_common/subjectList/subject" + }, + { + "op": "eq", + "path": "ns2:media_common/rightsHolder" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "blobCsid": { + "messages": { + "label": { + "id": "column.media.default.blobCsid", + "defaultMessage": "Thumbnail" + } + }, + "order": 10, + "width": 70 + }, + "identificationNumber": { + "messages": { + "label": { + "id": "column.media.default.identificationNumber", + "defaultMessage": "Identification number" + } + }, + "order": 20, + "sortBy": "media_common:identificationNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.media.default.title", + "defaultMessage": "Title" + } + }, + "order": 30, + "sortBy": "media_common:title", + "width": 380 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.media.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:media_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:media_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:media_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/media" + } + }, + "identificationNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.media_common.identificationNumber.inUse", + "defaultMessage": "The identification number {value} is in use by another record." + }, + "name": { + "id": "field.media_common.identificationNumber.name", + "defaultMessage": "Identification number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "media" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "externalUrl": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.externalUrl.name", + "defaultMessage": "External URL" + } + }, + "view": { + "type": "URLInput" + } + } + }, + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/media" + } + } + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contributor": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.contributor.name", + "defaultMessage": "Contributor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "creator": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.creator.name", + "defaultMessage": "Creator" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "languageList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "language": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.language.name", + "defaultMessage": "Language" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + }, + "publisher": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.publisher.name", + "defaultMessage": "Publisher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "relationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "relation": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.relation.name", + "defaultMessage": "Relation" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "copyrightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.copyrightStatement.name", + "defaultMessage": "Copyright statement" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "type": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.type.name", + "defaultMessage": "Type" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "mediaTypes" + } + } + } + } + }, + "coverage": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.coverage.name", + "defaultMessage": "Coverage" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "subjectList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "subject": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.subject.name", + "defaultMessage": "Subject" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "rightsHolder": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.rightsHolder.name", + "defaultMessage": "Rights holder" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "altText": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.altText.name", + "defaultMessage": "Alt text" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "checksumGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "checksumGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.checksumGroup.name", + "defaultMessage": "Checksum" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "checksumValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.media_common.checksumValue.fullName", + "defaultMessage": "Checksum value" + }, + "name": { + "id": "field.media_common.checksumValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "checksumType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.media_common.checksumType.fullName", + "defaultMessage": "Checksum type" + }, + "name": { + "id": "field.media_common.checksumType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "checksumtypes" + } + } + } + }, + "checksumDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.media_common.checksumDate.fullName", + "defaultMessage": "Checksum date" + }, + "name": { + "id": "field.media_common.checksumDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.media.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "media", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identificationNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "file", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "blob", + "showDetachButton": true + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "externalUrl" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "checksumGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "checksumValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contributor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creator" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "languageList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "language" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "relationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "copyrightStatement" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "typeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coverage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "source" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "subjectList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "subject" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightsHolder" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "description" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altText" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "subrecords": { + "blob": { + "recordType": "blob", + "csidField": [ + "document", + "ns2:media_common", + "blobCsid" + ], + "saveStage": "before" + } + }, + "name": "media" + }, + "movement": { + "messages": { + "record": { + "name": { + "id": "record.movement.name", + "defaultMessage": "Location/Movement/Inventory" + }, + "collectionName": { + "id": "record.movement.collectionName", + "defaultMessage": "Location/Movement/Inventory" + } + }, + "panel": { + "location": { + "id": "panel.movement.location", + "defaultMessage": "Object Location Information" + }, + "movement": { + "id": "panel.movement.movement", + "defaultMessage": "Movement Information" + }, + "inventory": { + "id": "panel.movement.inventory", + "defaultMessage": "Inventory Information" + } + }, + "inputTable": { + "currentLocation": { + "id": "inputTable.movement.currentLocation", + "defaultMessage": "Current location" + } + } + }, + "serviceConfig": { + "serviceName": "Movements", + "servicePath": "movements", + "serviceType": "procedure", + "objectName": "Movement", + "documentName": "movements" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:movements_common/movementReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:movements_common/normalLocation" + }, + { + "op": "eq", + "path": "ns2:movements_common/currentLocation" + }, + { + "op": "range", + "path": "ns2:movements_common/locationDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/reasonForMove" + }, + { + "op": "eq", + "path": "ns2:movements_common/movementMethods/movementMethod" + }, + { + "op": "range", + "path": "ns2:movements_common/plannedRemovalDate" + }, + { + "op": "range", + "path": "ns2:movements_common/removalDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/movementContact" + }, + { + "op": "eq", + "path": "ns2:movements_common/inventoryActionRequired" + }, + { + "op": "eq", + "path": "ns2:movements_common/frequencyForInventory" + }, + { + "op": "range", + "path": "ns2:movements_common/inventoryDate" + }, + { + "op": "range", + "path": "ns2:movements_common/nextInventoryDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/inventoryContactList/inventoryContact" + }, + { + "op": "cont", + "path": "ns2:movements_common/inventoryNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "movementReferenceNumber": { + "messages": { + "label": { + "id": "column.movement.default.movementReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 20, + "sortBy": "movements_common:movementReferenceNumber", + "width": 230 + }, + "currentLocation": { + "messages": { + "label": { + "id": "column.movement.default.currentLocation", + "defaultMessage": "Current location" + } + }, + "order": 30, + "sortBy": "movements_common:currentLocation", + "width": 250 + }, + "locationDate": { + "messages": { + "label": { + "id": "column.movement.default.locationDate", + "defaultMessage": "Location date" + } + }, + "order": 35, + "sortBy": "movements_common:locationDate", + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.movement.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:movements_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:movements_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:movements_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/movement" + } + }, + "movementReferenceNumber": { + "[config]": { + "messages": { + "inUse": { + "id": "field.movements_common.movementReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.movements_common.movementReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "inventory,location,movement" + } + } + } + }, + "normalLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.normalLocation.name", + "defaultMessage": "Normal location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + } + } + }, + "currentLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocation.fullName", + "defaultMessage": "Current location" + }, + "name": { + "id": "field.movements_common.currentLocation.name", + "defaultMessage": "Location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + } + } + }, + "currentLocationFitness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocationFitness.fullName", + "defaultMessage": "Current location fitness" + }, + "name": { + "id": "field.movements_common.currentLocationFitness.name", + "defaultMessage": "Fitness" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationFitnesses" + } + } + } + }, + "currentLocationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocationNote.fullName", + "defaultMessage": "Current location note" + }, + "name": { + "id": "field.movements_common.currentLocationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "locationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.locationDate.name", + "defaultMessage": "Location date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "reasonForMove": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.reasonForMove.name", + "defaultMessage": "Reason for move" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "moveReasons" + } + } + } + }, + "movementMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "movementMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.movementMethod.name", + "defaultMessage": "Movement method" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "moveMethods" + } + } + } + } + }, + "plannedRemovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.plannedRemovalDate.name", + "defaultMessage": "Planned removal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "removalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.removalDate.name", + "defaultMessage": "Removal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "movementContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.movementContact.fullName", + "defaultMessage": "Movement contact" + }, + "name": { + "id": "field.movements_common.movementContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "movementNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.movementNote.fullName", + "defaultMessage": "Movement note" + }, + "name": { + "id": "field.movements_common.movementNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inventoryActionRequired": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.inventoryActionRequired.name", + "defaultMessage": "Inventory action required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "invActions" + } + } + } + }, + "frequencyForInventory": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.frequencyForInventory.name", + "defaultMessage": "Inventory frequency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "invFreqs" + } + } + } + }, + "inventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.inventoryDate.name", + "defaultMessage": "Inventory date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nextInventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.nextInventoryDate.name", + "defaultMessage": "Next inventory date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "inventoryContactList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.inventoryContact.fullName", + "defaultMessage": "Inventory contact" + }, + "name": { + "id": "field.movements_common.inventoryContact.name", + "defaultMessage": "Contact" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "inventoryNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.inventoryNote.fullName", + "defaultMessage": "Inventory note" + }, + "name": { + "id": "field.movements_common.inventoryNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.movement.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "movementReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movement", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reasonForMove" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movementMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "movementMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "plannedRemovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "removalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "movementContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movementNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventory", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryActionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "frequencyForInventory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nextInventoryDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryContactList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryContact" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "lockable": true, + "lockOnSave": "prompt", + "name": "movement" + }, + "object": { + "messages": { + "record": { + "name": { + "id": "record.object.name", + "defaultMessage": "Object" + }, + "collectionName": { + "id": "record.object.collectionName", + "defaultMessage": "Objects" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/object/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Object" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "docNumber": { + "messages": { + "label": { + "id": "column.object.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.object.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.object.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.object.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "object" + }, + "objectexit": { + "messages": { + "record": { + "name": { + "id": "record.objectexit.name", + "defaultMessage": "Object Exit" + }, + "collectionName": { + "id": "record.objectexit.collectionName", + "defaultMessage": "Object Exits" + } + }, + "panel": { + "info": { + "id": "panel.objectexit.info", + "defaultMessage": "Object Exit Information" + }, + "deaccessionDisposalInfo": { + "id": "panel.objectexit.deaccessionDisposalInfo", + "defaultMessage": "Deaccession and Disposal Information" + } + }, + "inputTable": { + "disposal": { + "id": "inputTable.objectexit.disposal", + "defaultMessage": "Disposal" + }, + "groupDisposal": { + "id": "inputTable.objectexit.groupDisposal", + "defaultMessage": "Group disposal" + } + } + }, + "serviceConfig": { + "serviceName": "ObjectExit", + "servicePath": "objectexit", + "serviceType": "procedure", + "objectName": "ObjectExit", + "documentName": "objectexit" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:objectexit_common/exitNumber" + }, + { + "op": "range", + "path": "ns2:objectexit_common/exitDateGroup" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/exitReason" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/exitMethods/exitMethod" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/currentOwner" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/depositor" + }, + { + "op": "cont", + "path": "ns2:objectexit_common/exitNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "exitNumber": { + "messages": { + "label": { + "id": "column.objectexit.default.exitNumber", + "defaultMessage": "Exit number" + } + }, + "order": 10, + "sortBy": "objectexit_common:exitNumber", + "width": 200 + }, + "currentOwner": { + "messages": { + "label": { + "id": "column.objectexit.default.currentOwner", + "defaultMessage": "Current owner" + } + }, + "order": 20, + "sortBy": "objectexit_common:currentOwner", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.objectexit.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:objectexit_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:objectexit_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:objectexit_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/objectexit" + } + }, + "exitNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.objectexit_common.exitNumber.inUse", + "defaultMessage": "The exit number {value} is in use by another record." + }, + "name": { + "id": "field.objectexit_common.exitNumber.name", + "defaultMessage": "Exit number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "objectexit" + } + } + } + }, + "exitDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "exitReason": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitReason.name", + "defaultMessage": "Exit reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exitReasons" + } + } + } + }, + "exitMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exitMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitMethod.name", + "defaultMessage": "Exit method" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exitMethods" + } + } + } + } + }, + "exitQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.objectexit_common.exitQuantity.name", + "defaultMessage": "Exit quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "currentOwner": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.currentOwner.name", + "defaultMessage": "Current owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "depositor": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.depositor.name", + "defaultMessage": "Depositor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "exitNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitNote.name", + "defaultMessage": "Exit note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.packingNote.name", + "defaultMessage": "Packing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "displosalNewObjectNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalNewObjectNumber.name", + "defaultMessage": "Disposal new object number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "deaccessionAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.deaccessionAuthorizer.name", + "defaultMessage": "Deaccession authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "authorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.authorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "deacApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "deacApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.deacApprovalGroup.name", + "defaultMessage": "Deaccession approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "deaccessionApprovalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalGroup.fullName", + "defaultMessage": "Deaccession approval group" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "deaccessionApprovalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalIndividual.fullName", + "defaultMessage": "Deaccession approval individual" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "deaccessionApprovalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalStatus.fullName", + "defaultMessage": "Deaccession approval status" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "deaccessionApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalDate.fullName", + "defaultMessage": "Deaccession approval status date" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "deaccessionApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalNote.fullName", + "defaultMessage": "Deaccession approval note" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "deaccessionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.deaccessionDate.name", + "defaultMessage": "Deaccession date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "disposalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.disposalDate.name", + "defaultMessage": "Disposal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "disposalMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalMethod.name", + "defaultMessage": "Disposal method" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "disposalmethod" + } + } + } + }, + "displosalReason": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalReason.name", + "defaultMessage": "Disposal reason" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "disposalProposedRecipient": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalProposedRecipient.name", + "defaultMessage": "Disposal proposed recipient" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "disposalRecipient": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalRecipient.name", + "defaultMessage": "Disposal recipient" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "disposalCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.disposalCurrency.fullName", + "defaultMessage": "Disposal currency" + }, + "name": { + "id": "field.objectexit_common.disposalCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "displosalValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.objectexit_common.displosalValue.name", + "defaultMessage": "Value" + }, + "fullName": { + "id": "field.objectexit_common.displosalValue.fullName", + "defaultMessage": "Disposal value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "groupDisposalCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.groupDisposalCurrency.fullName", + "defaultMessage": "Group disposal currency" + }, + "name": { + "id": "field.objectexit_common.groupDisposalCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "groupDisplosalValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.objectexit_common.groupDisplosalValue.name", + "defaultMessage": "Value" + }, + "fullName": { + "id": "field.objectexit_common.groupDisposalValue.fullName", + "defaultMessage": "Group disposal value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "displosalProvisos": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalProvisos.name", + "defaultMessage": "Disposal provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "displosalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalNote.name", + "defaultMessage": "Disposal note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.objectexit.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exitNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exitMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exitQuantity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionDisposalInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "displosalNewObjectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deacApprovalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "deacApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalReason" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "disposalProposedRecipient" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalRecipient" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposal", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "disposalCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupDisposal", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupDisposalCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupDisplosalValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalProvisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "objectexit" + }, + "organization": { + "messages": { + "record": { + "name": { + "id": "record.organization.name", + "defaultMessage": "Organization" + }, + "collectionName": { + "id": "record.organization.collectionName", + "defaultMessage": "Organizations" + } + }, + "panel": { + "info": { + "id": "panel.organization.info", + "defaultMessage": "Organization Information" + }, + "hierarchy": { + "id": "panel.organization.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.organization.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.organization.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Organizations", + "servicePath": "orgauthorities", + "serviceType": "authority", + "objectName": "Organization", + "documentName": "organizations" + }, + "subrecords": { + "contact": { + "recordType": "contact", + "subresource": "contacts", + "saveStage": "after" + } + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.organization.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.organization.all.collectionName", + "defaultMessage": "All Organizations" + }, + "itemName": { + "id": "vocab.organization.all.itemName", + "defaultMessage": "Organization" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.organization.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.organization.local.collectionName", + "defaultMessage": "Local Organizations" + }, + "itemName": { + "id": "vocab.organization.local.itemName", + "defaultMessage": "Local Organization" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(organization)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "ulan": { + "messages": { + "name": { + "id": "vocab.organization.ulan.name", + "defaultMessage": "ULAN" + }, + "collectionName": { + "id": "vocab.organization.ulan.collectionName", + "defaultMessage": "ULAN Organizations" + }, + "itemName": { + "id": "vocab.organization.ulan.itemName", + "defaultMessage": "ULAN Organization" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ulan_oa)" + }, + "name": "ulan", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:organizations_common/organizationRecordTypes/organizationRecordType" + }, + { + "op": "range", + "path": "ns2:organizations_common/foundingDateGroup" + }, + { + "op": "cont", + "path": "ns2:organizations_common/foundingPlace" + }, + { + "op": "range", + "path": "ns2:organizations_common/dissolutionDateGroup" + }, + { + "op": "cont", + "path": "ns2:organizations_common/groups/group" + }, + { + "op": "cont", + "path": "ns2:organizations_common/functions/function" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.organization.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "organizations_common:orgTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.organization.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "organizations_common:orgTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.organization.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.organization.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:organizations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.organization.parent", + "defaultMessage": "Broader organization" + }, + "children": { + "id": "hierarchyInput.organization.children", + "defaultMessage": "Narrower organizations" + }, + "siblings": { + "id": "hierarchyInput.organization.siblings", + "defaultMessage": "Adjacent organizations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:organizations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:organizations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "orgTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.organizations_common.orgTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "orgTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.orgTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.organizations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.organizations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.organizations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "orgTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.organizations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "orgtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.organizations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "orgTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.organizations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.organizations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.organizations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.organizations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "mainBodyName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.mainBodyName.fullName", + "defaultMessage": "Term main body name" + }, + "name": { + "id": "field.organizations_common.mainBodyName.name", + "defaultMessage": "Main body name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionsToName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.additionsToName.fullName", + "defaultMessage": "Term name addition" + }, + "groupName": { + "id": "field.organizations_common.additionsToName.groupName", + "defaultMessage": "Name addition" + }, + "name": { + "id": "field.organizations_common.additionsToName.name", + "defaultMessage": "Addition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.organizations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.organizations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.organizations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.organizations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.organizations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.organizations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.organizations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.organizations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "organizationRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizationRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.organizationRecordType.name", + "defaultMessage": "Organization type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "organizationtype" + } + } + } + } + }, + "foundingDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "foundingPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.foundingPlace.name", + "defaultMessage": "Foundation place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dissolutionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contactGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.contactGroup.name", + "defaultMessage": "Contact person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contactName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactName.fullName", + "defaultMessage": "Contact name" + }, + "name": { + "id": "field.organizations_common.contactName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "contactRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactRole.fullName", + "defaultMessage": "Contact role" + }, + "name": { + "id": "field.organizations_common.contactRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "contactrole" + } + } + } + }, + "contactDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactEndDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactStatus.fullName", + "defaultMessage": "Contact status" + }, + "name": { + "id": "field.organizations_common.contactStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "contactstatus" + } + } + } + } + } + }, + "groups": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "group": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.group.name", + "defaultMessage": "Group" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "functions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "function": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.function.name", + "defaultMessage": "Function" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "historyNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "historyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.historyNote.name", + "defaultMessage": "History" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "ns2:contacts_common": { + "[config]": { + "cloneable": false + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.organization.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "orgTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "orgTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDetail", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mainBodyName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionsToName" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "organizationRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizationRecordType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foundingDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foundingPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dissolutionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groups", + "children": { + "key": null, + "ref": null, + "props": { + "name": "group" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "functions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "function" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historyNotes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "historyNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contactGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contactName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactEndDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.organization.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "foundingDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dissolutionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:organizations_common", + "historyNotes", + "historyNote" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "organization" + }, + "person": { + "messages": { + "record": { + "name": { + "id": "record.person.name", + "defaultMessage": "Person" + }, + "collectionName": { + "id": "record.person.collectionName", + "defaultMessage": "Persons" + } + }, + "panel": { + "info": { + "id": "panel.person.info", + "defaultMessage": "Person Information" + }, + "hierarchy": { + "id": "panel.person.hierarchy", + "defaultMessage": "Hierarchy" + }, + "supplied": { + "id": "panel.person.supplied", + "defaultMessage": "Maker-Supplied Identity Information" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.person.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.person.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Persons", + "servicePath": "personauthorities", + "serviceType": "authority", + "objectName": "Person", + "documentName": "persons" + }, + "subrecords": { + "contact": { + "recordType": "contact", + "subresource": "contacts", + "saveStage": "after" + } + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.person.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.person.all.collectionName", + "defaultMessage": "All Persons" + }, + "itemName": { + "id": "vocab.person.all.itemName", + "defaultMessage": "Person" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.person.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.person.local.collectionName", + "defaultMessage": "Local Persons" + }, + "itemName": { + "id": "vocab.person.local.itemName", + "defaultMessage": "Local Person" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(person)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "ulan": { + "messages": { + "name": { + "id": "vocab.person.ulan.name", + "defaultMessage": "ULAN" + }, + "collectionName": { + "id": "vocab.person.ulan.collectionName", + "defaultMessage": "ULAN Persons" + }, + "itemName": { + "id": "vocab.person.ulan.itemName", + "defaultMessage": "ULAN Person" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ulan_pa)" + }, + "name": "ulan", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:persons_common/gender" + }, + { + "op": "cont", + "path": "ns2:persons_common/occupations/occupation" + }, + { + "op": "cont", + "path": "ns2:persons_common/schoolsOrStyles/schoolOrStyle" + }, + { + "op": "cont", + "path": "ns2:persons_common/groups/group" + }, + { + "op": "cont", + "path": "ns2:persons_common/nationalities/nationality" + }, + { + "op": "range", + "path": "ns2:persons_common/birthDateGroup" + }, + { + "op": "range", + "path": "ns2:persons_common/deathDateGroup" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.person.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "persons_common:personTermGroupList/0/termDisplayName", + "width": 250 + }, + "surName": { + "messages": { + "label": { + "id": "column.person.default.surName", + "defaultMessage": "Surname" + } + }, + "order": 30, + "sortBy": "persons_common:personTermGroupList/0/surName", + "width": 125 + }, + "foreName": { + "messages": { + "label": { + "id": "column.person.default.foreName", + "defaultMessage": "Forename" + } + }, + "order": 40, + "sortBy": "persons_common:personTermGroupList/0/foreName", + "width": 125 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.person.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 50, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.object.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 60, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:persons_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.person.parent", + "defaultMessage": "Broader person" + }, + "children": { + "id": "hierarchyInput.person.children", + "defaultMessage": "Narrower persons" + }, + "siblings": { + "id": "hierarchyInput.person.siblings", + "defaultMessage": "Adjacent persons" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:persons_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:persons_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "personTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.persons_common.personTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "personTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.personTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.persons_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termFormattedDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termFormattedDisplayName.fullName", + "defaultMessage": "Term formatted display name" + }, + "name": { + "id": "field.persons_common.termFormattedDisplayName.name", + "defaultMessage": "Formatted display name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.persons_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.persons_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.persons_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTermStatuses" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.persons_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.persons_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "persontermflag" + } + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.persons_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.persons_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "salutation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.salutation.fullName", + "defaultMessage": "Term salutation" + }, + "name": { + "id": "field.persons_common.salutation.name", + "defaultMessage": "Salutation" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "salutations" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.title.fullName", + "defaultMessage": "Term title" + }, + "name": { + "id": "field.persons_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTitles" + } + } + } + }, + "foreName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.foreName.fullName", + "defaultMessage": "Term forename" + }, + "name": { + "id": "field.persons_common.foreName.name", + "defaultMessage": "Forename" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "middleName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.middleName.fullName", + "defaultMessage": "Term middle name" + }, + "name": { + "id": "field.persons_common.middleName.name", + "defaultMessage": "Middle name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "surName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.surName.fullName", + "defaultMessage": "Term surname" + }, + "name": { + "id": "field.persons_common.surName.name", + "defaultMessage": "Surname" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "nameAdditions": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.nameAdditions.fullName", + "defaultMessage": "Term name addition" + }, + "groupName": { + "id": "field.persons_common.nameAdditions.groupName", + "defaultMessage": "Name addition" + }, + "name": { + "id": "field.persons_common.nameAdditions.name", + "defaultMessage": "Addition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "initials": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.initials.fullName", + "defaultMessage": "Term initials" + }, + "name": { + "id": "field.persons_common.initials.name", + "defaultMessage": "Initials" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.persons_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.persons_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.persons_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.persons_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.persons_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.persons_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.persons_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.persons_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "personRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "personRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.personRecordType.name", + "defaultMessage": "Person type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "persontermtype" + } + } + } + } + }, + "gender": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.gender.name", + "defaultMessage": "Gender" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "genders" + } + } + } + }, + "occupations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "occupation": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.occupation.name", + "defaultMessage": "Occupation" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "schoolsOrStyles": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "schoolOrStyle": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.schoolOrStyle.name", + "defaultMessage": "School/style" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "groups": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "group": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.group.name", + "defaultMessage": "Group" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "nationalities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nationality": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.nationality.name", + "defaultMessage": "Nationality" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "nameNote": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.nameNote.name", + "defaultMessage": "Name note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "birthDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "birthPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.birthPlace.name", + "defaultMessage": "Place of birth" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "deathDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "deathPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.deathPlace.name", + "defaultMessage": "Place of death" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "bioNote": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.bioNote.name", + "defaultMessage": "Biographical note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "pronounGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "pronounGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.pronounGroup.name", + "defaultMessage": "Pronoun" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerPronoun": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerPronoun.fullName", + "defaultMessage": "Pronoun supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerPronoun.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedPronouns": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedPronoun": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedPronoun.fullName", + "defaultMessage": "Pronoun supplied" + }, + "name": { + "id": "field.persons_common.suppliedPronoun.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedpronoun" + } + } + } + } + }, + "useRestrictionPronoun": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionPronoun.fullName", + "defaultMessage": "Pronoun supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionPronoun.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "genderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "genderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.genderGroup.name", + "defaultMessage": "Gender" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerGender": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerGender.fullName", + "defaultMessage": "Gender supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerGender.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedGenders": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedGender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedGender.fullName", + "defaultMessage": "Gender supplied" + }, + "name": { + "id": "field.persons_common.suppliedGender.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedgender" + } + } + } + } + }, + "useRestrictionGender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionGender.fullName", + "defaultMessage": "Gender supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionGender.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "raceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "raceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.raceGroup.name", + "defaultMessage": "Race" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerRace": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerRace.fullName", + "defaultMessage": "Race supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerRace.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedRaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedRace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedRace.fullName", + "defaultMessage": "Race supplied" + }, + "name": { + "id": "field.persons_common.suppliedRace.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedrace" + } + } + } + } + }, + "useRestrictionRace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionRace.fullName", + "defaultMessage": "Race supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionRace.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "ethnicityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ethnicityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.ethnicityGroup.name", + "defaultMessage": "Ethnicity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerEthnicity": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerEthnicity.fullName", + "defaultMessage": "Ethnicity supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerEthnicity.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedEthnicities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedEthnicity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedEthnicity.fullName", + "defaultMessage": "Ethnicity supplied" + }, + "name": { + "id": "field.persons_common.suppliedEthnicity.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedethnicity" + } + } + } + } + }, + "useRestrictionEthnicity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionEthnicity.fullName", + "defaultMessage": "Ethnicity supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionEthnicity.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "sexualityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sexualityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.sexualityGroup.name", + "defaultMessage": "Sexuality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerSexuality": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerSexuality.fullName", + "defaultMessage": "Sexuality supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerSexuality.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedSexualities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedSexuality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedSexuality.fullName", + "defaultMessage": "Sexuality supplied" + }, + "name": { + "id": "field.persons_common.suppliedSexuality.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedsexuality" + } + } + } + } + }, + "useRestrictionSexuality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionSexuality.fullName", + "defaultMessage": "Sexuality supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionSexuality.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "birthPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "birthPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.birthPlaceGroup.name", + "defaultMessage": "Birth place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerBirthPlace": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerBirthPlace.fullName", + "defaultMessage": "Birth place supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerBirthPlace.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedBirthPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedBirthPlace.fullName", + "defaultMessage": "Birth place supplied" + }, + "name": { + "id": "field.persons_common.suppliedBirthPlace.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "useRestrictionBirthPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionBirthPlace.fullName", + "defaultMessage": "Birth place supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionBirthPlace.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "suppliedBirthDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedBirthDateGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedBirthDateGroup.fullName", + "defaultMessage": "Supplied birth date" + }, + "name": { + "id": "field.persons_common.suppliedBirthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerBirthDate": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerBirthDate.fullName", + "defaultMessage": "Birth date supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerBirthDate.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedStructuredBirthDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "useRestrictionBirthDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionBirthDate.fullName", + "defaultMessage": "Birth date supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionBirthDate.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "otherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.otherGroup.name", + "defaultMessage": "Other information" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "informationAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.informationAuthor.fullName", + "defaultMessage": "Other information author" + }, + "name": { + "id": "field.persons_common.informationAuthor.name", + "defaultMessage": "Author" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "informationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.informationDate.fullName", + "defaultMessage": "Other information date" + }, + "name": { + "id": "field.persons_common.informationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "informationUseRestriction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.informationUseRestriction.fullName", + "defaultMessage": "Other information use restriction" + }, + "name": { + "id": "field.persons_common.informationUseRestriction.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + }, + "otherInformation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.otherInformation.fullName", + "defaultMessage": "Other information note" + }, + "name": { + "id": "field.persons_common.otherInformation.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "ns2:contacts_common": { + "[config]": { + "cloneable": false + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.person.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "personTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDetail", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "salutation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foreName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "middleName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameAdditions" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "initials" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "personRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personRecordType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "gender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "occupations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "occupation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "schoolsOrStyles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "schoolOrStyle" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groups", + "children": { + "key": null, + "ref": null, + "props": { + "name": "group" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nationalities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nationality" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nameNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "birthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "birthPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deathDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deathPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bioNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supplied", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pronounGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "pronounGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerPronoun" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedPronouns", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedPronoun" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionPronoun" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "genderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "genderGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerGender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedGenders", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedGender" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionGender" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "raceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "raceGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerRace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedRaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedRace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionRace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ethnicityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ethnicityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerEthnicity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedEthnicities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedEthnicity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionEthnicity" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexualityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sexualityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerSexuality" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedSexualities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedSexuality" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionSexuality" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "birthPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "birthPlaceGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerBirthPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionBirthPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthDateGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerBirthDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedStructuredBirthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionBirthDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "informationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "informationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "informationUseRestriction" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.person.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "birthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deathDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bioNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "person" + }, + "place": { + "messages": { + "record": { + "name": { + "id": "record.place.name", + "defaultMessage": "Place" + }, + "collectionName": { + "id": "record.place.collectionName", + "defaultMessage": "Places" + } + }, + "panel": { + "info": { + "id": "panel.place.info", + "defaultMessage": "Place Information" + }, + "localityInfo": { + "id": "panel.place.localityInfo", + "defaultMessage": "Locality Information" + }, + "geoRefInfo": { + "id": "panel.place.geoRefInfo", + "defaultMessage": "Georeference Information" + }, + "hierarchy": { + "id": "panel.place.hierarchy", + "defaultMessage": "Hierarchy" + }, + "assertionInfo": { + "id": "panel.place.assertionInfo", + "defaultMessage": "Assertion Information" + }, + "assertions": { + "id": "panel.place.assertions", + "defaultMessage": "Cultural Affiliation Lines of Evidence" + }, + "background": { + "id": "panel.place.background", + "defaultMessage": "Background Research and Additional Information" + }, + "consultedDocs": { + "id": "panel.place.consultedDocs", + "defaultMessage": "Documents Consulted for Cultural Affiliation Research" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.place.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.place.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Places", + "servicePath": "placeauthorities", + "serviceType": "authority", + "objectName": "Placeitem", + "documentName": "places" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.place.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.place.all.collectionName", + "defaultMessage": "All Places" + }, + "itemName": { + "id": "vocab.place.all.itemName", + "defaultMessage": "Place" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.place.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.place.local.collectionName", + "defaultMessage": "Local Places" + }, + "itemName": { + "id": "vocab.place.local.itemName", + "defaultMessage": "Local Place" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(place)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "tgn": { + "messages": { + "name": { + "id": "vocab.place.tgn.name", + "defaultMessage": "TGN" + }, + "collectionName": { + "id": "vocab.place.tgn.collectionName", + "defaultMessage": "TGN Places" + }, + "itemName": { + "id": "vocab.place.tgn.itemName", + "defaultMessage": "TGN Place" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(tgn_place)" + }, + "name": "tgn", + "disableAltTerms": false + }, + "archaeological": { + "messages": { + "name": { + "id": "vocab.place.archaeological.name", + "defaultMessage": "Archaeological" + }, + "collectionName": { + "id": "vocab.place.archaeological.collectionName", + "defaultMessage": "Archaeological Sites" + }, + "itemName": { + "id": "vocab.place.archaeological.itemName", + "defaultMessage": "Archaeological Site" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(archaeological)" + }, + "name": "archaeological", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:places_common/placeType" + }, + { + "op": "eq", + "path": "ns2:places_common/placeOwnerGroupList/placeOwnerGroup/owner" + }, + { + "op": "cont", + "path": "ns2:places_common/placeNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.place.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "places_common:placeTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.place.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "places_common:placeTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.place.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.place.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:places_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.place.parent", + "defaultMessage": "Broader place" + }, + "children": { + "id": "hierarchyInput.place.children", + "defaultMessage": "Narrower places" + }, + "siblings": { + "id": "hierarchyInput.place.siblings", + "defaultMessage": "Adjacent places" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:places_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:places_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "placeTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.places_common.placeTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "placeTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.places_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.places_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.places_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.places_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTermStatuses" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.places_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.places_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "placetermflag" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.places_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeHistoricalStatuses" + } + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.places_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.places_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.places_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nameAbbrev": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.nameAbbrev.fullName", + "defaultMessage": "Term abbreviation" + }, + "name": { + "id": "field.places_common.nameAbbrev.name", + "defaultMessage": "Abbreviation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.nameNote.fullName", + "defaultMessage": "Term note" + }, + "name": { + "id": "field.places_common.nameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nameDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.places_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.places_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.places_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.places_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.places_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.places_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.places_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.places_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "placeType": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeType.name", + "defaultMessage": "Place type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTypes" + } + } + } + }, + "placeSource": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeSource.name", + "defaultMessage": "Place source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "placeOwnerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeOwnerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeOwnerGroup.name", + "defaultMessage": "Ownership" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.owner.name", + "defaultMessage": "Owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "ownershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "ownershipNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.ownershipNote.fullName", + "defaultMessage": "Ownership note" + }, + "name": { + "id": "field.places_common.ownershipNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "placeNote": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeNote.name", + "defaultMessage": "Place note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordinates.name", + "defaultMessage": "Verbatim coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSys.name", + "defaultMessage": "Coordinate system" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordinateSystems" + } + } + } + }, + "vSpatialReferenceSystem": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vSpatialReferenceSystem.name", + "defaultMessage": "Spatial ref system" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "spatialRefSystems" + } + } + } + }, + "vUnitofMeasure": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vUnitofMeasure.name", + "defaultMessage": "Unit of measure" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "localityUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vElevation.name", + "defaultMessage": "Elevation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevationInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minElevationInMeters.name", + "defaultMessage": "Min elevation (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevationInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxElevationInMeters.name", + "defaultMessage": "Max elevation (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vDepth.name", + "defaultMessage": "Depth" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepthInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minDepthInMeters.name", + "defaultMessage": "Min depth (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepthInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxDepthInMeters.name", + "defaultMessage": "Max depth (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vDistanceAboveSurface.name", + "defaultMessage": "Distance above surface" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurfaceInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minDistanceAboveSurfaceInMeters.name", + "defaultMessage": "Min distance above surface (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurfaceInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxDistanceAboveSurfaceInMeters.name", + "defaultMessage": "Max distance above surface (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSource": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSource.name", + "defaultMessage": "Coordinate source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSourceRefId": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSourceRefId.name", + "defaultMessage": "Coordinate source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "placeGeoRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeGeoRefGroup": { + "[config]": { + "repeating": true, + "messages": { + "fullName": { + "id": "field.places_common.placeGeoRefGroup.fullName", + "defaultMessage": "Georeference" + } + }, + "view": { + "type": "CompoundInput" + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.places_common.decimalLatitude.fullName", + "defaultMessage": "Georeference decimal latitude" + }, + "name": { + "id": "field.places_common.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.places_common.decimalLongitude.fullName", + "defaultMessage": "Georeference decimal longitude" + }, + "name": { + "id": "field.places_common.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geodeticDatum.fullName", + "defaultMessage": "Georeference datum" + }, + "name": { + "id": "field.places_common.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertaintyInMeters": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.places_common.coordUncertaintyInMeters.fullName", + "defaultMessage": "Georeference uncertainty (m)" + }, + "name": { + "id": "field.places_common.coordUncertaintyInMeters.name", + "defaultMessage": "Uncertainty (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.coordPrecision.fullName", + "defaultMessage": "Georeference precision" + }, + "name": { + "id": "field.places_common.coordPrecision.name", + "defaultMessage": "Precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.pointRadiusSpatialFit.fullName", + "defaultMessage": "Georeference point radius spatial fit" + }, + "name": { + "id": "field.places_common.pointRadiusSpatialFit.name", + "defaultMessage": "Point radius spatial fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintWKT.fullName", + "defaultMessage": "Georeference footprint WKT" + }, + "name": { + "id": "field.places_common.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintSRS.fullName", + "defaultMessage": "Georeference footprint SRS" + }, + "name": { + "id": "field.places_common.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintSpatialFit.fullName", + "defaultMessage": "Georeference footprint spatial fit" + }, + "name": { + "id": "field.places_common.footprintSpatialFit.name", + "defaultMessage": "Footprint spatial fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoReferencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.geoReferencedBy.name", + "defaultMessage": "Georeferenced by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.places_common.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geoRefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.places_common.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.places_common.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geoRefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefRemarks.fullName", + "defaultMessage": "Georeference remarks" + }, + "name": { + "id": "field.places_common.geoRefRemarks.name", + "defaultMessage": "Remarks" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefPlaceName.fullName", + "defaultMessage": "Georeference place name" + }, + "name": { + "id": "field.places_common.geoRefPlaceName.name", + "defaultMessage": "Place name" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:places_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place/domain/nagpra" + } + }, + "basicInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "basicInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.basicInfo.name", + "defaultMessage": "Basic information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraHistoryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraHistory": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.nagpraHistory.name", + "defaultMessage": "NAGPRA inventory history" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "backgroundSummaryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "backgroundSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.backgroundSummary.name", + "defaultMessage": "Background and records summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "landOwnershipInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "landOwnershipInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.landOwnershipInfo.name", + "defaultMessage": "Land ownership information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "assertionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "assertionName": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionName.name", + "defaultMessage": "Assertion name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraassertionnames" + } + } + } + }, + "assertionDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionDescription.name", + "defaultMessage": "Assertion description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceGroup.name", + "defaultMessage": "Assertion source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionSourceBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceBy.name", + "defaultMessage": "By" + }, + "fullName": { + "id": "field.places_nagpra.assertionSourceBy.fullName", + "defaultMessage": "Assertion by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "assertionSourceDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceDate.fullName", + "defaultMessage": "Assertion source date" + }, + "name": { + "id": "field.places_nagpra.assertionSourceDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "assertionSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceNote.fullName", + "defaultMessage": "Assertion source note" + }, + "name": { + "id": "field.places_nagpra.assertionSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assertionRelatedRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionRelatedRecords.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionReferenceGroup.name", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReference.fullName", + "defaultMessage": "Assertion reference name" + }, + "name": { + "id": "field.places_nagpra.assertionReference.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "assertionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReferenceNote.fullName", + "defaultMessage": "Assertion refence note" + }, + "name": { + "id": "field.places_nagpra.assertionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "museumRecordsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "museumRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.museumRecordsList.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "manuscriptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "manuscriptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.manuscriptGroup.name", + "defaultMessage": "Unpublished manuscript" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "manuscriptReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptReferences.fullName", + "defaultMessage": "Unpublished manuscript reference" + }, + "name": { + "id": "field.places_nagpra.manuscriptReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local," + } + } + } + }, + "manuscriptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptNote.fullName", + "defaultMessage": "Unpublished manuscript note" + }, + "name": { + "id": "field.places_nagpra.manuscriptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "reportRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "reportRefGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.reportRefGroup.name", + "defaultMessage": "Published report" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reportReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportReferences.fullName", + "defaultMessage": "Published report reference" + }, + "name": { + "id": "field.places_nagpra.reportReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local" + } + } + } + }, + "reportNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportNote.fullName", + "defaultMessage": "Published report note" + }, + "name": { + "id": "field.places_nagpra.reportNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.place.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "placeTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nameAbbrev" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeSource" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeOwnerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeOwnerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "background", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "basicInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "basicInfo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistoryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummaryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummary" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertions", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionRelatedRecords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "consultedDocs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "museumRecordsList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "museumRecords" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reportReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "style": { + "marginTop": "10px" + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localityInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vSpatialReferenceSystem" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vUnitofMeasure" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minElevationInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevationInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minDepthInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepthInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurfaceInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurfaceInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSourceRefId" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefInfo", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeGeoRefGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeGeoRefGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoReferencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.place.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "place" + }, + "transport": { + "messages": { + "record": { + "name": { + "id": "record.transport.name", + "defaultMessage": "Transport" + }, + "collectionName": { + "id": "record.transport.collectionName", + "defaultMessage": "Transports" + } + }, + "inputTable": { + "transporter": { + "id": "inputTable.transport.transporter", + "defaultMessage": "Transporter" + }, + "authorization": { + "id": "inputTable.transport.authorization", + "defaultMessage": "Authorization" + }, + "departure": { + "id": "inputTable.transport.departure", + "defaultMessage": "Departure" + }, + "arrival": { + "id": "inputTable.transport.arrival", + "defaultMessage": "Arrival" + }, + "finalShippingCost": { + "id": "inputTable.transport.finalShippingCost", + "defaultMessage": "Final shipping cost" + }, + "customsBroker": { + "id": "inputTable.transport.customsBroker", + "defaultMessage": "Customs broker" + }, + "customsDeclaredValue": { + "id": "inputTable.transport.customsDeclaredValue", + "defaultMessage": "Declared value for customs" + }, + "customsFee": { + "id": "inputTable.transport.customsFee", + "defaultMessage": "Customs fee" + } + }, + "panel": { + "info": { + "id": "panel.transport.info", + "defaultMessage": "Transport Information" + }, + "cost": { + "id": "panel.transport.cost", + "defaultMessage": "Cost Information" + } + } + }, + "serviceConfig": { + "serviceName": "Transport", + "servicePath": "transports", + "serviceType": "procedure", + "objectName": "Transport", + "documentName": "transports" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:transports_common/transportReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:transports_common/courierGroupList/courierGroup/courier" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "transportReferenceNumber": { + "messages": { + "label": { + "id": "column.transport.default.transportReferenceNumber", + "defaultMessage": "Transport reference number" + } + }, + "order": 10, + "sortBy": "transports_common:transportReferenceNumber", + "width": 200 + }, + "transporter": { + "messages": { + "label": { + "id": "column.transport.default.transporter", + "defaultMessage": "Transporter" + } + }, + "order": 20, + "sortBy": "transports_common:transporter", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.transport.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "transports_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:transports_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:transports_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:transports_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/transport" + } + }, + "transportReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.transports_common.transportReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.transports_common.transportReferenceNumber.name", + "defaultMessage": "Transport reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "transport" + } + } + } + }, + "transporter": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporter.fullName", + "defaultMessage": "Transporter name" + }, + "name": { + "id": "field.transports_common.transporter.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "transporterContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporterContact.fullName", + "defaultMessage": "Transporter contact" + }, + "name": { + "id": "field.transports_common.transporterContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transporterContactNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporterContactNumber.fullName", + "defaultMessage": "Transporter contact number" + }, + "name": { + "id": "field.transports_common.transporterContactNumber.name", + "defaultMessage": "Contact number" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-number" + } + } + } + }, + "transportAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportAuthorizer.fullName", + "defaultMessage": "Transport authorizer" + }, + "name": { + "id": "field.transports_common.transportAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transportAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportAuthorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.transports_common.transportAuthorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "departurePoint": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.departurePoint.fullName", + "defaultMessage": "Departure point" + }, + "name": { + "id": "field.transports_common.departurePoint.name", + "defaultMessage": "Point" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,place/local" + } + } + } + }, + "transportDepartureDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportDepartureDate.fullName", + "defaultMessage": "Departure date" + }, + "name": { + "id": "field.transports_common.transportDepartureDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transportDepartureTime": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportDepartureTime.fullName", + "defaultMessage": "Departure time" + }, + "name": { + "id": "field.transports_common.transportDepartureTime.name", + "defaultMessage": "Time" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "destination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.destination.fullName", + "defaultMessage": "Arrival point" + }, + "name": { + "id": "field.transports_common.destination.name", + "defaultMessage": "Point" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,organization/local,organization/shared" + } + } + } + }, + "transportArrivalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportArrivalDate.fullName", + "defaultMessage": "Arrival date" + }, + "name": { + "id": "field.transports_common.transportArrivalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transportArrivalTime": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportArrivalTime.fullName", + "defaultMessage": "Arrival time" + }, + "name": { + "id": "field.transports_common.transportArrivalTime.name", + "defaultMessage": "Time" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "numberOfCrates": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.transports_common.numberOfCrates.name", + "defaultMessage": "Number of crates/objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportMethod.name", + "defaultMessage": "Transport method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "transportMethodTypes" + } + } + } + }, + "courierGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "courierGroup": { + "[config]": { + "messages": { + "name": { + "id": "fields.transports_common.courierGroup.name", + "defaultMessage": "Courier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "courier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.courier.fullName", + "defaultMessage": "Courier name" + }, + "name": { + "id": "field.transports_common.courier.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "courierContactNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.courierContactNumber.fullName", + "defaultMessage": "Courier contact number" + }, + "name": { + "id": "field.transports_common.courierContactNumber.name", + "defaultMessage": "Contact number" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transportTrackingNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transportTrackingNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportTrackingNumberGroup.name", + "defaultMessage": "Tracking number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "transportTrackingNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportTrackingNumber.fullName", + "defaultMessage": "Tracking number" + }, + "name": { + "id": "field.transports_common.transportTrackingNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportTrackingNumberNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportTrackingNumberNote.fullName", + "defaultMessage": "Tracking number note" + }, + "name": { + "id": "field.transports_common.transportTrackingNumberNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transportRemarks": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "transportCostType": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportCostType.name", + "defaultMessage": "Transport cost type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportcosttype" + } + } + } + }, + "finalShippingCostCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.finalShippingCostCurrency.fullName", + "defaultMessage": "Final shipping cost currency" + }, + "name": { + "id": "field.transports_common.finalShippingCostCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "finalShippingCostValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.finalShippingCostValue.fullName", + "defaultMessage": "Final shipping cost value" + }, + "name": { + "id": "field.transports_common.finalShippingCostValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportCostResponsibleParty": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportCostResponsibleParty.name", + "defaultMessage": "Transport cost responsible party" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportresponsibleparty" + } + } + } + }, + "insuranceCostResponsibleParty": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.insuranceCostResponsibleParty.name", + "defaultMessage": "Insurance/indemnity cost responsible party" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportresponsibleparty" + } + } + } + }, + "additionalCostsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "additionalCostsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.additionalCostsGroup.name", + "defaultMessage": "Additional cost" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "additionalCostsType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsType.fullName", + "defaultMessage": "Additional cost type" + }, + "name": { + "id": "field.transports_common.additionalCostsType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportadditionalcosttype" + } + } + } + }, + "additionalCostsCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsCurrency.fullName", + "defaultMessage": "Additional cost currency" + }, + "name": { + "id": "field.transports_common.additionalCostsCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "additionalCostsValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsValue.fullName", + "defaultMessage": "Additional cost value" + }, + "name": { + "id": "field.transports_common.additionalCostsValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "customsBroker": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsBroker.fullName", + "defaultMessage": "Customs broker name" + }, + "name": { + "id": "field.transports_common.customsBroker.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "customsBrokerContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsBrokerContact.fullName", + "defaultMessage": "Customs broker contact" + }, + "name": { + "id": "field.transports_common.customsBrokerContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "customsDeclaredValueCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsDeclaredValueCurrency.fullName", + "defaultMessage": "Declared value for customs currency" + }, + "name": { + "id": "field.transports_common.customsDeclaredValueCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "customsDeclaredValueAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.customsDeclaredValueAmount.fullName", + "defaultMessage": "Declared value for customs amount" + }, + "name": { + "id": "field.transports_common.customsDeclaredValueAmount.name", + "defaultMessage": "Amount" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "customsFeeCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeCurrency.fullName", + "defaultMessage": "Customs fee currency" + }, + "name": { + "id": "field.transports_common.customsFeeCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "customsFeeValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeValue.fullName", + "defaultMessage": "Customs fee value" + }, + "name": { + "id": "field.transports_common.customsFeeValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "customsFeeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeNote.fullName", + "defaultMessage": "Customs fee note" + }, + "name": { + "id": "field.transports_common.customsFeeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "shippingQuoteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "shippingQuoteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.shippingQuotesGroup.name", + "defaultMessage": "Shipping quote" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "shippingQuoteProvider": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteProvider.fullName", + "defaultMessage": "Shipping quote provider" + }, + "name": { + "id": "field.transports_common.shippingQuoteProvider.name", + "defaultMessage": "Provider" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "shippingQuoteCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteCurrency.fullName", + "defaultMessage": "Shipping quote currency" + }, + "name": { + "id": "field.transports_common.shippingQuoteCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "shippingQuoteValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteValue.fullName", + "defaultMessage": "Shipping quote value" + }, + "name": { + "id": "field.transports_common.shippingQuoteValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "shippingQuoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteDate.fullName", + "defaultMessage": "Shipping quote date" + }, + "name": { + "id": "field.transports_common.shippingQuoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.transport.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfCrates" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporter", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transporter" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporterContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporterContactNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "authorization", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "departure", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "departurePoint" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportDepartureDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportDepartureTime" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "arrival", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "destination" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportArrivalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportArrivalTime" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "courierGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "courierGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "courier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "courierContactNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportRemarks" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cost", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportCostType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportCostResponsibleParty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceCostResponsibleParty" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCost", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCostCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCostValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsBroker", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsBroker" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsBrokerContact" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValue", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValueCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValueAmount" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFee", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteProvider" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "transport" + }, + "uoc": { + "messages": { + "record": { + "name": { + "id": "record.uoc.name", + "defaultMessage": "Use of Collections" + }, + "collectionName": { + "id": "record.uoc.collectionName", + "defaultMessage": "Use of Collections" + } + }, + "panel": { + "useOfCollections": { + "id": "panel.uoc.useOfCollections", + "defaultMessage": "Use of Collections Information" + } + }, + "inputTable": { + "authorizedBy": { + "id": "inputTable.uoc.authorizedBy", + "defaultMessage": "Authorization" + }, + "user": { + "id": "inputTable.uoc.user", + "defaultMessage": "User" + } + } + }, + "serviceConfig": { + "serviceName": "Uoc", + "servicePath": "uoc", + "serviceType": "procedure", + "objectName": "Uoc", + "documentName": "uoc" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:uoc_common/referenceNumber" + }, + { + "op": "eq", + "path": "ns2:uoc_common/userGroupList/userGroup/user" + }, + { + "op": "eq", + "path": "ns2:uoc_common/authorizationGroupList/authorizationGroup/authorizedBy" + }, + { + "op": "eq", + "path": "ns2:uoc_common/staffGroupList/staffGroup/staffName" + }, + { + "op": "eq", + "path": "ns2:uoc_common/obligationsFulfilled" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "referenceNumber": { + "messages": { + "label": { + "id": "column.uoc.default.referenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "uoc_common:referenceNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.uoc.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "uoc_common:title", + "width": 300 + }, + "authorizedBy": { + "messages": { + "label": { + "id": "column.uoc.default.authorizedBy", + "defaultMessage": "Authorized by" + } + }, + "order": 30, + "sortBy": "uoc_common:authorizationGroupList/0/authorizedBy", + "width": 300 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.exhibition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:uoc_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:uoc_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:uoc_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/uoc" + } + }, + "referenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.uoc_common.referenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.uoc_common.referenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "uoc" + } + } + } + }, + "projectId": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.projectId.name", + "defaultMessage": "Project ID" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocprojectid" + } + } + } + }, + "projectDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.projectDescription.name", + "defaultMessage": "Project description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "methodList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "method": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.method.name", + "defaultMessage": "Method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocmethods" + } + } + } + } + }, + "title": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.uoc_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "authorizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "authorizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.authorizationGroup.name", + "defaultMessage": "Authorization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "authorizedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.authorizedBy.name", + "defaultMessage": "Authorized by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "authorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.uoc_common.authorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "authorizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationNote.fullName", + "defaultMessage": "Authorization note" + }, + "name": { + "id": "field.uoc_common.authorizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "authorizationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationStatus.fullName", + "defaultMessage": "Authorization status" + }, + "name": { + "id": "field.uoc_common.authorizationStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocauthorizationstatuses" + } + } + } + } + } + }, + "useDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "useDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.useDateGroup.name", + "defaultMessage": "Start/ongoing date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "useDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.uoc_common.useDate.fullName", + "defaultMessage": "Start/ongoing date" + }, + "name": { + "id": "field.uoc_common.useDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "useDateTimeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateTimeNote.fullName", + "defaultMessage": "Start/ongoing date time note" + }, + "name": { + "id": "field.uoc_common.useDateTimeNote.name", + "defaultMessage": "Time note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "useDateNumberOfVisitors": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateNumberOfVisitors.fullName", + "defaultMessage": "Start/ongoing date no. of visitors" + }, + "name": { + "id": "field.uoc_common.useDateNumberOfVisitors.name", + "defaultMessage": "No. of visitors" + } + }, + "dataType": "DATA_TYPE_INT", + "view": { + "type": "TextInput" + } + } + }, + "useDateHoursSpent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.hoursSpent.fullName", + "defaultMessage": "Start/ongoing date hours spent" + }, + "name": { + "id": "field.uoc_common.hoursSpent.name", + "defaultMessage": "Hours spent" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "useDateVisitorNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateVisitorNote.fullName", + "defaultMessage": "Start/ongoing date visitor note" + }, + "name": { + "id": "field.uoc_common.useDateVisitorNote.name", + "defaultMessage": "Visitor note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "endDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.endDate.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "userGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "userGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.userGroup.name", + "defaultMessage": "User" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "user": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.user.fullName", + "defaultMessage": "User name" + }, + "name": { + "id": "field.uoc_common.user.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "userInstitutionRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userInstitutionRole.fullName", + "defaultMessage": "User institution role" + }, + "name": { + "id": "field.uoc_common.userInstitutionRole.name", + "defaultMessage": "Institution role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocusertypes" + } + } + } + }, + "userUocRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userUocRole.fullName", + "defaultMessage": "User role" + }, + "name": { + "id": "field.uoc_common.userUocRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocuserroles" + } + } + } + }, + "userInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userInstitution.fullName", + "defaultMessage": "User institution" + }, + "name": { + "id": "field.uoc_common.userInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + } + }, + "locationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "location": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.location.name", + "defaultMessage": "Location" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,place/local,place/shared,location/local" + } + } + } + } + }, + "note": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.note.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "provisos": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.provisos.name", + "defaultMessage": "Provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "result": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.result.name", + "defaultMessage": "Result" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateRequested": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.dateRequested.name", + "defaultMessage": "Date requested" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dateCompleted": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.dateCompleted.name", + "defaultMessage": "Date completed" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "occasionList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "occasion": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.occasion.name", + "defaultMessage": "Occasion" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/occasion" + } + } + } + } + }, + "obligationsFulfilled": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.obligationsFulfilled.name", + "defaultMessage": "Obligations fulfilled" + } + }, + "dataType": "DATA_TYPE_BOOL", + "view": { + "type": "CheckboxInput" + } + } + }, + "staffGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "staffGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.staffGroup.name", + "defaultMessage": "Staff" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "staffName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffName.fullName", + "defaultMessage": "Staff name" + }, + "name": { + "id": "field.uoc_common.staffName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "staffRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffRole.fullName", + "defaultMessage": "Staff role" + }, + "name": { + "id": "field.uoc_common.staffRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocstaffroles" + } + } + } + }, + "staffHours": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffHours.fullName", + "defaultMessage": "Staff hours spent" + }, + "name": { + "id": "field.uoc_common.staffHours.name", + "defaultMessage": "Hours spent" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "staffNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffNote.fullName", + "defaultMessage": "Staff note" + }, + "name": { + "id": "field.uoc_common.staffNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "collectionTypeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "collectionType": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.collectionType.name", + "defaultMessage": "Collection type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uoccollectiontypes" + } + } + } + } + }, + "materialTypeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "materialType": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.materialType.name", + "defaultMessage": "Material type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocmaterialtypes" + } + } + } + } + }, + "feeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "feeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.feeGroup.name", + "defaultMessage": "Fee charged" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "feeCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeCurrency.fullName", + "defaultMessage": "Fee currency" + }, + "name": { + "id": "field.uoc_common.feeCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "feeValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeValue.fullName", + "defaultMessage": "Fee value" + }, + "name": { + "id": "field.uoc_common.feeValue.name", + "defaultMessage": "Value" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "feeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeNote.fullName", + "defaultMessage": "Fee note" + }, + "name": { + "id": "field.uoc_common.feeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "feePaid": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feePaid.fullName", + "defaultMessage": "Fee paid" + }, + "name": { + "id": "field.uoc_common.feePaid.name", + "defaultMessage": "Paid" + } + }, + "dataType": "DATA_TYPE_BOOL", + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "subcollection": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.subcollection.name", + "defaultMessage": "Subcollection" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocsubcollections" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.uoc.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "useOfCollections", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "referenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "methodList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "method" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "collectionTypeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "collectionType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "projectId" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "subcollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialTypeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "userGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "user" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userUocRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userInstitution" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userInstitutionRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateRequested" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateCompleted" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "occasionList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "occasion" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "projectDescription" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "authorizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "authorizedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "useDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "useDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateTimeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateNumberOfVisitors" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateHoursSpent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateVisitorNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "endDate" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "staffGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "staffName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffHours" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "location" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "feeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "feeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "feeCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feeValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feePaid" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "note" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "provisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "obligationsFulfilled" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "result" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "uoc" + }, + "procedure": { + "messages": { + "record": { + "name": { + "id": "record.procedure.name", + "defaultMessage": "Procedure" + }, + "collectionName": { + "id": "record.procedure.collectionName", + "defaultMessage": "Procedures" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/procedure/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Procedure" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "docNumber": { + "messages": { + "label": { + "id": "column.procedure.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 20, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.procedure.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 30, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.procedure.default.docType", + "defaultMessage": "Type" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.procedure.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + }, + "narrow": { + "docNumber": { + "messages": { + "label": { + "id": "column.procedure.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.procedure.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.procedure.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.procedure.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "procedure" + }, + "relation": { + "messages": { + "record": { + "name": { + "id": "record.relation.name", + "defaultMessage": "Relation" + }, + "collectionName": { + "id": "record.relation.collectionName", + "defaultMessage": "Relations" + } + } + }, + "serviceConfig": { + "servicePath": "relations", + "serviceType": "utility" + }, + "deletePermType": "all", + "name": "relation" + }, + "report": { + "messages": { + "record": { + "name": { + "id": "record.report.name", + "defaultMessage": "Report" + }, + "collectionName": { + "id": "record.report.collectionName", + "defaultMessage": "Reports" + }, + "invokeUnsaved": { + "id": "record.report.invokeUnsaved", + "defaultMessage": "This record has changes that have not been saved. The report will not include any unsaved data." + }, + "singleTargetMissing": { + "id": "record.report.singleTargetMissing", + "defaultMessage": "Select a record on which to run this report." + }, + "listTargetMissing": { + "id": "record.report.listTargetMissing", + "defaultMessage": "Select one or more records on which to run this report." + }, + "groupTargetMissing": { + "id": "record.report.groupTargetMissing", + "defaultMessage": "Select a group on which to run this report." + } + }, + "panel": { + "mode": { + "id": "panel.report.mode", + "defaultMessage": "Runs on" + } + } + }, + "serviceConfig": { + "servicePath": "reports", + "serviceType": "utility" + }, + "columns": { + "default": { + "name": { + "messages": { + "label": { + "id": "column.report.default.name", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "reports_common:name", + "width": 400 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:reports_common" + } + } + }, + "ns2:reports_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/report" + }, + "view": { + "type": "CompoundInput" + } + }, + "name": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "filename": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.filename.name", + "defaultMessage": "Jasper report file" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "notes": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.notes.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "supportsNoContext": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsNoContext.name", + "defaultMessage": "All records" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsGroup": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsDocList": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsDocList.name", + "defaultMessage": "Record list" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsSingleDoc": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsSingleDoc.name", + "defaultMessage": "Single record" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "forDocTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "forDocType": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.forDocType.name", + "defaultMessage": "For record type" + } + }, + "repeating": true, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + } + }, + "outputMIME": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.outputMIME.name", + "defaultMessage": "Default output format" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "reportMimeTypes", + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.report.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "filename" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mode", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "supportsNoContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsDocList" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsSingleDoc" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "outputMIME" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "report" + }, + "reportinvocation": { + "messages": { + "record": { + "name": { + "id": "record.reportinvocation.name", + "defaultMessage": "Report Invocation" + }, + "collectionName": { + "id": "record.reportinvocation.collectionName", + "defaultMessage": "Report Invocations" + } + } + }, + "serviceConfig": { + "servicePath": "reports/invoke", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "reportinvocation" + }, + "structureddates": { + "messages": { + "record": { + "name": { + "id": "record.structureddates.name", + "defaultMessage": "Structured Date Parser" + }, + "collectionName": { + "id": "record.structureddates.collectionName", + "defaultMessage": "Structured Date Parser" + } + } + }, + "serviceConfig": { + "servicePath": "structureddates", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "structureddates" + }, + "valuation": { + "messages": { + "record": { + "name": { + "id": "record.valuation.name", + "defaultMessage": "Valuation Control" + }, + "collectionName": { + "id": "record.valuation.collectionName", + "defaultMessage": "Valuation Controls" + } + }, + "panel": { + "info": { + "id": "panel.valuation.info", + "defaultMessage": "Object Valuation Information" + } + } + }, + "serviceConfig": { + "serviceName": "Valuationcontrols", + "servicePath": "valuationcontrols", + "serviceType": "procedure", + "objectName": "Valuationcontrol", + "documentName": "valuationcontrols" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:valuationcontrols_common/valuationcontrolRefNumber" + }, + { + "op": "range", + "path": "ns2:valuationcontrols_common/valueDate" + }, + { + "op": "range", + "path": "ns2:valuationcontrols_common/valueRenewalDate" + }, + { + "op": "eq", + "path": "ns2:valuationcontrols_common/valueSource" + }, + { + "op": "eq", + "path": "ns2:valuationcontrols_common/valueType" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "valuationcontrolRefNumber": { + "messages": { + "label": { + "id": "column.valuation.default.valuationcontrolRefNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "valuationcontrols_common:valuationcontrolRefNumber", + "width": 250 + }, + "valueType": { + "messages": { + "label": { + "id": "column.valuation.default.valueType", + "defaultMessage": "Type" + } + }, + "order": 20, + "sortBy": "valuationcontrols_common:valueType", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.valuation.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:valuationcontrols_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:valuationcontrols_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:valuationcontrols_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/valuationcontrol" + } + }, + "valuationcontrolRefNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.valuationcontrols_common.valuationcontrolRefNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.valuationcontrols_common.valuationcontrolRefNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "valuationcontrol" + } + } + } + }, + "valueAmountsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "valueAmounts": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueAmounts.name", + "defaultMessage": "Amount" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "valueCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.valuationcontrols_common.valueCurrency.fullName", + "defaultMessage": "Amount currency" + }, + "name": { + "id": "field.valuationcontrols_common.valueCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "valueAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.valuationcontrols_common.valueAmount.fullName", + "defaultMessage": "Amount value" + }, + "name": { + "id": "field.valuationcontrols_common.valueAmount.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "valueRenewalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueRenewalDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "valueSource": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "valueType": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "valueTypes" + } + } + } + }, + "valueNote": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.valuation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valuationcontrolRefNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueAmountsList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "valueAmounts", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valueCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueAmount" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueRenewalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valueSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "valuation" + }, + "vocabulary": { + "messages": { + "record": { + "name": { + "id": "record.vocabulary.name", + "defaultMessage": "Term List" + }, + "collectionName": { + "id": "record.vocabulary.collectionName", + "defaultMessage": "Term Lists" + } + } + }, + "serviceConfig": { + "servicePath": "vocabularies", + "serviceType": "utility" + }, + "columns": { + "default": { + "displayName": { + "messages": { + "label": { + "id": "column.vocabulary.default.displayName", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "vocabularies_common:displayName", + "width": 250 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:vocabularies_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:vocabularies_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:vocabularies_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/vocabulary" + }, + "view": { + "type": "CompoundInput" + } + }, + "displayName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.vocabularies_common.displayName.name", + "defaultMessage": "Name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularies_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularies_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "ns2:abstract-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/jaxb" + }, + "view": { + "type": "CompoundInput" + } + }, + "list-item": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.list-item.name", + "defaultMessage": "Terms" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true, + "sortableFields": { + "displayName": true + } + } + } + }, + "displayName": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.displayName.name", + "defaultMessage": "Name" + }, + "fullName": { + "id": "field.vocabularyitems_common.displayName.fullName", + "defaultMessage": "Term name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sourcePage": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.sourcePage.name", + "defaultMessage": "Source page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "vocabTermStatuses" + } + } + } + }, + "referenced": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "defaultValue": true + } + }, + "workflowState": { + "[config]": { + "view": { + "type": "WorkflowStateInput" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.vocabulary.default.name", + "defaultMessage": "Standard Template" + } + } + } + }, + "name": "vocabulary" + }, + "work": { + "messages": { + "record": { + "name": { + "id": "record.work.name", + "defaultMessage": "Work" + }, + "collectionName": { + "id": "record.work.collectionName", + "defaultMessage": "Works" + } + }, + "panel": { + "info": { + "id": "panel.work.info", + "defaultMessage": "Work Information" + }, + "hierarchy": { + "id": "panel.work.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.work.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Works", + "servicePath": "workauthorities", + "serviceType": "authority", + "objectName": "Workitem", + "documentName": "works" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.work.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.work.all.collectionName", + "defaultMessage": "All Works" + }, + "itemName": { + "id": "vocab.work.all.itemName", + "defaultMessage": "Work" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.work.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.work.local.collectionName", + "defaultMessage": "Local Works" + }, + "itemName": { + "id": "vocab.work.local.itemName", + "defaultMessage": "Local Work" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(work)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "cona": { + "messages": { + "name": { + "id": "vocab.work.cona.name", + "defaultMessage": "CONA" + }, + "collectionName": { + "id": "vocab.work.cona.collectionName", + "defaultMessage": "CONA Works" + }, + "itemName": { + "id": "vocab.work.cona.itemName", + "defaultMessage": "CONA Work" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(cona_work)" + }, + "name": "cona", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:works_common/workType" + }, + { + "op": "range", + "path": "ns2:works_common/workDateGroupList/workDateGroup" + }, + { + "op": "eq", + "path": "ns2:works_common/creatorGroupList/creatorGroup/creator" + }, + { + "op": "eq", + "path": "ns2:works_common/publisherGroupList/publisherGroup/publisher" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.work.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "works_common:workTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.work.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "works_common:workTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.work.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.work.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:works_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.work.parent", + "defaultMessage": "Broader work" + }, + "children": { + "id": "hierarchyInput.work.children", + "defaultMessage": "Narrower works" + }, + "siblings": { + "id": "hierarchyInput.work.siblings", + "defaultMessage": "Adjacent works" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:works_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:works_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "workTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.works_common.workTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "workTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.works_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.works_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.works_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.works_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "worktermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.works_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "workTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.works_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.works_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.works_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.works_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.works_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.works_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.works_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.works_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.works_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.works_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.works_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.works_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "workType": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workType.name", + "defaultMessage": "Work type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "worktype" + } + } + } + }, + "workDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "workDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "workHistoryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workHistoryNote.name", + "defaultMessage": "History note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "creatorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "creatorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.creatorGroup.name", + "defaultMessage": "Creator" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "creator": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.creator.fullName", + "defaultMessage": "Creator name" + }, + "name": { + "id": "field.works_common.creator.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "creatorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.creatorType.fullName", + "defaultMessage": "Creator type" + }, + "name": { + "id": "field.works_common.creatorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "workcreatortype" + } + } + } + } + } + }, + "publisherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publisherGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.publisherGroup.name", + "defaultMessage": "Publisher" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "publisher": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.publisher.fullName", + "defaultMessage": "Publisher name" + }, + "name": { + "id": "field.works_common.publisher.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "publisherType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.publisherType.fullName", + "defaultMessage": "Publisher type" + }, + "name": { + "id": "field.works_common.publisherType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "workpublishertype" + } + } + } + } + } + }, + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.work.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workHistoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "creatorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "creatorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "creator" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creatorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publisherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.work.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:works_common", + "workDateGroupList", + "workDateGroup" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workHistoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "work" + }, + "osteology": { + "messages": { + "record": { + "name": { + "id": "record.osteology.name", + "defaultMessage": "Osteology" + }, + "collectionName": { + "id": "record.osteology.collectionName", + "defaultMessage": "Osteology" + } + }, + "inputTable": { + "completeness": { + "id": "inputTable.osteology.completeness", + "defaultMessage": "Completeness" + }, + "dentition": { + "id": "inputTable.osteology.dentition", + "defaultMessage": "Dentition" + }, + "mortuaryTreatment": { + "id": "inputTable.osteology.mortuaryTreatment", + "defaultMessage": "Mortuary treatment" + }, + "behrensmeyer": { + "id": "inputTable.osteology.behrensmeyer", + "defaultMessage": "Behrensmeyer stage" + }, + "trepanationDimension": { + "id": "inputTable.osteology.trepanationDimension", + "defaultMessage": "Dimension (mm)" + } + }, + "panel": { + "info": { + "id": "panel.osteology.info", + "defaultMessage": "Osteology Information" + }, + "inventory": { + "id": "panel.osteology.inventory", + "defaultMessage": "Inventory" + }, + "modification": { + "id": "panel.osteology.modification", + "defaultMessage": "Cultural Modification Information" + }, + "cranialDeform": { + "id": "panel.osteology.cranialDeform", + "defaultMessage": "Cranial Deformation Information" + }, + "trepanation": { + "id": "panel.osteology.trepanation", + "defaultMessage": "Trepanation Information" + } + } + }, + "serviceConfig": { + "serviceName": "Osteology", + "servicePath": "osteology", + "serviceType": "procedure", + "objectName": "Osteology", + "documentName": "osteology" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:osteology_common/InventoryID" + }, + { + "op": "eq", + "path": "ns2:osteology_common/inventoryAnalyst" + }, + { + "op": "range", + "path": "ns2:osteology_common/inventoryDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "InventoryID": { + "messages": { + "label": { + "id": "column.osteology.default.InventoryID", + "defaultMessage": "Inventory ID" + } + }, + "order": 10, + "sortBy": "osteology_common:InventoryID", + "width": 250 + }, + "inventoryDate": { + "messages": { + "label": { + "id": "column.osteology.default.inventoryDate", + "defaultMessage": "Date" + } + }, + "order": 20, + "sortBy": "osteology_common:inventoryDate", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.group.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:osteology_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:osteology_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:osteology_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/osteology" + } + }, + "InventoryID": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.osteology_common.InventoryID.name", + "defaultMessage": "Inventory ID" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "osteoAgeEstimateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.osteoAgeEstimateGroup.name", + "defaultMessage": "Age estimate" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "osteoAgeEstimateVerbatim": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateVerbatim.fullName", + "defaultMessage": "Age estimate verbatim" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateVerbatim.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateLower": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateLower.fullName", + "defaultMessage": "Age estimate lower" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateLower.name", + "defaultMessage": "Lower (years)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateUpper": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateUpper.fullName", + "defaultMessage": "Age estimate upper" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateUpper.name", + "defaultMessage": "Upper (years)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "osteoAgeEstimateAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateAnalyst.fullName", + "defaultMessage": "Age estimate analyst" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "osteoAgeEstimateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateNote.fullName", + "defaultMessage": "Age estimate note" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "sexDeterminationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sexDeterminationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.sexDeterminationGroup.name", + "defaultMessage": "Sex determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "sexDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDetermination.fullName", + "defaultMessage": "Sex determination" + }, + "name": { + "id": "field.osteology_common.sexDetermination.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexDeterminations" + } + } + } + }, + "sexDeterminationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "sexDeterminationAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationAnalyst.fullName", + "defaultMessage": "Sex determination analyst" + }, + "name": { + "id": "field.osteology_common.sexDeterminationAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "sexDeterminationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationNote.fullName", + "defaultMessage": "Sex determination note" + }, + "name": { + "id": "field.osteology_common.sexDeterminationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "completeness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.completeness.fullName", + "defaultMessage": "Completeness level" + }, + "name": { + "id": "field.osteology_common.completeness.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "osteocompleteness" + } + } + } + }, + "completenessNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.completenessNote.fullName", + "defaultMessage": "Completeness note" + }, + "name": { + "id": "field.osteology_common.completenessNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "molarsPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_common.molarsPresent.name", + "defaultMessage": "Molars present" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dentitionScore": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.dentitionScore.fullName", + "defaultMessage": "Dentition score" + }, + "name": { + "id": "field.osteology_common.dentitionScore.name", + "defaultMessage": "Score" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dentitionscore" + } + } + } + }, + "dentitionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.dentitionNote.fullName", + "defaultMessage": "Dentition note" + }, + "name": { + "id": "field.osteology_common.dentitionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "mortuaryTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.mortuaryTreatment.fullName", + "defaultMessage": "Mortuary treatment" + }, + "name": { + "id": "field.osteology_common.mortuaryTreatment.name", + "defaultMessage": "Treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "mortuarytreatment" + } + } + } + }, + "mortuaryTreatmentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.mortuaryTreatmentNote.fullName", + "defaultMessage": "Mortuary treatment note" + }, + "name": { + "id": "field.osteology_common.mortuaryTreatmentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "behrensmeyerSingleLower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.behrensmeyerSingleLower.fullName", + "defaultMessage": "Behrensmeyer stage - Single/lower" + }, + "name": { + "id": "field.osteology_common.behrensmeyerSingleLower.name", + "defaultMessage": "Single/lower" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "behrensmeyerUpper": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.behrensmeyerUpper.fullName", + "defaultMessage": "Behrensmeyer stage - Upper" + }, + "name": { + "id": "field.osteology_common.behrensmeyerUpper.name", + "defaultMessage": "Upper" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "NotesOnElementInventory": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.NotesOnElementInventory.name", + "defaultMessage": "Inventory note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "pathologyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.pathologyNote.name", + "defaultMessage": "General pathology and trauma note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "InventoryIsComplete": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_common.InventoryIsComplete.name", + "defaultMessage": "Inventory complete" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "inventoryAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.inventoryAnalyst.fullName", + "defaultMessage": "Inventory analyst" + }, + "name": { + "id": "field.osteology_common.inventoryAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "inventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.inventoryDate.fullName", + "defaultMessage": "Inventory date" + }, + "name": { + "id": "field.osteology_common.inventoryDate.name", + "defaultMessage": "Date" + } + }, + "required": true, + "view": { + "type": "DateInput" + } + } + }, + "Acetabulum_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Acetabulum_L.name", + "defaultMessage": "Acetabulum left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Acetabulum_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Acetabulum_R.name", + "defaultMessage": "Acetabulum right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Auricular_surf_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Auricular_surf_L.name", + "defaultMessage": "Auricular surf. left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Auricular_surf_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Auricular_surf_R.name", + "defaultMessage": "Auricular surf. right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_L_arch.name", + "defaultMessage": "C1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_R_arch.name", + "defaultMessage": "C1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_complete.name", + "defaultMessage": "C1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_L_arch.name", + "defaultMessage": "C2 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_R_arch.name", + "defaultMessage": "C2 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_centrum.name", + "defaultMessage": "C2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_complete.name", + "defaultMessage": "C2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_L_arch.name", + "defaultMessage": "C3-6 (~3) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_R_arch.name", + "defaultMessage": "C3-6 (~3) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_centrum.name", + "defaultMessage": "C3-6 (~3) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_complete.name", + "defaultMessage": "C3-6 (~3)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_L_arch.name", + "defaultMessage": "C3-6 (~4) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_R_arch.name", + "defaultMessage": "C3-6 (~4) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_centrum.name", + "defaultMessage": "C3-6 (~4) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_complete.name", + "defaultMessage": "C3-6 (~4)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_L_arch.name", + "defaultMessage": "C3-6 (~5) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_R_arch.name", + "defaultMessage": "C3-6 (~5) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_centrum.name", + "defaultMessage": "C3-6 (~5) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_complete.name", + "defaultMessage": "C3-6 (~5)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C6_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_L_arch.name", + "defaultMessage": "C3-6 (~6) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_R_arch.name", + "defaultMessage": "C3-6 (~6) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_centrum.name", + "defaultMessage": "C3-6 (~6) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_complete.name", + "defaultMessage": "C3-6 (~6)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C7_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_L_arch.name", + "defaultMessage": "C7 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_R_arch.name", + "defaultMessage": "C7 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_centrum.name", + "defaultMessage": "C7 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_complete.name", + "defaultMessage": "C7" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_L_arch_count.name", + "defaultMessage": "C left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "C_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_R_arch_count.name", + "defaultMessage": "C right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "C_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_centra_count.name", + "defaultMessage": "C centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Calcaneus_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Calcaneus_L.name", + "defaultMessage": "Calcaneus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Calcaneus_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Calcaneus_R.name", + "defaultMessage": "Calcaneus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Capitate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Capitate_L.name", + "defaultMessage": "Capitate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Capitate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Capitate_R.name", + "defaultMessage": "Capitate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Carpals_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Carpals_L_complete.name", + "defaultMessage": "Carpals left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Carpals_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Carpals_R_complete.name", + "defaultMessage": "Carpals right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Clavicle_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Clavicle_L.name", + "defaultMessage": "Clavicle left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Clavicle_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Clavicle_R.name", + "defaultMessage": "Clavicle right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Coccyx": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Coccyx.name", + "defaultMessage": "Coccyx" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cranium": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cranium.name", + "defaultMessage": "Cranium" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cuboid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cuboid_L.name", + "defaultMessage": "Cuboid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cuboid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cuboid_R.name", + "defaultMessage": "Cuboid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ethmoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ethmoid.name", + "defaultMessage": "Ethmoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_JS_D.name", + "defaultMessage": "Femur left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_JS_P.name", + "defaultMessage": "Femur left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_complete.name", + "defaultMessage": "Femur left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Femur_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_D.name", + "defaultMessage": "Femur left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_M.name", + "defaultMessage": "Femur left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_P.name", + "defaultMessage": "Femur left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_JS_D.name", + "defaultMessage": "Femur right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_JS_P.name", + "defaultMessage": "Femur right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_complete.name", + "defaultMessage": "Femur right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Femur_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_D.name", + "defaultMessage": "Femur right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_M.name", + "defaultMessage": "Femur right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_P.name", + "defaultMessage": "Femur right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_JS_D.name", + "defaultMessage": "Fibula left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_JS_P.name", + "defaultMessage": "Fibula left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_complete.name", + "defaultMessage": "Fibula left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Fibula_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_D.name", + "defaultMessage": "Fibula left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_M.name", + "defaultMessage": "Fibula left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_P.name", + "defaultMessage": "Fibula left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_JS_D.name", + "defaultMessage": "Fibula right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_JS_P.name", + "defaultMessage": "Fibula right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_complete.name", + "defaultMessage": "Fibula right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Fibula_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_D.name", + "defaultMessage": "Fibula right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_M.name", + "defaultMessage": "Fibula right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_P.name", + "defaultMessage": "Fibula right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Frontal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Frontal_L.name", + "defaultMessage": "Frontal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Frontal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Frontal_R.name", + "defaultMessage": "Frontal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Glenoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Glenoid_L.name", + "defaultMessage": "Glenoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Glenoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Glenoid_R.name", + "defaultMessage": "Glenoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hamate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hamate_L.name", + "defaultMessage": "Hamate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hamate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hamate_R.name", + "defaultMessage": "Hamate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_JS_D.name", + "defaultMessage": "Humerus left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_JS_P.name", + "defaultMessage": "Humerus left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_complete.name", + "defaultMessage": "Humerus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Humerus_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_D.name", + "defaultMessage": "Humerus left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_M.name", + "defaultMessage": "Humerus left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_P.name", + "defaultMessage": "Humerus left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_JS_D.name", + "defaultMessage": "Humerus right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_JS_P.name", + "defaultMessage": "Humerus right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_complete.name", + "defaultMessage": "Humerus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Humerus_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_D.name", + "defaultMessage": "Humerus right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_M.name", + "defaultMessage": "Humerus right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_P.name", + "defaultMessage": "Humerus right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hyoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hyoid.name", + "defaultMessage": "Hyoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ilium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ilium_L.name", + "defaultMessage": "Ilium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ilium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ilium_R.name", + "defaultMessage": "Ilium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Int_cuneif_2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Int_cuneif_2_L.name", + "defaultMessage": "Int. cuneiform (2) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Int_cuneif_2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Int_cuneif_2_R.name", + "defaultMessage": "Int. cuneiform (2) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ischium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ischium_L.name", + "defaultMessage": "Ischium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ischium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ischium_R.name", + "defaultMessage": "Ischium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_L_arch.name", + "defaultMessage": "L1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_R_arch.name", + "defaultMessage": "L1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_centrum.name", + "defaultMessage": "L1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_complete.name", + "defaultMessage": "L1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_L_arch.name", + "defaultMessage": "L2 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_R_arch.name", + "defaultMessage": "L2 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_centrum.name", + "defaultMessage": "L2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_complete.name", + "defaultMessage": "L2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_L_arch.name", + "defaultMessage": "L3 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_R_arch.name", + "defaultMessage": "L3 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_centrum.name", + "defaultMessage": "L3 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_complete.name", + "defaultMessage": "L3" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_L_arch.name", + "defaultMessage": "L4 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_R_arch.name", + "defaultMessage": "L4 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_centrum.name", + "defaultMessage": "L4 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_complete.name", + "defaultMessage": "L4" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_L_arch.name", + "defaultMessage": "L5 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_R_arch.name", + "defaultMessage": "L5 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_centrum.name", + "defaultMessage": "L5 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_complete.name", + "defaultMessage": "L5" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_L_arch_count.name", + "defaultMessage": "L left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "L_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_R_arch_count.name", + "defaultMessage": "L right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "L_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_centra_count.name", + "defaultMessage": "L centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Lacrimal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lacrimal_L.name", + "defaultMessage": "Lacrimal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lacrimal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lacrimal_R.name", + "defaultMessage": "Lacrimal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lat_cuneif_3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lat_cuneif_3_L.name", + "defaultMessage": "Lat. cuneiform (3) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lat_cuneif_3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lat_cuneif_3_R.name", + "defaultMessage": "Lat. cuneiform (3) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lunate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lunate_L.name", + "defaultMessage": "Lunate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lunate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lunate_R.name", + "defaultMessage": "Lunate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC1_L.name", + "defaultMessage": "MC 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC1_R.name", + "defaultMessage": "MC 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC2_L.name", + "defaultMessage": "MC 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC2_R.name", + "defaultMessage": "MC 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC3_L.name", + "defaultMessage": "MC 3 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC3_R.name", + "defaultMessage": "MC 3 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC4_L.name", + "defaultMessage": "MC 4 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC4_R.name", + "defaultMessage": "MC 4 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC5_L.name", + "defaultMessage": "MC 5 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC5_R.name", + "defaultMessage": "MC 5 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_L_complete.name", + "defaultMessage": "MC left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MC_L_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_L_count.name", + "defaultMessage": "MC left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MC_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_R_complete.name", + "defaultMessage": "MC right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MC_R_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_R_count.name", + "defaultMessage": "MC right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MT1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT1_L.name", + "defaultMessage": "MT 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT1_R.name", + "defaultMessage": "MT 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT2_L.name", + "defaultMessage": "MT 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT2_R.name", + "defaultMessage": "MT 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT3_L.name", + "defaultMessage": "MT 3 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT3_R.name", + "defaultMessage": "MT 3 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT4_L.name", + "defaultMessage": "MT 4 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT4_R.name", + "defaultMessage": "MT 4 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT5_L.name", + "defaultMessage": "MT 5 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT5_R.name", + "defaultMessage": "MT 5 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_L_complete.name", + "defaultMessage": "MT left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MT_L_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_L_count.name", + "defaultMessage": "MT left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MT_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_R_complete.name", + "defaultMessage": "MT right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MT_R_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_R_count.name", + "defaultMessage": "MT right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Mandible_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Mandible_L.name", + "defaultMessage": "Mandible left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Mandible_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Mandible_R.name", + "defaultMessage": "Mandible right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Manubrium": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Manubrium.name", + "defaultMessage": "Manubrium" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Maxilla_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Maxilla_L.name", + "defaultMessage": "Maxilla left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Maxilla_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Maxilla_R.name", + "defaultMessage": "Maxilla right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Med_cuneif_1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Med_cuneif_1_L.name", + "defaultMessage": "Med. cuneiform (1) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Med_cuneif_1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Med_cuneif_1_R.name", + "defaultMessage": "Med. cuneiform (1) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Nasal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Nasal_L.name", + "defaultMessage": "Nasal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Nasal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Nasal_R.name", + "defaultMessage": "Nasal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Navicular_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Navicular_L.name", + "defaultMessage": "Navicular left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Navicular_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Navicular_R.name", + "defaultMessage": "Navicular right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital.name", + "defaultMessage": "Occipital" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_L_pars_lateralis": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_L_pars_lateralis.name", + "defaultMessage": "Occipital pars lateralis left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_R_pars_lateralis": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_R_pars_lateralis.name", + "defaultMessage": "Occipital pars lateralis right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_pars_basilaris": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_pars_basilaris.name", + "defaultMessage": "Occipital pars basilaris" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Orbit_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Orbit_L.name", + "defaultMessage": "Orbit left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Orbit_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Orbit_R.name", + "defaultMessage": "Orbit right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Os_coxae_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Os_coxae_L.name", + "defaultMessage": "Os coxae left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Os_coxae_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Os_coxae_R.name", + "defaultMessage": "Os coxae right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Palatine_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Palatine_L.name", + "defaultMessage": "Palatine left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Palatine_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Palatine_R.name", + "defaultMessage": "Palatine right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Parietal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Parietal_L.name", + "defaultMessage": "Parietal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Parietal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Parietal_R.name", + "defaultMessage": "Parietal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Patella_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Patella_L.name", + "defaultMessage": "Patella left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Patella_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Patella_R.name", + "defaultMessage": "Patella right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Phalanx_D_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_D_count_foot.name", + "defaultMessage": "Dist. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_D_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_D_count_hand.name", + "defaultMessage": "Dist. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_I_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_I_count_foot.name", + "defaultMessage": "Int. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_I_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_I_count_hand.name", + "defaultMessage": "Int. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_P_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_P_count_foot.name", + "defaultMessage": "Prox. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_P_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_P_count_hand.name", + "defaultMessage": "Prox. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_juv_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_juv_count_foot.name", + "defaultMessage": "Juv. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_juv_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_juv_count_hand.name", + "defaultMessage": "Juv. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Pisiform_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pisiform_L.name", + "defaultMessage": "Pisiform left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pisiform_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pisiform_R.name", + "defaultMessage": "Pisiform right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pubis_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pubis_L.name", + "defaultMessage": "Pubis left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pubis_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pubis_R.name", + "defaultMessage": "Pubis right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_JS_D.name", + "defaultMessage": "Radius left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_JS_P.name", + "defaultMessage": "Radius left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_complete.name", + "defaultMessage": "Radius left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Radius_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_D.name", + "defaultMessage": "Radius left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_M.name", + "defaultMessage": "Radius left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_P.name", + "defaultMessage": "Radius left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_JS_D.name", + "defaultMessage": "Radius right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_JS_P.name", + "defaultMessage": "Radius right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_complete.name", + "defaultMessage": "Radius right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Radius_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_D.name", + "defaultMessage": "Radius right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_M.name", + "defaultMessage": "Radius right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_P.name", + "defaultMessage": "Radius right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L.name", + "defaultMessage": "Rib 10 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L_head_neck_complete.name", + "defaultMessage": "Rib 10 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L_sternal_end_complete.name", + "defaultMessage": "Rib 10 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R.name", + "defaultMessage": "Rib 10 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R_head_neck_complete.name", + "defaultMessage": "Rib 10 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R_sternal_end_complete.name", + "defaultMessage": "Rib 10 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L.name", + "defaultMessage": "Rib 11 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib11_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L_head_neck_complete.name", + "defaultMessage": "Rib 11 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L_sternal_end_complete.name", + "defaultMessage": "Rib 11 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R.name", + "defaultMessage": "Rib 11 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib11_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R_head_neck_complete.name", + "defaultMessage": "Rib 11 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R_sternal_end_complete.name", + "defaultMessage": "Rib 11 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L.name", + "defaultMessage": "Rib 12 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib12_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L_head_neck_complete.name", + "defaultMessage": "Rib 12 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L_sternal_end_complete.name", + "defaultMessage": "Rib 12 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R.name", + "defaultMessage": "Rib 12 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib12_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R_head_neck_complete.name", + "defaultMessage": "Rib 12 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R_sternal_end_complete.name", + "defaultMessage": "Rib 12 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L.name", + "defaultMessage": "Rib 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib1_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L_head_neck_complete.name", + "defaultMessage": "Rib 1 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L_sternal_end_complete.name", + "defaultMessage": "Rib 1 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R.name", + "defaultMessage": "Rib 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib1_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R_head_neck_complete.name", + "defaultMessage": "Rib 1 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R_sternal_end_complete.name", + "defaultMessage": "Rib 1 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L.name", + "defaultMessage": "Rib 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib2_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L_head_neck_complete.name", + "defaultMessage": "Rib 2 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L_sternal_end_complete.name", + "defaultMessage": "Rib 2 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R.name", + "defaultMessage": "Rib 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib2_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R_head_neck_complete.name", + "defaultMessage": "Rib 2 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R_sternal_end_complete.name", + "defaultMessage": "Rib 2 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L.name", + "defaultMessage": "Rib 3-9 (~3) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib3_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~3) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~3) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R.name", + "defaultMessage": "Rib 3-9 (~3) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib3_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~3) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~3) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L.name", + "defaultMessage": "Rib 3-9 (~4) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib4_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~4) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~4) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R.name", + "defaultMessage": "Rib 3-9 (~4) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib4_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~4) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~4) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L.name", + "defaultMessage": "Rib 3-9 (~5) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib5_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~5) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~5) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R.name", + "defaultMessage": "Rib 3-9 (~5) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib5_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~5) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~5) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L.name", + "defaultMessage": "Rib 3-9 (~6) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib6_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~6) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~6) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R.name", + "defaultMessage": "Rib 3-9 (~6) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib6_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~6) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~6) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L.name", + "defaultMessage": "Rib 3-9 (~7) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib7_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~7) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~7) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R.name", + "defaultMessage": "Rib 3-9 (~7) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib7_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~7) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~7) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L.name", + "defaultMessage": "Rib 3-9 (~8) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib8_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~8) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~8) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R.name", + "defaultMessage": "Rib 3-9 (~8) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib8_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~8) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~8) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L.name", + "defaultMessage": "Rib 3-9 (~9) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib9_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~9) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~9) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R.name", + "defaultMessage": "Rib 3-9 (~9) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib9_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~9) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~9) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Ribs_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ribs_L_complete.name", + "defaultMessage": "Ribs left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ribs_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ribs_R_complete.name", + "defaultMessage": "Ribs right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S1_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_L_ala.name", + "defaultMessage": "S1 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_R_ala.name", + "defaultMessage": "S1 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_centrum.name", + "defaultMessage": "S1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_complete.name", + "defaultMessage": "S1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S2_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_L_ala.name", + "defaultMessage": "S2 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_R_ala.name", + "defaultMessage": "S2 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_centrum.name", + "defaultMessage": "S2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_complete.name", + "defaultMessage": "S2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S3_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_L_ala.name", + "defaultMessage": "S3 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_R_ala.name", + "defaultMessage": "S3 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_centrum.name", + "defaultMessage": "S3 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_complete.name", + "defaultMessage": "S3" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S4_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_L_ala.name", + "defaultMessage": "S4 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_R_ala.name", + "defaultMessage": "S4 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_centrum.name", + "defaultMessage": "S4 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_complete.name", + "defaultMessage": "S4" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S5_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_L_ala.name", + "defaultMessage": "S5 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_R_ala.name", + "defaultMessage": "S5 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_centrum.name", + "defaultMessage": "S5 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_complete.name", + "defaultMessage": "S5" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S_L_ala_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_L_ala_count.name", + "defaultMessage": "S left ala count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "S_R_ala_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_R_ala_count.name", + "defaultMessage": "S right ala count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "S_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_centra_count.name", + "defaultMessage": "S centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sacrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum.name", + "defaultMessage": "Sacrum centra" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_L_alae": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_L_alae.name", + "defaultMessage": "Sacrum left alae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_R_alae": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_R_alae.name", + "defaultMessage": "Sacrum right alae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_complete.name", + "defaultMessage": "Sacrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Scaphoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scaphoid_L.name", + "defaultMessage": "Scaphoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scaphoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scaphoid_R.name", + "defaultMessage": "Scaphoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scapula_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scapula_L.name", + "defaultMessage": "Scapula left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scapula_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scapula_R.name", + "defaultMessage": "Scapula right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sesamoid_L_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_L_count_foot.name", + "defaultMessage": "Foot sesamoid left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_L_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_L_count_hand.name", + "defaultMessage": "Hand sesamoid left count " + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_R_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_R_count_foot.name", + "defaultMessage": "Foot sesamoid right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_R_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_R_count_hand.name", + "defaultMessage": "Hand sesamoid right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sphenoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sphenoid.name", + "defaultMessage": "Sphenoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sternum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sternum.name", + "defaultMessage": "Sternum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_L_arch.name", + "defaultMessage": "T10 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_R_arch.name", + "defaultMessage": "T10 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_centrum.name", + "defaultMessage": "T10 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_complete.name", + "defaultMessage": "T10" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T11_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_L_arch.name", + "defaultMessage": "T11 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_R_arch.name", + "defaultMessage": "T11 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_centrum.name", + "defaultMessage": "T11 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_complete.name", + "defaultMessage": "T11" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T12_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_L_arch.name", + "defaultMessage": "T12 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_R_arch.name", + "defaultMessage": "T12 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_centrum.name", + "defaultMessage": "T12 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_complete.name", + "defaultMessage": "T12" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_L_arch.name", + "defaultMessage": "T1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_R_arch.name", + "defaultMessage": "T1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_centrum.name", + "defaultMessage": "T1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_complete.name", + "defaultMessage": "T1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_L_arch.name", + "defaultMessage": "T2-9 (~2) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_R_arch.name", + "defaultMessage": "T2-9 (~2) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_centrum.name", + "defaultMessage": "T2-9 (~2) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_complete.name", + "defaultMessage": "T2-9 (~2)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_L_arch.name", + "defaultMessage": "T2-9 (~3) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_R_arch.name", + "defaultMessage": "T2-9 (~3) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_centrum.name", + "defaultMessage": "T2-9 (~3) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_complete.name", + "defaultMessage": "T2-9 (~3)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_L_arch.name", + "defaultMessage": "T2-9 (~4) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_R_arch.name", + "defaultMessage": "T2-9 (~4) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_centrum.name", + "defaultMessage": "T2-9 (~4) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_complete.name", + "defaultMessage": "T2-9 (~4)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_L_arch.name", + "defaultMessage": "T2-9 (~5) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_R_arch.name", + "defaultMessage": "T2-9 (~5) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_centrum.name", + "defaultMessage": "T2-9 (~5) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_complete.name", + "defaultMessage": "T2-9 (~5)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T6_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_L_arch.name", + "defaultMessage": "T2-9 (~6) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_R_arch.name", + "defaultMessage": "T2-9 (~6) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_centrum.name", + "defaultMessage": "T2-9 (~6) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_complete.name", + "defaultMessage": "T2-9 (~6)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T7_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_L_arch.name", + "defaultMessage": "T2-9 (~7) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_R_arch.name", + "defaultMessage": "T2-9 (~7) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_centrum.name", + "defaultMessage": "T2-9 (~7) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_complete.name", + "defaultMessage": "T2-9 (~7)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T8_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_L_arch.name", + "defaultMessage": "T2-9 (~8) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_R_arch.name", + "defaultMessage": "T2-9 (~8) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_centrum.name", + "defaultMessage": "T2-9 (~8) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_complete.name", + "defaultMessage": "T2-9 (~8)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T9_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_L_arch.name", + "defaultMessage": "T2-9 (~9) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_R_arch.name", + "defaultMessage": "T2-9 (~9) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_centrum.name", + "defaultMessage": "T2-9 (~9) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_complete.name", + "defaultMessage": "T2-9 (~9)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_L_arch_count.name", + "defaultMessage": "T left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "T_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_R_arch_count.name", + "defaultMessage": "T right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "T_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_centra_count.name", + "defaultMessage": "T centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Talus_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Talus_L.name", + "defaultMessage": "Talus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Talus_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Talus_R.name", + "defaultMessage": "Talus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tarsals_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tarsals_L_complete.name", + "defaultMessage": "Tarsals left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tarsals_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tarsals_R_complete.name", + "defaultMessage": "Tarsals right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Teeth_LC_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LC_L.name", + "defaultMessage": "Lower LCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LC_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LC_R.name", + "defaultMessage": "Lower RCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI1_L.name", + "defaultMessage": "Lower LI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI1_R.name", + "defaultMessage": "Lower RI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI2_L.name", + "defaultMessage": "Lower LI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI2_R.name", + "defaultMessage": "Lower RI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM1_L.name", + "defaultMessage": "Lower LM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM1_R.name", + "defaultMessage": "Lower RM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM2_L.name", + "defaultMessage": "Lower LM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM2_R.name", + "defaultMessage": "Lower RM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM3_L.name", + "defaultMessage": "Lower LM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM3_R.name", + "defaultMessage": "Lower RM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP3_L.name", + "defaultMessage": "Lower LP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP3_R.name", + "defaultMessage": "Lower RP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP4_L.name", + "defaultMessage": "Lower LP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP4_R.name", + "defaultMessage": "Lower RP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UC_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UC_L.name", + "defaultMessage": "Upper LCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UC_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UC_R.name", + "defaultMessage": "Upper RCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI1_L.name", + "defaultMessage": "Upper LI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI1_R.name", + "defaultMessage": "Upper RI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI2_L.name", + "defaultMessage": "Upper LI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI2_R.name", + "defaultMessage": "Upper RI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM1_L.name", + "defaultMessage": "Upper LM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM1_R.name", + "defaultMessage": "Upper RM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM2_L.name", + "defaultMessage": "Upper LM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM2_R.name", + "defaultMessage": "Upper RM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM3_L.name", + "defaultMessage": "Upper LM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM3_R.name", + "defaultMessage": "Upper RM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP3_L.name", + "defaultMessage": "Upper LP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP3_R.name", + "defaultMessage": "Upper RP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP4_L.name", + "defaultMessage": "Upper LP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP4_R.name", + "defaultMessage": "Upper RP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldc_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldc_L.name", + "defaultMessage": "Lower Ldcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldc_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldc_R.name", + "defaultMessage": "Lower Rdcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi1_L.name", + "defaultMessage": "Lower Ldi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi1_R.name", + "defaultMessage": "Lower Rdi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi2_L.name", + "defaultMessage": "Lower Ldi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi2_R.name", + "defaultMessage": "Lower Rdi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm1_L.name", + "defaultMessage": "Lower Ldm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm1_R.name", + "defaultMessage": "Lower Rdm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm2_L.name", + "defaultMessage": "Lower Ldm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm2_R.name", + "defaultMessage": "Lower Rdm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udc_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udc_L.name", + "defaultMessage": "Upper Ldcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udc_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udc_R.name", + "defaultMessage": "Upper Rdcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi1_L.name", + "defaultMessage": "Upper Ldi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi1_R.name", + "defaultMessage": "Upper Rdi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi2_L.name", + "defaultMessage": "Upper Ldi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi2_R.name", + "defaultMessage": "Upper Rdi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm1_L.name", + "defaultMessage": "Upper Ldm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm1_R.name", + "defaultMessage": "Upper Rdm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm2_L.name", + "defaultMessage": "Upper Ldm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm2_R.name", + "defaultMessage": "Upper Rdm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_immVertFragsCount": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_immVertFragsCount.name", + "defaultMessage": "Imm. vert. frags count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Temporal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Temporal_L.name", + "defaultMessage": "Temporal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Temporal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Temporal_R.name", + "defaultMessage": "Temporal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_JS_D.name", + "defaultMessage": "Tibia left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_JS_P.name", + "defaultMessage": "Tibia left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_complete.name", + "defaultMessage": "Tibia left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tibia_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_D.name", + "defaultMessage": "Tibia left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_M.name", + "defaultMessage": "Tibia left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_P.name", + "defaultMessage": "Tibia left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_JS_D.name", + "defaultMessage": "Tibia right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_JS_P.name", + "defaultMessage": "Tibia right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_complete.name", + "defaultMessage": "Tibia right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tibia_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_D.name", + "defaultMessage": "Tibia right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_M.name", + "defaultMessage": "Tibia right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_P.name", + "defaultMessage": "Tibia right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezium_L.name", + "defaultMessage": "Trapezium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezium_R.name", + "defaultMessage": "Trapezium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezoid_L.name", + "defaultMessage": "Trapezoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezoid_R.name", + "defaultMessage": "Trapezoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Triquetral_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Triquetral_L.name", + "defaultMessage": "Triquetral left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Triquetral_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Triquetral_R.name", + "defaultMessage": "Triquetral right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_JS_D.name", + "defaultMessage": "Ulna left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_JS_P.name", + "defaultMessage": "Ulna left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_complete.name", + "defaultMessage": "Ulna left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ulna_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_D.name", + "defaultMessage": "Ulna left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_M.name", + "defaultMessage": "Ulna left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_P.name", + "defaultMessage": "Ulna left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_JS_D.name", + "defaultMessage": "Ulna right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_JS_P.name", + "defaultMessage": "Ulna right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_complete.name", + "defaultMessage": "Ulna right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ulna_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_D.name", + "defaultMessage": "Ulna right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_M.name", + "defaultMessage": "Ulna right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_P.name", + "defaultMessage": "Ulna right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Vertebrae_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Vertebrae_complete.name", + "defaultMessage": "Vertebrae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Vomer": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Vomer.name", + "defaultMessage": "Vomer" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Zygomatic_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Zygomatic_L.name", + "defaultMessage": "Zygomatic left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Zygomatic_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Zygomatic_R.name", + "defaultMessage": "Zygomatic right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + } + }, + "ns2:osteology_anthropology": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/osteology/domain/anthropology" + } + }, + "Notes_DentalPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_DentalPathology.name", + "defaultMessage": "Dental pathology (incl. alveolar)" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CranialPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CranialPathology.name", + "defaultMessage": "Cranial bony pathology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_PostcranialPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_PostcranialPathology.name", + "defaultMessage": "Postcranial bony pathology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CulturalModifications": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CulturalModifications.name", + "defaultMessage": "Cultural modification" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_NHTaphonomicAlterations": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_NHTaphonomicAlterations.name", + "defaultMessage": "Nonhuman taphonomic alteration" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CuratorialSuffixing": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CuratorialSuffixing.name", + "defaultMessage": "Curatorial suffixing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "cranialDeformationPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_anthropology.cranialDeformationPresent.name", + "defaultMessage": "Is any evidence of cranial deformation present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "cranialDeformationCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "cranialDeformationCategory": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.cranialDeformationCategory.fullName", + "defaultMessage": "Cranial deformation general category" + }, + "name": { + "id": "field.osteology_anthropology.cranialDeformationCategory.name", + "defaultMessage": "General category" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "cranialdeformationcategory" + } + } + } + } + }, + "cranialDeformationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.cranialDeformationNote.fullName", + "defaultMessage": "Cranial deformation comment" + }, + "name": { + "id": "field.osteology_anthropology.cranialDeformationNote.name", + "defaultMessage": "Comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "trepanationPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_anthropology.trepanationPresent.name", + "defaultMessage": "Is any evidence of trepanation present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "trepanationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "trepanationGroup": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.osteology_anthropology.trepanationGroup.name", + "defaultMessage": "Trepanation" + } + }, + "view": { + "type": "CompoundInput" + } + }, + "trepanationLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationLocation.fullName", + "defaultMessage": "Trepanation location (bone and side)" + }, + "name": { + "id": "field.osteology_anthropology.trepanationLocation.name", + "defaultMessage": "Location (bone and side)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationDimensionMax": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationDimensionMax.fullName", + "defaultMessage": "Trepanation dimension max." + }, + "groupName": { + "id": "field.osteology_anthropology.trepanationDimensionMax.groupName", + "defaultMessage": "Dimension max." + }, + "name": { + "id": "field.osteology_anthropology.trepanationDimensionMax.name", + "defaultMessage": "Max." + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationDimensionMin": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationDimensionMin.fullName", + "defaultMessage": "Trepanation dimension min." + }, + "groupName": { + "id": "field.osteology_anthropology.trepanationDimensionMin.groupName", + "defaultMessage": "Dimension min." + }, + "name": { + "id": "field.osteology_anthropology.trepanationDimensionMin.name", + "defaultMessage": "Min." + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationTechnique": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationTechnique.fullName", + "defaultMessage": "Trepanation technique" + }, + "name": { + "id": "field.osteology_anthropology.trepanationTechnique.name", + "defaultMessage": "Technique" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationtechnique" + } + } + } + }, + "trepanationHealing": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationHealing.fullName", + "defaultMessage": "Trepanation healing" + }, + "name": { + "id": "field.osteology_anthropology.trepanationHealing.name", + "defaultMessage": "Healing" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationhealing" + } + } + } + }, + "trepanationCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationCertainty.fullName", + "defaultMessage": "Trepanation certainty" + }, + "name": { + "id": "field.osteology_anthropology.trepanationCertainty.name", + "defaultMessage": "Certainty" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationcertainty" + } + } + } + }, + "trepanationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationNote.fullName", + "defaultMessage": "Trepanation comment" + }, + "name": { + "id": "field.osteology_anthropology.trepanationNote.name", + "defaultMessage": "Comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "trepanationGeneralNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationGeneralNote.fullName", + "defaultMessage": "Trepanation general comment" + }, + "name": { + "id": "field.osteology_anthropology.trepanationGeneralNote.name", + "defaultMessage": "General comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.osteology.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "InventoryID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateVerbatim" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateUpper" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sexDetermination" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completeness", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "completeness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentition", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "molarsPresent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentitionScore" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentitionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyer", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerSingleLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerUpper" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventory", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "NotesOnElementInventory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "pathologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "InventoryIsComplete" + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "style": { + "marginBottom": "8px" + }, + "children": { + "key": null, + "ref": null, + "props": { + "id": "form.osteology.default.affirmComplete", + "defaultMessage": "By checking this box, I am affirming that the inventory of this individual is complete and that any and all unfilled boxes on this form indicate confirmation that those elements (or portions thereof, or features) are not present for this individual.", + "values": { + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "Notes_DentalPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CranialPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_PostcranialPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CulturalModifications", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_NHTaphonomicAlterations", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CuratorialSuffixing", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "modification", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeform", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationPresent", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationCategories", + "subpath": "ns2:osteology_anthropology", + "children": { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationCategory" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationNote", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanation", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationPresent", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationGroupList", + "subpath": "ns2:osteology_anthropology", + "children": { + "key": null, + "ref": null, + "props": { + "name": "trepanationGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimension", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimensionMax" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimensionMin" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationTechnique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationHealing" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationCertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationGeneralNote", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "osteology" + }, + "taxon": { + "messages": { + "record": { + "name": { + "id": "record.taxon.name", + "defaultMessage": "Taxon" + }, + "collectionName": { + "id": "record.taxon.collectionName", + "defaultMessage": "Taxon names" + } + }, + "panel": { + "info": { + "id": "panel.taxon.info", + "defaultMessage": "Taxonomic Name Information" + }, + "hierarchy": { + "id": "panel.taxon.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.taxon.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Taxon", + "servicePath": "taxonomyauthority", + "serviceType": "authority", + "objectName": "Taxon", + "documentName": "taxon" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.taxon.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.taxon.all.collectionName", + "defaultMessage": "All Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.all.itemName", + "defaultMessage": "Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.taxon.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.taxon.local.collectionName", + "defaultMessage": "Local Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.local.itemName", + "defaultMessage": "Local Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(taxon)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "common": { + "messages": { + "name": { + "id": "vocab.taxon.common.name", + "defaultMessage": "Common" + }, + "collectionName": { + "id": "vocab.taxon.common.collectionName", + "defaultMessage": "Common Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.common.itemName", + "defaultMessage": "Common Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(common_ta)" + }, + "name": "common", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/taxonomicStatus" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonRank" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonCurrency" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonAuthorGroupList/taxonAuthorGroup/taxonAuthor" + }, + { + "op": "cont", + "path": "ns2:taxon_common/taxonYear" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonCitationList/taxonCitation" + }, + { + "op": "cont", + "path": "ns2:taxon_common/taxonNote" + }, + { + "op": "cont", + "path": "ns2:taxon_common/commonNameGroupList/commonNameGroup/commonName" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.taxon.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "taxon_common:taxonTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.taxon.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "taxon_common:taxonTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.taxon.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.taxon.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:taxon_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.taxon.parent", + "defaultMessage": "Broader taxon name" + }, + "children": { + "id": "hierarchyInput.taxon.children", + "defaultMessage": "Narrower taxon names" + }, + "siblings": { + "id": "hierarchyInput.taxon.siblings", + "defaultMessage": "Adjacent taxon names" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:taxon_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:taxon_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "taxonTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.taxon_common.taxonTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "taxonTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.taxon_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.taxon_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.taxon_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.taxon_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxontermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.taxon_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.taxon_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.taxon_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.taxon_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.taxon_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.taxon_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.taxon_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.taxon_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.taxon_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.taxon_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.taxon_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.taxon_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.taxon_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termFormattedDisplayName": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.termFormattedDisplayName.name", + "defaultMessage": "Formatted display name" + } + }, + "view": { + "type": "RichTextInput" + } + } + }, + "taxonomicStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonomicStatus.name", + "defaultMessage": "Taxonomic status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonomicStatuses" + } + } + } + } + } + }, + "taxonRank": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonRank.name", + "defaultMessage": "Rank" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonRanks" + } + } + } + }, + "taxonCurrency": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonCurrencies" + } + } + } + }, + "taxonAuthorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonAuthorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonAuthorGroup.name", + "defaultMessage": "Author" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.taxonAuthor.fullName", + "defaultMessage": "Author name" + }, + "name": { + "id": "field.taxon_common.taxonAuthor.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "taxonAuthorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.taxonAuthorType.fullName", + "defaultMessage": "Author type" + }, + "name": { + "id": "field.taxon_common.taxonAuthorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonAuthorTypes" + } + } + } + } + } + }, + "taxonYear": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonYear.name", + "defaultMessage": "Year" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "taxonCitationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonCitation": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + } + }, + "taxonIsNamedHybrid": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.taxon_common.taxonIsNamedHybrid.name", + "defaultMessage": "Is named hybrid" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "taxonNote": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonNote.name", + "defaultMessage": "Note" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "commonNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "commonNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.commonNameGroup.name", + "defaultMessage": "Common name" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonName.fullName", + "defaultMessage": "Common name" + }, + "name": { + "id": "field.taxon_common.commonName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "commonNameLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameLanguage.fullName", + "defaultMessage": "Common name language" + }, + "name": { + "id": "field.taxon_common.commonNameLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "commonNameSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameSource.fullName", + "defaultMessage": "Common name source" + }, + "name": { + "id": "field.taxon_common.commonNameSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared" + } + } + } + }, + "commonNameSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameSourceDetail.fullName", + "defaultMessage": "Common name source detail" + }, + "name": { + "id": "field.taxon_common.commonNameSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.taxon.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFormattedDisplayName" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonRank" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonCurrency" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonYear" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIsNamedHybrid" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonCitationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonCitation" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "commonNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "commonName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.taxon.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonRank" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonCurrency" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "taxon" + }, + "claim": { + "serviceConfig": { + "serviceName": "Claim", + "servicePath": "claims", + "serviceType": "procedure", + "objectName": "Claim", + "documentName": "claims" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:claims_common/claimNumber" + }, + { + "op": "cont", + "path": "ns2:claims_nagpra/nagpraClaimName" + }, + { + "op": "eq", + "path": "ns2:claims_common/claimantGroupList/claimantGroup/claimFiledBy" + }, + { + "op": "eq", + "path": "ns2:claims_common/claimantGroupList/claimantGroup/claimFiledOnBehalfOf" + }, + { + "op": "eq", + "path": "ns2:claims_nagpra/nagpraClaimTypes/nagpraClaimType" + }, + { + "op": "range", + "path": "ns2:claims_common/claimReceivedGroupList/claimReceivedGroup/claimReceivedDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "claimNumber": { + "messages": { + "label": { + "id": "column.claim.default.claimNumber", + "defaultMessage": "Claim number" + } + }, + "order": 10, + "sortBy": "claims_common:claimNumber", + "width": 200 + }, + "nagpraClaimName": { + "messages": { + "label": { + "id": "column.claim.default.nagpraClaimName", + "defaultMessage": "Name" + } + }, + "order": 15, + "sortBy": "claims_nagpra:nagpraClaimName", + "width": 200 + }, + "claimFiledOnBehalfOf": { + "messages": { + "label": { + "id": "column.claim.default.claimFiledOnBehalfOf", + "defaultMessage": "Filed on behalf of" + } + }, + "order": 20, + "sortBy": "claims_common:claimantGroupList/0/claimFiledOnBehalfOf", + "width": 300 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.claim.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:claims_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:claims_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:claims_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim" + } + }, + "claimNumber": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.claims_common.claimNumber.name", + "defaultMessage": "Claim number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "claim" + } + } + } + }, + "claimantGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "claimantGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_common.claimantGroup.name", + "defaultMessage": "Claimant" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "claimFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimFiledBy.fullName", + "defaultMessage": "Claim filed by" + }, + "name": { + "id": "field.claims_common.claimFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "claimFiledOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimFiledOnBehalfOf.fullName", + "defaultMessage": "Claim filed on behalf of" + }, + "name": { + "id": "field.claims_common.claimFiledOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "claimantNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimantNote.fullName", + "defaultMessage": "Claimant note" + }, + "name": { + "id": "field.claims_common.claimantNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "claimReceivedGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "claimReceivedGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_common.claimReceivedGroup.name", + "defaultMessage": "Claim filed" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "claimReceivedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_common.claimReceivedDate.fullName", + "defaultMessage": "Claim filed date" + }, + "name": { + "id": "field.claims_common.claimReceivedDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "claimReceivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimReceivedNote.fullName", + "defaultMessage": "Claim filed note" + }, + "name": { + "id": "field.claims_common.claimReceivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:claims_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim/domain/nagpra" + } + }, + "nagpraClaimName": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimName.name", + "defaultMessage": "Claim name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimType": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimType.name", + "defaultMessage": "Claim type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraclaimtype" + } + } + } + } + }, + "nagpraClaimAltNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimAltNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameGroup.name", + "defaultMessage": "Alternate name/number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimAltName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltName.fullName", + "defaultMessage": "Alternate name/number" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltName.name", + "defaultMessage": "Name/number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimAltNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.fullName", + "defaultMessage": "Alternate name/number note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNote": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNote.name", + "defaultMessage": "Note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraClaimSiteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSiteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteGroup.name", + "defaultMessage": "Site/place involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSiteName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteName.fullName", + "defaultMessage": "Site/place involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "nagpraClaimSiteNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.fullName", + "defaultMessage": "Site/place involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimGroupGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimGroupGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupGroup.name", + "defaultMessage": "Cultural group involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimGroupName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupName.fullName", + "defaultMessage": "Cultural group involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraClaimGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.fullName", + "defaultMessage": "Cultural group involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimPeriodGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimPeriodGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodGroup.name", + "defaultMessage": "Time period represented" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimPeriodDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraClaimPeriodNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.fullName", + "defaultMessage": "Time period represented note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimInitialResponseGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimInitialResponseGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseGroup.name", + "defaultMessage": "Initial response" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimInitialResponseDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.fullName", + "defaultMessage": "Initial response date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimInitialResponseNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.fullName", + "defaultMessage": "Initial response note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToLocalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToLocalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalGroup.name", + "defaultMessage": "Sent to NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToLocalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.fullName", + "defaultMessage": "Sent to NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToLocalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.fullName", + "defaultMessage": "Sent to NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimLocalRecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimLocalRecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecGroup.name", + "defaultMessage": "Recommendation of NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimLocalRecDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.fullName", + "defaultMessage": "Recommendation of NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimLocalRecNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.fullName", + "defaultMessage": "Recommendation of NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToNatlGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToNatlGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlGroup.name", + "defaultMessage": "Sent to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToNatlDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.fullName", + "defaultMessage": "Sent to National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToNatlNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.fullName", + "defaultMessage": "Sent to National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlRespGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlRespGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespGroup.name", + "defaultMessage": "Response from National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlRespDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.fullName", + "defaultMessage": "Response from National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlRespNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.fullName", + "defaultMessage": "Response from National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalGroup.name", + "defaultMessage": "Publication by National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.fullName", + "defaultMessage": "Publication by National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.fullName", + "defaultMessage": "Publication by National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNoticeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNoticeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeGroup.name", + "defaultMessage": "National NAGPRA 30-day notice" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNoticeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.fullName", + "defaultMessage": "National NAGPRA 30-day notice date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNoticeDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.fullName", + "defaultMessage": "National NAGPRA 30-day notice date type" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nagpraNoticeDateTypes" + } + } + } + }, + "nagpraClaimNoticeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.fullName", + "defaultMessage": "National NAGPRA 30-day notice note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimTransferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimTransferGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferGroup.name", + "defaultMessage": "Transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimTransferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "dispositionPossibilitiesDiscussed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussed.name", + "defaultMessage": "Disposition possibilities discussed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dispositionPossibilitiesDiscussedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.fullName", + "defaultMessage": "Disposition possibilities discussed note" + }, + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "surroundingTribesContacted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.surroundingTribesContacted.name", + "defaultMessage": "Surrounding tribes contacted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "surroundingTribesContactedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.fullName", + "defaultMessage": "Surrounding tribes contacted note" + }, + "name": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "workingTeamNotified": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.workingTeamNotified.name", + "defaultMessage": "Institutional NAGPRA team notified" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "workingTeamNotifiedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.fullName", + "defaultMessage": "Institutional NAGPRA team notified note" + }, + "name": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "siteFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.siteFileResearchCompleted.name", + "defaultMessage": "Site file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "siteFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.fullName", + "defaultMessage": "Site file research completed note" + }, + "name": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "accessionFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompleted.name", + "defaultMessage": "Accession file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "accessionFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.fullName", + "defaultMessage": "Accession file research completed note" + }, + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsLocatedAndCounted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCounted.name", + "defaultMessage": "Objects located and counted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsLocatedAndCountedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.fullName", + "defaultMessage": "Objects located and counted note" + }, + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsConsolidated": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsConsolidated.name", + "defaultMessage": "Objects consolidated" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsConsolidatedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsConsolidatedNote.fullName", + "defaultMessage": "Objects consolidated note" + }, + "name": { + "id": "field.claims_nagpra.objectsConsolidatedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsPhotographed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsPhotographed.name", + "defaultMessage": "Objects photographed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsPhotographedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsPhotographedNote.fullName", + "defaultMessage": "Objects photographed note" + }, + "name": { + "id": "field.claims_nagpra.objectsPhotographedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "registrationDocumentsDrafted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.registrationDocumentsDrafted.name", + "defaultMessage": "Registration documents drawn up" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "registrationDocumentsDraftedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.fullName", + "defaultMessage": "Registration documents drawn up note" + }, + "name": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "tribeContactedForPackingPreferences": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferences.name", + "defaultMessage": "Tribe contacted for packing/storage instructions" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "tribeContactedForPackingPreferencesNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.fullName", + "defaultMessage": "Tribe contacted for packing/storage instructions note" + }, + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateArrangedForTransfer": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dateArrangedForTransfer.name", + "defaultMessage": "Date arranged for pickup/transfer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dateArrangedForTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.fullName", + "defaultMessage": "Date arranged for pickup/transfer note" + }, + "name": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsMarkedAsDeaccessioned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessioned.name", + "defaultMessage": "Objects marked as deaccessioned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsMarkedAsDeaccessionedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.fullName", + "defaultMessage": "Objects marked as deaccessioned note" + }, + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "documentsArchived": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.documentsArchived.name", + "defaultMessage": "Claim documents archived" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "documentsArchivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.documentsArchivedNote.fullName", + "defaultMessage": "Claim documents archived note" + }, + "name": { + "id": "field.claims_nagpra.documentsArchivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.claim.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimName", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimantGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "claimantGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimFiledOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimantNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTypes", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNotes", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimContext", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimProcessing", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTasks", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContacted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContactedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotified", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotifiedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCounted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCountedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidated", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidatedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDrafted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDraftedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferences", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferencesNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransfer", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransferNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessioned", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessionedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchived", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchivedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "messages": { + "record": { + "name": { + "id": "record.claim.name", + "defaultMessage": "Claim" + }, + "collectionName": { + "id": "record.claim.collectionName", + "defaultMessage": "Claims" + } + }, + "panel": { + "info": { + "id": "panel.claim.info", + "defaultMessage": "Claim Information" + }, + "nagpraClaimTasks": { + "id": "panel.ext.nagpra.nagpraClaimTasks", + "defaultMessage": "Tasks Completed" + }, + "nagpraClaimContext": { + "id": "panel.ext.nagpra.nagpraClaimContext", + "defaultMessage": "Claim Context" + }, + "nagpraClaimProcessing": { + "id": "panel.ext.nagpra.nagpraClaimProcessing", + "defaultMessage": "Claim Processing Information" + } + } + }, + "name": "claim" + } + }, + "idGenerators": { + "accession": { + "csid": "9dd92952-c384-44dc-a736-95e435c1759c", + "messages": { + "type": { + "id": "idGenerator.accession.type", + "defaultMessage": "Accession" + } + } + }, + "archives": { + "csid": "70586d30-9dca-4a07-a3a2-1976fe898028", + "messages": { + "type": { + "id": "idGenerator.archives.type", + "defaultMessage": "Archives" + } + } + }, + "library": { + "csid": "80fedaf6-1647-4f30-9f53-a75a3cac2ffd", + "messages": { + "type": { + "id": "idGenerator.library.type", + "defaultMessage": "Library" + } + } + }, + "conditioncheck": { + "csid": "585af100-1a35-11e2-892e-0800200c9a66", + "messages": { + "type": { + "id": "idGenerator.conditioncheck.type", + "defaultMessage": "Condition Check" + } + } + }, + "conservation": { + "csid": "aad54202-404d-4f19-ada9-8b1e378ad1b2", + "messages": { + "type": { + "id": "idGenerator.conservation.type", + "defaultMessage": "Conservation" + } + } + }, + "exhibition": { + "csid": "29ff8c5e-597a-41c6-a481-6e92dfe0a59f", + "messages": { + "type": { + "id": "idGenerator.exhibition.type", + "defaultMessage": "Exhibition" + } + } + }, + "insurance": { + "csid": "e6f52346-0d2c-4b68-8a35-0a27dad2f3f4", + "messages": { + "type": { + "id": "idGenerator.insurance.type", + "defaultMessage": "Insurance" + } + } + }, + "indemnity": { + "csid": "26583488-7cb4-42b5-a8e2-4db005c8f5ef", + "messages": { + "type": { + "id": "idGenerator.indemnity.type", + "defaultMessage": "Indemnity" + } + } + }, + "intake": { + "csid": "8088cfa5-c743-4824-bb4d-fb11b12847f7", + "messages": { + "type": { + "id": "idGenerator.intake.type", + "defaultMessage": "Intake" + } + } + }, + "study": { + "csid": "0518132e-dd8c-4773-8fa9-07c9af4444ee", + "messages": { + "type": { + "id": "idGenerator.study.type", + "defaultMessage": "Study" + } + } + }, + "evaluation": { + "csid": "d2d80822-25c7-4c7c-a105-fc40cdb0c50f", + "messages": { + "type": { + "id": "idGenerator.evaluation.type", + "defaultMessage": "Evaluation" + } + } + }, + "iterationreport": { + "csid": "4f0f36f6-643c-4a3e-89f4-012837852b04", + "messages": { + "type": { + "id": "idGenerator.iterationreport.type", + "defaultMessage": "Iteration Report" + } + } + }, + "loanin": { + "csid": "ed87e7c6-0678-4f42-9d33-f671835586ef", + "messages": { + "type": { + "id": "idGenerator.loanin.type", + "defaultMessage": "Loan In" + } + } + }, + "loanout": { + "csid": "4b984865-f93d-4481-b874-3dba863ec589", + "messages": { + "type": { + "id": "idGenerator.loanout.type", + "defaultMessage": "Loan Out" + } + } + }, + "media": { + "csid": "cd91d8b8-f346-4925-a425-93e02bd1c5c9", + "messages": { + "type": { + "id": "idGenerator.media.type", + "defaultMessage": "Media Resource" + } + } + }, + "inventory": { + "csid": "6d472be6-2534-47f3-a3f1-3f160e7a9303", + "messages": { + "type": { + "id": "idGenerator.inventory.type", + "defaultMessage": "Inventory" + } + } + }, + "location": { + "csid": "1fc5e383-0786-4126-9a3c-ec7df4517ee3", + "messages": { + "type": { + "id": "idGenerator.location.type", + "defaultMessage": "Location" + } + } + }, + "movement": { + "csid": "49ca9d8d-7136-47ff-a70e-4a47b9038b70", + "messages": { + "type": { + "id": "idGenerator.movement.type", + "defaultMessage": "Movement" + } + } + }, + "objectexit": { + "csid": "d4eea707-d473-4367-853a-728fbcd9be17", + "messages": { + "type": { + "id": "idGenerator.objectexit.type", + "defaultMessage": "Object Exit" + } + } + }, + "transport": { + "csid": "cc92bbc1-014a-4673-a81d-0c14375375d0", + "messages": { + "type": { + "id": "idGenerator.transport.type", + "defaultMessage": "Transport" + } + } + }, + "uoc": { + "csid": "9088cfa5-d743-5824-cb4d-eb11b12847f7", + "messages": { + "type": { + "id": "idGenerator.uoc.type", + "defaultMessage": "Use of Collections" + } + } + }, + "valuationcontrol": { + "csid": "eafbc0cd-70fe-4802-8476-b931b1b0e381", + "messages": { + "type": { + "id": "idGenerator.valuationcontrol.type", + "defaultMessage": "Valuation Control" + } + } + }, + "claim": { + "csid": "a253d167-4f1a-4be3-a477-a2bd8a30cd7f", + "messages": { + "type": { + "id": "idGenerator.claim.type", + "defaultMessage": "Claim" + } + } + } + }, + "subresources": { + "contacts": { + "listType": "common", + "recordType": "contact", + "serviceConfig": { + "servicePath": "contacts" + } + }, + "original": { + "serviceConfig": { + "servicePath": "" + } + }, + "derivativeThumbnail": { + "serviceConfig": { + "servicePath": "derivatives/Thumbnail" + } + }, + "derivativeMedium": { + "serviceConfig": { + "servicePath": "derivatives/Medium" + } + }, + "derivativeOriginalJpeg": { + "serviceConfig": { + "servicePath": "derivatives/OriginalJpeg" + } + }, + "refs": { + "columns": { + "default": { + "docNumber": { + "messages": { + "label": { + "id": "column.refs.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.refs.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.refs.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.refs.default.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + }, + "narrow": { + "docNumber": { + "messages": { + "label": { + "id": "column.refs.narrow.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.refs.narrow.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.refs.narrow.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.refs.narrow.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + } + }, + "listType": "refDoc", + "messages": { + "collectionName": { + "id": "subresource.refs.collectionName", + "defaultMessage": "Uses of {record}" + } + }, + "serviceConfig": { + "servicePath": "refObjs" + } + }, + "terms": { + "columns": { + "default": { + "itemDisplayName": { + "messages": { + "label": { + "id": "column.terms.itemDisplayName", + "defaultMessage": "Term" + } + }, + "order": 10, + "width": 250 + }, + "type": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.type", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.terms.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + }, + "narrow": { + "itemDisplayName": { + "messages": { + "label": { + "id": "column.terms.itemDisplayName", + "defaultMessage": "Term" + } + }, + "order": 10, + "width": 250 + }, + "type": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.type", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.terms.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + } + }, + "listType": "authRef", + "messages": { + "collectionName": { + "id": "subresource.terms.collectionName", + "defaultMessage": "Authority Terms Used by {record}" + } + }, + "serviceConfig": { + "servicePath": "authorityrefs" + } + } + }, + "pluginInfo": { + "cspaceUIPluginProfileAnthro": { + "messages": { + "name": { + "id": "cspaceUIPluginProfileAnthro.name", + "defaultMessage": "Anthropology profile" + } + }, + "packageName": "cspace-ui-plugin-profile-anthro", + "packageVersion": "7.0.0", + "buildNum": "5003975", + "repositoryUrl": "https://github.com/collectionspace/cspace-ui-plugin-profile-anthro.js", + "version": "7.0.0" + } + } +} diff --git a/spec/fixtures/configs/ohc_1-0-18_7-2.json b/spec/fixtures/configs/ohc_1-0-18_7-2.json new file mode 100644 index 00000000..4ad727a1 --- /dev/null +++ b/spec/fixtures/configs/ohc_1-0-18_7-2.json @@ -0,0 +1,137812 @@ +{ + "allowDeleteHierarchyLeaves": false, + "autocompleteFindDelay": 500, + "autocompleteMinLength": 3, + "basename": "/cspace/ohc", + "className": "", + "container": "#cspace", + "defaultAdvancedSearchBooleanOp": "or", + "defaultDropdownFilter": "substring", + "defaultSearchPageSize": 20, + "defaultSearchPanelSize": 5, + "defaultUserPrefs": { + "panels": { + "collectionobject": { + "mediaSnapshotPanel": { + "collapsed": false + } + } + } + }, + "disableAltTerms": false, + "index": "/search", + "locale": "en-US", + "logo": "https://s3-us-west-2.amazonaws.com/cs-public-shared-files/images/ohc.png", + "mediaSnapshotSort": "title", + "messages": { + "about.title": "CollectionSpace: Ohio History Connection", + "record.claim.name": "NAGPRA Claim", + "record.claim.collectionName": "NAGPRA Claims", + "field.collectionobjects_common.assocPeopleGroup.name": "Associated cultural group", + "field.collectionobjects_common.assocPeople.fullName": "Associated cultural group", + "field.collectionobjects_common.assocPeople.name": "Cultural group", + "field.collectionobjects_common.assocPeopleType.fullName": "Associated cultural group type of assoc.", + "field.collectionobjects_common.assocPeopleType.name": "Type of assoc.", + "field.collectionobjects_common.assocPeopleNote.fullName": "Associated cultural group note", + "field.collectionobjects_common.usageGroup.name": "Context of use", + "field.collectionobjects_common.objectProductionPeopleGroup.name": "Production cultural group", + "field.collectionobjects_common.objectProductionPeople.fullName": "Production cultural group", + "field.collectionobjects_common.objectProductionPeople.name": "Cultural group", + "field.collectionobjects_common.objectProductionPeopleRole.fullName": "Production cultural group role", + "panel.collectionobject.reference": "Bibliographic Reference Information", + "field.acquisitions_common.acquisitionProvisos.name": "Restrictions", + "field.acquisitions_common.acquisitionReferenceNumber.name": "Accession number", + "field.collectionobjects_common.physicalDescription.name": "Lettered parts", + "field.intakes_common.packingNote.name": "Rationale", + "field.objectexit_common.exitNote.name": "Exit rationale", + "field.objectexit_common.packingNote.name": "Additional notes", + "about.contentHTML": "

CollectionSpace is a free, open-source collections management application for museums, historical societies, natural science collections, and more.

" + }, + "prettyUrls": true, + "relationMemberPerm": "U", + "serverUrl": "", + "showTermListStateIcon": false, + "structDateOptionListNames": [ + "dateQualifiers" + ], + "structDateVocabNames": [ + "dateera", + "datecertainty", + "datequalifier" + ], + "tenantId": "1885", + "termDeprecationEnabled": false, + "extensions": { + "address": { + "fields": { + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address" + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "authItem": { + "fields": { + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem" + } + } + } + }, + "core": { + "advancedSearch": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ], + "fields": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "dimension": { + "fields": { + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension" + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "structuredDate": { + "fields": { + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate" + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate" + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate" + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate" + } + } + } + }, + "associatedAuthority": { + "fields": { + "assocPersonAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPersonAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPersonAuthGroup.name", + "defaultMessage": "Person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "person": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.person.fullName", + "defaultMessage": "Person associated" + }, + "name": { + "id": "field.ext.associatedAuthority.person.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/ulan" + } + } + } + }, + "personType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personType.fullName", + "defaultMessage": "Person relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.personType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologypersonrelations" + } + } + } + }, + "personStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.fullName", + "defaultMessage": "Person date" + }, + "name": { + "id": "field.ext.associatedAuthority.personStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "personCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "personCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personCitation.fullName", + "defaultMessage": "Person citation" + }, + "name": { + "id": "field.ext.associatedAuthority.personCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "personNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.personNote.fullName", + "defaultMessage": "Person note" + }, + "name": { + "id": "field.ext.associatedAuthority.personNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPeopleAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPeopleAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPeopleAuthGroup.name", + "defaultMessage": "People" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "people": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.people.fullName", + "defaultMessage": "People associated" + }, + "name": { + "id": "field.ext.associatedAuthority.people.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated" + } + } + } + }, + "peopleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleType.fullName", + "defaultMessage": "People relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologypeoplerelations" + } + } + } + }, + "peopleStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.fullName", + "defaultMessage": "People date" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "peopleCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "peopleCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleCitation.fullName", + "defaultMessage": "People citation" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "peopleNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.peopleNote.fullName", + "defaultMessage": "People note" + }, + "name": { + "id": "field.ext.associatedAuthority.peopleNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocOrganizationAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocOrganizationAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocOrganizationAuthGroup.name", + "defaultMessage": "Organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "organization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organization.fullName", + "defaultMessage": "Organization associated" + }, + "name": { + "id": "field.ext.associatedAuthority.organization.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/ulan" + } + } + } + }, + "organizationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationType.fullName", + "defaultMessage": "Organization relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyorganizationrelations" + } + } + } + }, + "organizationStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.fullName", + "defaultMessage": "Organization date" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "organizationCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizationCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationCitation.fullName", + "defaultMessage": "Organization citation" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "organizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.organizationNote.fullName", + "defaultMessage": "Organization note" + }, + "name": { + "id": "field.ext.associatedAuthority.organizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocConceptAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocConceptAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocConceptAuthGroup.name", + "defaultMessage": "Concept" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "concept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.concept.fullName", + "defaultMessage": "Concept associated" + }, + "name": { + "id": "field.ext.associatedAuthority.concept.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/activity,concept/associated,concept/material,concept/nomenclature,concept/occasion" + } + } + } + }, + "conceptType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptType.fullName", + "defaultMessage": "Concept relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyconceptrelations" + } + } + } + }, + "conceptStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.fullName", + "defaultMessage": "Concept date" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "conceptCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conceptCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptCitation.fullName", + "defaultMessage": "Concept citation" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "conceptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.conceptNote.fullName", + "defaultMessage": "Concept note" + }, + "name": { + "id": "field.ext.associatedAuthority.conceptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPlaceAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocPlaceAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocPlaceAuthGroup.name", + "defaultMessage": "Place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "place": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.place.fullName", + "defaultMessage": "Place associated" + }, + "name": { + "id": "field.ext.associatedAuthority.place.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "placeType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeType.fullName", + "defaultMessage": "Place relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.placeType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyplacerelations" + } + } + } + }, + "placeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.fullName", + "defaultMessage": "Place date" + }, + "name": { + "id": "field.ext.associatedAuthority.placeStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "placeCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeCitation.fullName", + "defaultMessage": "Place citation" + }, + "name": { + "id": "field.ext.associatedAuthority.placeCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "placeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.placeNote.fullName", + "defaultMessage": "Place note" + }, + "name": { + "id": "field.ext.associatedAuthority.placeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocChronologyAuthGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "associatedAuthority" + }, + "assocChronologyAuthGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.associatedAuthority.assocChronologyAuthGroup.name", + "defaultMessage": "Related chronology" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "chronology": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronology.fullName", + "defaultMessage": "Related chronology associated" + }, + "name": { + "id": "field.ext.associatedAuthority.chronology.name", + "defaultMessage": "Associated" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/era,chronology/event" + } + } + } + }, + "chronologyType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyType.fullName", + "defaultMessage": "Related chronology relationship/type" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyType.name", + "defaultMessage": "Relationship/Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyrelations" + } + } + } + }, + "chronologyStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.fullName", + "defaultMessage": "Related chronology date" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyStructuredDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "chronologyCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "chronologyCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyCitation.fullName", + "defaultMessage": "Related chronology citation" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "chronologyNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.associatedAuthority.chronologyNote.fullName", + "defaultMessage": "Related chronology note" + }, + "name": { + "id": "field.ext.associatedAuthority.chronologyNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "person" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "personNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "people" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "peopleCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "peopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "organization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizationCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "concept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "place" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocChronologyAuthGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocChronologyAuthGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "chronologyCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "culturalcare": { + "collectionobject": { + "messages": { + "panel": { + "culturalCare": { + "id": "panel.collectionobject.culturalCare", + "defaultMessage": "Cultural Care Information" + } + } + }, + "fields": { + "ns2:collectionobjects_culturalcare": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/collectionobject" + } + }, + "culturalCareNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "culturalCareNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.culturalCareNote.name", + "defaultMessage": "Cultural care note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "accessLimitationsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "accessLimitationsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.accessLimitationsGroup.name", + "defaultMessage": "Access limitation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "limitationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationType.fullName", + "defaultMessage": "Access limitation type" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationtype" + } + } + } + }, + "limitationLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationLevel.fullName", + "defaultMessage": "Access limitation level" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationlevel" + } + } + } + }, + "limitationDetails": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationDetails.fullName", + "defaultMessage": "Access limitation detail" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationDetails.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "requester": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requester.fullName", + "defaultMessage": "Access limitation requestor" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requester.name", + "defaultMessage": "Requestor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "requestOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.fullName", + "defaultMessage": "Access limitation requested on behalf of" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "requestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestDate.fullName", + "defaultMessage": "Access limitation request date" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "locality": { + "messages": { + "inputTable": { + "depth": { + "id": "inputTable.ext.locality.depth", + "defaultMessage": "Depth" + }, + "elevation": { + "id": "inputTable.ext.locality.elevation", + "defaultMessage": "Elevation" + }, + "distanceAboveSurface": { + "id": "inputTable.ext.locality.distanceAboveSurface", + "defaultMessage": "Distance above surface" + } + }, + "panel": { + "georefDetail": { + "id": "panel.ext.locality.georefDetail", + "defaultMessage": "Georeference Detail" + } + } + }, + "fields": { + "localityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "locality" + }, + "localityGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localityGroup.fullName", + "defaultMessage": "Locality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocVerbatim.name", + "defaultMessage": "Field collection location verbatim" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldLocPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + }, + "taxonomicRange": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.taxonomicRange.name", + "defaultMessage": "Geographic range of taxon" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldLocCounty": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCounty.name", + "defaultMessage": "County" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-county", + "source": "counties" + } + } + } + }, + "fieldLocState": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocState.name", + "defaultMessage": "State" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-state", + "source": "states" + } + } + } + }, + "fieldLocCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "countries" + } + } + } + }, + "fieldLocHigherGeography": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocHigherGeography.name", + "defaultMessage": "Higher geography" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "higherGeographies" + } + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordinates.name", + "defaultMessage": "TRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vOtherCoords": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vOtherCoords.name", + "defaultMessage": "Other coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordSys.name", + "defaultMessage": "Other coords system" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vcoordsys" + } + } + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertainty": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertainty.fullName", + "defaultMessage": "Coord uncertainty" + }, + "name": { + "id": "field.ext.locality.coordUncertainty.name", + "defaultMessage": "Uncertainty" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordUncertaintyUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertaintyUnit.fullName", + "defaultMessage": "Coord uncertainty unit" + }, + "name": { + "id": "field.ext.locality.coordUncertaintyUnit.name", + "defaultMessage": "Uncertainty unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordUncertaintyUnits" + } + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDepth.fullName", + "defaultMessage": "Depth verbatim" + }, + "name": { + "id": "field.ext.locality.vDepth.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDepth.fullName", + "defaultMessage": "Depth min" + }, + "name": { + "id": "field.ext.locality.minDepth.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDepth.fullName", + "defaultMessage": "Depth max" + }, + "name": { + "id": "field.ext.locality.maxDepth.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "depthUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.depthUnit.fullName", + "defaultMessage": "Depth unit" + }, + "name": { + "id": "field.ext.locality.depthUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "depthUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vElevation.fullName", + "defaultMessage": "Elevation verbatim" + }, + "name": { + "id": "field.ext.locality.vElevation.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minElevation.fullName", + "defaultMessage": "Elevation min" + }, + "name": { + "id": "field.ext.locality.minElevation.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxElevation.fullName", + "defaultMessage": "Elevation max" + }, + "name": { + "id": "field.ext.locality.maxElevation.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "elevationUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.elevationUnit.fullName", + "defaultMessage": "Elevation unit" + }, + "name": { + "id": "field.ext.locality.elevationUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "elevationUnits" + } + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface verbatim" + }, + "name": { + "id": "field.ext.locality.vDistanceAboveSurface.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface min" + }, + "name": { + "id": "field.ext.locality.minDistanceAboveSurface.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface max" + }, + "name": { + "id": "field.ext.locality.maxDistanceAboveSurface.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distanceAboveSurfaceUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.fullName", + "defaultMessage": "Distance above surface unit" + }, + "name": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "distanceAboveSurfaceUnits" + } + } + } + }, + "localityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.localityNote.name", + "defaultMessage": "Locality note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "localitySource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySource.fullName", + "defaultMessage": "Locality source" + }, + "name": { + "id": "field.ext.locality.localitySource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "localitySourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySourceDetail.fullName", + "defaultMessage": "Locality source detail" + }, + "name": { + "id": "field.ext.locality.localitySourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.pointRadiusSpatialFit.name", + "defaultMessage": "Pt. radius sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSpatialFit.name", + "defaultMessage": "Footprint sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.coordPrecision.name", + "defaultMessage": "Coord precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefencedBy.name", + "defaultMessage": "Georeference by" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.ext.locality.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.ext.locality.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.ext.locality.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefRemarks.fullName", + "defaultMessage": "Georeference note" + }, + "name": { + "id": "field.ext.locality.geoRefRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefPlaceName.name", + "defaultMessage": "Georeference place name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionLocationVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionLocationVerbatim.name", + "defaultMessage": "Collection location verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionPlace.name", + "defaultMessage": "Collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "collectionobject": { + "form": { + "simpleform": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + } + } + }, + "naturalhistory": { + "collectionobject": { + "messages": { + "inputTable": { + "taxonName": { + "id": "inputTable.collectionobject.taxonName", + "defaultMessage": "Taxonomic identification" + }, + "taxonIdent": { + "id": "inputTable.collectionobject.taxonIdent", + "defaultMessage": "Identification by" + }, + "taxonReference": { + "id": "inputTable.collectionobject.taxonReference", + "defaultMessage": "Reference" + } + } + }, + "fields": { + "ns2:collectionobjects_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/naturalhistory_extension" + } + }, + "taxonomicIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "taxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "qualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.qualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.qualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "identBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "identDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "institution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.institution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.institution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.institution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "identKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "reference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.reference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.reference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.reference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "refPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.refPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.refPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.refPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "notes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.notes.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.notes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "taxonomicIdentHybridParentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentHybridParentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentGroup.name", + "defaultMessage": "Hybrid parent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonomicIdentHybridParent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.fullName", + "defaultMessage": "Hybrid parent name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "taxonomicIdentHybridParentQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.fullName", + "defaultMessage": "Hybrid parent qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "hybridparentqualifier" + } + } + } + } + } + }, + "affinityTaxon": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.affinityTaxon.name", + "defaultMessage": "Affinity taxon" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "hybridFlag": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.hybridFlag.name", + "defaultMessage": "Hybrid flag" + } + }, + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "determinationHistoryGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "determinationHistoryGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.determinationHistoryGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "determinationTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "determinationQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "determinationBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "determinationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "determinationInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "determinationKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "determinationReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationReference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationNote.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "typeSpecimenGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "typeSpecimenGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenGroup.name", + "defaultMessage": "Type specimen" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "typeSpecimenKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.fullName", + "defaultMessage": "Type specimen kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "typespecimenkind" + } + } + } + }, + "typeSpecimenAssertionBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.fullName", + "defaultMessage": "Type specimen asserted by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.name", + "defaultMessage": "Asserted by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "typeSpecimenReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.fullName", + "defaultMessage": "Type specimen reference" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.fullName", + "defaultMessage": "Type specimen reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenBasionym": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.fullName", + "defaultMessage": "Type specimen verified basionym" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.name", + "defaultMessage": "Verified basionym" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "typeSpecimenNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.fullName", + "defaultMessage": "Type specimen note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "vegetationType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.vegetationType.name", + "defaultMessage": "Vegetation type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vegetationtype" + } + } + } + }, + "associatedTaxaGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "associatedTaxaGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxaGroup.name", + "defaultMessage": "Associated taxa" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "associatedTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.fullName", + "defaultMessage": "Associated taxon name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.commonName.fullName", + "defaultMessage": "Associated taxon common name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.commonName.name", + "defaultMessage": "Common name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "interaction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.interaction.fullName", + "defaultMessage": "Associated taxon interaction" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.interaction.name", + "defaultMessage": "Interaction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assoctaxoninteraction" + } + } + } + } + } + } + } + }, + "form": { + "taxonomicIdentGroupList": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "typeSpecimenGroupList": { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenAssertionBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenRefPage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenBasionym" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "typeSpecimenNotes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "loanin": { + "fields": { + "ns2:loansin_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanin/domain/naturalhistory_extension" + } + }, + "returnGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "returnGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnGroup.fullName", + "defaultMessage": "Item returned" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "returnObjectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnObjectNumbers.fullName", + "defaultMessage": "Item returned object numbers" + }, + "name": { + "id": "field.loansin_naturalhistory.returnObjectNumbers.name", + "defaultMessage": "Object numbers" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnQuantity.fullName", + "defaultMessage": "Item returned quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.returnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnDate.fullName", + "defaultMessage": "Item returned date" + }, + "name": { + "id": "field.loansin_naturalhistory.returnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "returnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnNotes.fullName", + "defaultMessage": "Item returned note" + }, + "name": { + "id": "field.loansin_naturalhistory.returnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.returnDetermination.fullName", + "defaultMessage": "Item returned new determination" + }, + "name": { + "id": "field.loansin_naturalhistory.returnDetermination.name", + "defaultMessage": "New determination" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + } + } + }, + "transferOutGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transferOutGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutGroup.fullName", + "defaultMessage": "Item transferred out" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "transferOutDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutDate.fullName", + "defaultMessage": "Item transferred out date" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferOutQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutQuantity.fullName", + "defaultMessage": "Item transferred out quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutOrg": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutOrg.fullName", + "defaultMessage": "Item transferred out institution" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutOrg.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "transferOutPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutPerson.fullName", + "defaultMessage": "Item transferred out for study by" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutPerson.name", + "defaultMessage": "For study by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferOutDirector": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutDirector.fullName", + "defaultMessage": "Item transferred out under direction of" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutDirector.name", + "defaultMessage": "Under direction of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferOutNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutNotes.fullName", + "defaultMessage": "Item transferred out note" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.fullName", + "defaultMessage": "Item transferred out return date" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.groupName", + "defaultMessage": "Return date" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferOutReturnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.fullName", + "defaultMessage": "Item transferred out return quantity" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.groupName", + "defaultMessage": "Return quantity" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOutReturnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.fullName", + "defaultMessage": "Item transferred out return note" + }, + "groupName": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.groupName", + "defaultMessage": "Return note" + }, + "name": { + "id": "field.loansin_naturalhistory.transferOutReturnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "loanout": { + "fields": { + "ns2:loansout_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanout/domain/naturalhistory_extension" + } + }, + "numLent": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.loansout_naturalhistory.numLent.name", + "defaultMessage": "Number lent" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "returnGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnGroup.fullName", + "defaultMessage": "Item returned" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "returnObjectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnObjectNumbers.fullName", + "defaultMessage": "Item returned object number(s)" + }, + "name": { + "id": "field.loansout_naturalhistory.returnObjectNumbers.name", + "defaultMessage": "Object number(s)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnQuantity.fullName", + "defaultMessage": "Item returned quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.returnQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnDate.fullName", + "defaultMessage": "Item returned date" + }, + "name": { + "id": "field.loansout_naturalhistory.returnDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "returnNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnNotes.fullName", + "defaultMessage": "Item returned note" + }, + "name": { + "id": "field.loansout_naturalhistory.returnNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "returnDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.returnDetermination.fullName", + "defaultMessage": "Item returned new determination" + }, + "name": { + "id": "field.loansout_naturalhistory.returnDetermination.name", + "defaultMessage": "New determination" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + } + } + }, + "loanoutItems": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.loanoutItems.fullName", + "defaultMessage": "Items loaned out accession numbers" + }, + "name": { + "id": "field.loansout_naturalhistory.loanoutItems.name", + "defaultMessage": "Accession numbers" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectGroup.fullName", + "defaultMessage": "Item loaned out" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "objectNumbers": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectNumbers.fullName", + "defaultMessage": "Item loaned out object number(s)" + }, + "name": { + "id": "field.loansout_naturalhistory.objectNumbers.name", + "defaultMessage": "Object number(s)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectQuantity.fullName", + "defaultMessage": "Item loaned out quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.objectQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectConditions": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectConditions.fullName", + "defaultMessage": "Item loaned out condition" + }, + "name": { + "id": "field.loansout_naturalhistory.objectConditions.name", + "defaultMessage": "Condition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.objectNotes.fullName", + "defaultMessage": "Item loaned out note" + }, + "name": { + "id": "field.loansout_naturalhistory.objectNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transferGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferGroup.fullName", + "defaultMessage": "Loan transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "transferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.loansout_naturalhistory.transferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transferQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferQuantity.fullName", + "defaultMessage": "Transfer quantity" + }, + "name": { + "id": "field.loansout_naturalhistory.transferQuantity.name", + "defaultMessage": "Quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transferOrg": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferOrg.fullName", + "defaultMessage": "Transfer to institution" + }, + "name": { + "id": "field.loansout_naturalhistory.transferOrg.name", + "defaultMessage": "To institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "transferPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferPerson.fullName", + "defaultMessage": "Transfer to person" + }, + "name": { + "id": "field.loansout_naturalhistory.transferPerson.name", + "defaultMessage": "To person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferDirector": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferDirector.fullName", + "defaultMessage": "Transfer under direction of" + }, + "name": { + "id": "field.loansout_naturalhistory.transferDirector.name", + "defaultMessage": "Under direction of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transferNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_naturalhistory.transferNotes.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.loansout_naturalhistory.transferNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "objectexit": { + "fields": { + "ns2:objectexit_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/objectexit/domain/naturalhistory_extension" + } + }, + "count": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.objectexit_naturalhistory.count.name", + "defaultMessage": "Count" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "nagpra": { + "claim": { + "messages": { + "panel": { + "nagpraClaimTasks": { + "id": "panel.ext.nagpra.nagpraClaimTasks", + "defaultMessage": "Tasks Completed" + }, + "nagpraClaimContext": { + "id": "panel.ext.nagpra.nagpraClaimContext", + "defaultMessage": "Claim Context" + }, + "nagpraClaimProcessing": { + "id": "panel.ext.nagpra.nagpraClaimProcessing", + "defaultMessage": "Claim Processing Information" + } + } + }, + "optionLists": { + "nagpraNoticeDateTypes": { + "values": [ + "begin", + "end" + ], + "messages": { + "begin": { + "id": "option.nagpraNoticeDateTypes.begin", + "defaultMessage": "period begins" + }, + "end": { + "id": "option.nagpraNoticeDateTypes.end", + "defaultMessage": "period ends" + } + } + } + }, + "fields": { + "ns2:claims_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim/domain/nagpra" + } + }, + "nagpraClaimName": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimName.name", + "defaultMessage": "Claim name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimType": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimType.name", + "defaultMessage": "Claim type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraclaimtype" + } + } + } + } + }, + "nagpraClaimAltNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimAltNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameGroup.name", + "defaultMessage": "Alternate name/number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimAltName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltName.fullName", + "defaultMessage": "Alternate name/number" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltName.name", + "defaultMessage": "Name/number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimAltNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.fullName", + "defaultMessage": "Alternate name/number note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNote": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNote.name", + "defaultMessage": "Note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraClaimSiteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSiteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteGroup.name", + "defaultMessage": "Site/place involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSiteName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteName.fullName", + "defaultMessage": "Site/place involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "nagpraClaimSiteNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.fullName", + "defaultMessage": "Site/place involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimGroupGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimGroupGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupGroup.name", + "defaultMessage": "Cultural group involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimGroupName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupName.fullName", + "defaultMessage": "Cultural group involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraClaimGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.fullName", + "defaultMessage": "Cultural group involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimPeriodGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimPeriodGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodGroup.name", + "defaultMessage": "Time period represented" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimPeriodDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraClaimPeriodNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.fullName", + "defaultMessage": "Time period represented note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimInitialResponseGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimInitialResponseGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseGroup.name", + "defaultMessage": "Initial response" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimInitialResponseDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.fullName", + "defaultMessage": "Initial response date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimInitialResponseNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.fullName", + "defaultMessage": "Initial response note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToLocalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToLocalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalGroup.name", + "defaultMessage": "Sent to NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToLocalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.fullName", + "defaultMessage": "Sent to NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToLocalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.fullName", + "defaultMessage": "Sent to NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimLocalRecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimLocalRecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecGroup.name", + "defaultMessage": "Recommendation of NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimLocalRecDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.fullName", + "defaultMessage": "Recommendation of NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimLocalRecNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.fullName", + "defaultMessage": "Recommendation of NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToNatlGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToNatlGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlGroup.name", + "defaultMessage": "Sent to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToNatlDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.fullName", + "defaultMessage": "Sent to National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToNatlNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.fullName", + "defaultMessage": "Sent to National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlRespGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlRespGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespGroup.name", + "defaultMessage": "Response from National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlRespDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.fullName", + "defaultMessage": "Response from National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlRespNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.fullName", + "defaultMessage": "Response from National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalGroup.name", + "defaultMessage": "Publication by National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.fullName", + "defaultMessage": "Publication by National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.fullName", + "defaultMessage": "Publication by National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNoticeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNoticeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeGroup.name", + "defaultMessage": "National NAGPRA 30-day notice" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNoticeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.fullName", + "defaultMessage": "National NAGPRA 30-day notice date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNoticeDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.fullName", + "defaultMessage": "National NAGPRA 30-day notice date type" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nagpraNoticeDateTypes" + } + } + } + }, + "nagpraClaimNoticeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.fullName", + "defaultMessage": "National NAGPRA 30-day notice note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimTransferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimTransferGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferGroup.name", + "defaultMessage": "Transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimTransferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "dispositionPossibilitiesDiscussed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussed.name", + "defaultMessage": "Disposition possibilities discussed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dispositionPossibilitiesDiscussedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.fullName", + "defaultMessage": "Disposition possibilities discussed note" + }, + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "surroundingTribesContacted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.surroundingTribesContacted.name", + "defaultMessage": "Surrounding tribes contacted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "surroundingTribesContactedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.fullName", + "defaultMessage": "Surrounding tribes contacted note" + }, + "name": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "workingTeamNotified": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.workingTeamNotified.name", + "defaultMessage": "Institutional NAGPRA team notified" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "workingTeamNotifiedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.fullName", + "defaultMessage": "Institutional NAGPRA team notified note" + }, + "name": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "siteFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.siteFileResearchCompleted.name", + "defaultMessage": "Site file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "siteFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.fullName", + "defaultMessage": "Site file research completed note" + }, + "name": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "accessionFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompleted.name", + "defaultMessage": "Accession file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "accessionFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.fullName", + "defaultMessage": "Accession file research completed note" + }, + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsLocatedAndCounted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCounted.name", + "defaultMessage": "Objects located and counted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsLocatedAndCountedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.fullName", + "defaultMessage": "Objects located and counted note" + }, + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsConsolidated": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsConsolidated.name", + "defaultMessage": "Objects consolidated" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsConsolidatedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsConsolidatedNote.fullName", + "defaultMessage": "Objects consolidated note" + }, + "name": { + "id": "field.claims_nagpra.objectsConsolidatedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsPhotographed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsPhotographed.name", + "defaultMessage": "Objects photographed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsPhotographedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsPhotographedNote.fullName", + "defaultMessage": "Objects photographed note" + }, + "name": { + "id": "field.claims_nagpra.objectsPhotographedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "registrationDocumentsDrafted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.registrationDocumentsDrafted.name", + "defaultMessage": "Registration documents drawn up" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "registrationDocumentsDraftedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.fullName", + "defaultMessage": "Registration documents drawn up note" + }, + "name": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "tribeContactedForPackingPreferences": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferences.name", + "defaultMessage": "Tribe contacted for packing/storage instructions" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "tribeContactedForPackingPreferencesNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.fullName", + "defaultMessage": "Tribe contacted for packing/storage instructions note" + }, + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateArrangedForTransfer": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dateArrangedForTransfer.name", + "defaultMessage": "Date arranged for pickup/transfer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dateArrangedForTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.fullName", + "defaultMessage": "Date arranged for pickup/transfer note" + }, + "name": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsMarkedAsDeaccessioned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessioned.name", + "defaultMessage": "Objects marked as deaccessioned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsMarkedAsDeaccessionedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.fullName", + "defaultMessage": "Objects marked as deaccessioned note" + }, + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "documentsArchived": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.documentsArchived.name", + "defaultMessage": "Claim documents archived" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "documentsArchivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.documentsArchivedNote.fullName", + "defaultMessage": "Claim documents archived note" + }, + "name": { + "id": "field.claims_nagpra.documentsArchivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "form": { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimContext", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimProcessing", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTasks", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContacted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContactedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotified", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotifiedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCounted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCountedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidated", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidatedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDrafted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDraftedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferences", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferencesNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransfer", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransferNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessioned", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessionedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchived", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchivedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "collectionobject": { + "messages": { + "panel": { + "nagpraCompliance": { + "id": "panel.ext.nagpra.nagpraCompliance", + "defaultMessage": "Repatriation and NAGPRA Compliance Information" + } + }, + "inputTable": { + "nagpraReportFiled": { + "id": "panel.ext.nagpra.nagpraReportFiled", + "defaultMessage": "Reported to National NAGPRA" + } + } + }, + "fields": { + "ns2:collectionobjects_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/nagpra" + } + }, + "nagpraInventoryNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraInventoryName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraInventoryName.name", + "defaultMessage": "NAGPRA inventory" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagprainventory" + } + } + } + } + }, + "nagpraCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCategory.name", + "defaultMessage": "Museum NAGPRA category determination" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpracategory" + } + } + } + } + }, + "graveAssocCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "graveAssocCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.graveAssocCode.name", + "defaultMessage": "Grave association code" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "graveassoccode" + } + } + } + } + }, + "nagpraCulturalDeterminations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCulturalDetermination": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCulturalDetermination.name", + "defaultMessage": "NAGPRA cultural determination note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraNote.name", + "defaultMessage": "NAGPRA note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraDetermGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraDetermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermGroup.name", + "defaultMessage": "Cultural determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraDetermCulture": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.fullName", + "defaultMessage": "Cultural determination culture" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.name", + "defaultMessage": "Culture" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraDetermType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.fullName", + "defaultMessage": "Cultural determination type" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpradetermtype" + } + } + } + }, + "nagpraDetermBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.fullName", + "defaultMessage": "Cultural determination by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.name", + "defaultMessage": "By" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "nagpraDetermNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.fullName", + "defaultMessage": "Cultural determination note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "repatriationNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "repatriationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.repatriationNote.name", + "defaultMessage": "Repatriation note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraReportFiledGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraReportFiledGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledGroup.name", + "defaultMessage": "Reported to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraReportFiled": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.fullName", + "defaultMessage": "NAGPRA report filed" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.name", + "defaultMessage": "Report filed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nagpraReportFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.fullName", + "defaultMessage": "NAGPRA report filed by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledWith": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.fullName", + "defaultMessage": "NAGPRA report filed with" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.name", + "defaultMessage": "Filed with" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraReportFiledNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.fullName", + "defaultMessage": "Reporting note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "form": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "place": { + "messages": { + "panel": { + "assertionInfo": { + "id": "panel.place.assertionInfo", + "defaultMessage": "Assertion Information" + }, + "assertions": { + "id": "panel.place.assertions", + "defaultMessage": "Cultural Affiliation Lines of Evidence" + }, + "background": { + "id": "panel.place.background", + "defaultMessage": "Background Research and Additional Information" + }, + "consultedDocs": { + "id": "panel.place.consultedDocs", + "defaultMessage": "Documents Consulted for Cultural Affiliation Research" + } + } + }, + "fields": { + "ns2:places_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place/domain/nagpra" + } + }, + "basicInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "basicInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.basicInfo.name", + "defaultMessage": "Basic information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraHistoryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraHistory": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.nagpraHistory.name", + "defaultMessage": "NAGPRA inventory history" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "backgroundSummaryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "backgroundSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.backgroundSummary.name", + "defaultMessage": "Background and records summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "landOwnershipInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "landOwnershipInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.landOwnershipInfo.name", + "defaultMessage": "Land ownership information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "assertionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "assertionName": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionName.name", + "defaultMessage": "Assertion name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraassertionnames" + } + } + } + }, + "assertionDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionDescription.name", + "defaultMessage": "Assertion description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceGroup.name", + "defaultMessage": "Assertion source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionSourceBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceBy.name", + "defaultMessage": "By" + }, + "fullName": { + "id": "field.places_nagpra.assertionSourceBy.fullName", + "defaultMessage": "Assertion by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "assertionSourceDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceDate.fullName", + "defaultMessage": "Assertion source date" + }, + "name": { + "id": "field.places_nagpra.assertionSourceDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "assertionSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceNote.fullName", + "defaultMessage": "Assertion source note" + }, + "name": { + "id": "field.places_nagpra.assertionSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assertionRelatedRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionRelatedRecords.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionReferenceGroup.name", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReference.fullName", + "defaultMessage": "Assertion reference name" + }, + "name": { + "id": "field.places_nagpra.assertionReference.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "assertionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReferenceNote.fullName", + "defaultMessage": "Assertion refence note" + }, + "name": { + "id": "field.places_nagpra.assertionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "museumRecordsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "museumRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.museumRecordsList.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "manuscriptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "manuscriptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.manuscriptGroup.name", + "defaultMessage": "Unpublished manuscript" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "manuscriptReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptReferences.fullName", + "defaultMessage": "Unpublished manuscript reference" + }, + "name": { + "id": "field.places_nagpra.manuscriptReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local," + } + } + } + }, + "manuscriptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptNote.fullName", + "defaultMessage": "Unpublished manuscript note" + }, + "name": { + "id": "field.places_nagpra.manuscriptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "reportRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "reportRefGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.reportRefGroup.name", + "defaultMessage": "Published report" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reportReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportReferences.fullName", + "defaultMessage": "Published report reference" + }, + "name": { + "id": "field.places_nagpra.reportReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local" + } + } + } + }, + "reportNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportNote.fullName", + "defaultMessage": "Published report note" + }, + "name": { + "id": "field.places_nagpra.reportNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "form": { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "background", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "basicInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "basicInfo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistoryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummaryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummary" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertions", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionRelatedRecords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "consultedDocs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "museumRecordsList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "museumRecords" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reportReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "annotation": { + "collectionobject": { + "form": { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + } + } + }, + "optionLists": { + "dimensions": { + "values": [ + "area", + "base", + "circumference", + "count", + "depth", + "diameter", + "height", + "length", + "running-time", + "target", + "thickness", + "volume", + "weight", + "width" + ], + "messages": { + "area": { + "id": "option.dimensions.area", + "defaultMessage": "area" + }, + "base": { + "id": "option.dimensions.base", + "defaultMessage": "base" + }, + "circumference": { + "id": "option.dimensions.circumference", + "defaultMessage": "circumference" + }, + "count": { + "id": "option.dimensions.count", + "defaultMessage": "count" + }, + "depth": { + "id": "option.dimensions.depth", + "defaultMessage": "depth" + }, + "diameter": { + "id": "option.dimensions.diameter", + "defaultMessage": "diameter" + }, + "height": { + "id": "option.dimensions.height", + "defaultMessage": "height" + }, + "intended duration": { + "id": "option.dimensions.intended duration", + "defaultMessage": "intended duration" + }, + "length": { + "id": "option.dimensions.length", + "defaultMessage": "length" + }, + "running-time": { + "id": "option.dimensions.running-time", + "defaultMessage": "running time" + }, + "screen resolution": { + "id": "option.dimensions.screen resolution", + "defaultMessage": "screen resolution" + }, + "target": { + "id": "option.dimensions.target", + "defaultMessage": "target" + }, + "volume": { + "id": "option.dimensions.volume", + "defaultMessage": "volume" + }, + "weight": { + "id": "option.dimensions.weight", + "defaultMessage": "weight" + }, + "width": { + "id": "option.dimensions.width", + "defaultMessage": "width" + }, + "thickness": { + "id": "option.dimensions.thickness", + "defaultMessage": "thickness" + } + } + }, + "measurementUnits": { + "values": [ + "acres", + "carats", + "centimeters", + "cubic-centimeters", + "feet", + "grams", + "inches", + "kilograms", + "liters", + "millimeters", + "meters", + "minutes", + "pixels", + "pounds", + "square-feet", + "stories" + ], + "messages": { + "carats": { + "id": "option.measurementUnits.carats", + "defaultMessage": "carats" + }, + "centimeters": { + "id": "option.measurementUnits.centimeters", + "defaultMessage": "centimeters" + }, + "cubic-centimeters": { + "id": "option.measurementUnits.cubic-centimeters", + "defaultMessage": "cubic centimeters" + }, + "dpi": { + "id": "option.measurementUnits.dpi", + "defaultMessage": "dots per inch" + }, + "feet": { + "id": "option.measurementUnits.feet", + "defaultMessage": "feet" + }, + "hours": { + "id": "option.measurementUnits.hours", + "defaultMessage": "hours" + }, + "inches": { + "id": "option.measurementUnits.inches", + "defaultMessage": "inches" + }, + "kilograms": { + "id": "option.measurementUnits.kilograms", + "defaultMessage": "kilograms" + }, + "liters": { + "id": "option.measurementUnits.liters", + "defaultMessage": "liters" + }, + "millimeters": { + "id": "option.measurementUnits.millimeters", + "defaultMessage": "millimeters" + }, + "milliseconds": { + "id": "option.measurementUnits.milliseconds", + "defaultMessage": "milliseconds" + }, + "meters": { + "id": "option.measurementUnits.meters", + "defaultMessage": "meters" + }, + "minutes": { + "id": "option.measurementUnits.minutes", + "defaultMessage": "minutes" + }, + "ounces": { + "id": "option.measurementUnits.ounces", + "defaultMessage": "ounces" + }, + "pixels": { + "id": "option.measurementUnits.pixels", + "defaultMessage": "pixels" + }, + "pounds": { + "id": "option.measurementUnits.pounds", + "defaultMessage": "pounds" + }, + "ppi": { + "id": "option.measurementUnits.ppi", + "defaultMessage": "pixels per inch" + }, + "seconds": { + "id": "option.measurementUnits.seconds", + "defaultMessage": "seconds" + }, + "square-feet": { + "id": "option.measurementUnits.square-feet", + "defaultMessage": "square feet" + }, + "stories": { + "id": "option.measurementUnits.stories", + "defaultMessage": "stories" + }, + "tons": { + "id": "option.measurementUnits.tons", + "defaultMessage": "tons" + }, + "acres": { + "id": "option.measurementUnits.acres", + "defaultMessage": "acres" + }, + "grams": { + "id": "option.measurementUnits.grams", + "defaultMessage": "grams" + } + } + }, + "searchResultPagePageSizes": { + "values": [ + "20", + "40", + "100" + ] + }, + "searchPanelPageSizes": { + "values": [ + "5", + "10", + "20" + ] + }, + "booleans": { + "values": [ + "true", + "false" + ], + "messages": { + "true": { + "id": "option.booleans.true", + "defaultMessage": "yes" + }, + "false": { + "id": "option.booleans.false", + "defaultMessage": "no" + } + } + }, + "yesNoValues": { + "values": [ + "yes", + "no" + ], + "messages": { + "yes": { + "id": "option.yesNoValues.yes", + "defaultMessage": "yes" + }, + "no": { + "id": "option.yesNoValues.no", + "defaultMessage": "no" + } + } + }, + "dateQualifiers": { + "values": [ + "", + "+/-", + "+", + "-" + ], + "messages": { + "+/-": { + "id": "option.dateQualifiers.+/-", + "defaultMessage": "+/-" + }, + "+": { + "id": "option.dateQualifiers.+", + "defaultMessage": "+" + }, + "-": { + "id": "option.dateQualifiers.-", + "defaultMessage": "-" + } + } + }, + "departments": { + "values": [ + "archaeology", + "archaeology-nagpra", + "education", + "collection-management", + "design", + "ethnographic", + "history", + "naamcc", + "natural-history", + "poindexter-village", + "registrar", + "sites" + ], + "messages": { + "antiquities": { + "id": "option.departments.antiquities", + "defaultMessage": "Antiquities" + }, + "architecture-design": { + "id": "option.departments.architecture-design", + "defaultMessage": "Architecture and Design" + }, + "decorative-arts": { + "id": "option.departments.decorative-arts", + "defaultMessage": "Decorative Arts" + }, + "ethnography": { + "id": "option.departments.ethnography", + "defaultMessage": "Ethnography" + }, + "herpetology": { + "id": "option.departments.herpetology", + "defaultMessage": "Herpetology" + }, + "media-performance-art": { + "id": "option.departments.media-performance-art", + "defaultMessage": "Media and Performance Art" + }, + "paintings-sculpture": { + "id": "option.departments.paintings-sculpture", + "defaultMessage": "Paintings and Sculpture" + }, + "paleobotany": { + "id": "option.departments.paleobotany", + "defaultMessage": "Paleobotany" + }, + "photographs": { + "id": "option.departments.photographs", + "defaultMessage": "Photographs" + }, + "prints-drawings": { + "id": "option.departments.prints-drawings", + "defaultMessage": "Prints and Drawings" + }, + "archaeology": { + "id": "option.departments.archaeology", + "defaultMessage": "Archaeology" + }, + "archaeology-nagpra": { + "id": "option.departments.archaeology-nagpra", + "defaultMessage": "NAGPRA" + }, + "education": { + "id": "option.departments.education", + "defaultMessage": "Center and Village" + }, + "collection-management": { + "id": "option.departments.collection-management", + "defaultMessage": "Collection Management" + }, + "design": { + "id": "option.departments.design", + "defaultMessage": "Design" + }, + "ethnographic": { + "id": "option.departments.ethnographic", + "defaultMessage": "Ethnographic" + }, + "history": { + "id": "option.departments.history", + "defaultMessage": "History" + }, + "naamcc": { + "id": "option.departments.naamcc", + "defaultMessage": "National Afro-American Museum & Cultural Center" + }, + "natural-history": { + "id": "option.departments.natural-history", + "defaultMessage": "Natural History" + }, + "poindexter-village": { + "id": "option.departments.poindexter-village", + "defaultMessage": "Poindexter Village" + }, + "registrar": { + "id": "option.departments.registrar", + "defaultMessage": "Registrar" + }, + "sites": { + "id": "option.departments.sites", + "defaultMessage": "Sites" + } + } + }, + "loanPurposes": { + "values": [ + "exhibition", + "research", + "scientificorexhibitpreparation", + "analysis", + "photography", + "conservationotherrequestedservices", + "longtermcollectionsmanagementandstorage" + ], + "messages": { + "exhibition": { + "id": "option.loanPurposes.exhibition", + "defaultMessage": "exhibition" + }, + "research": { + "id": "option.loanPurposes.research", + "defaultMessage": "research" + }, + "scientificorexhibitpreparation": { + "id": "option.loanPurposes.scientificorexhibitpreparation", + "defaultMessage": "scientific or exhibit preparation" + }, + "analysis": { + "id": "option.loanPurposes.analysis", + "defaultMessage": "analysis" + }, + "photography": { + "id": "option.loanPurposes.photography", + "defaultMessage": "photography" + }, + "conservationotherrequestedservices": { + "id": "option.loanPurposes.conservationotherrequestedservices", + "defaultMessage": "conservation or other requested services" + }, + "longtermcollectionsmanagementandstorage": { + "id": "option.loanPurposes.longtermcollectionsmanagementandstorage", + "defaultMessage": "long-term collections management and storage" + } + } + }, + "accountStatuses": { + "values": [ + "active", + "inactive" + ], + "messages": { + "active": { + "id": "option.accountStatuses.active", + "defaultMessage": "active" + }, + "inactive": { + "id": "option.accountStatuses.inactive", + "defaultMessage": "inactive" + } + } + }, + "acquisitionMethods": { + "values": [ + "bequest", + "curated-on-behalf-of-federal-government", + "curated-on-behalf-of-state-government", + "curated-on-behalf-of-tribal-government", + "donation", + "fieldCollected", + "foundInCollection", + "loan", + "purchase", + "staffCurated", + "transfer" + ], + "messages": { + "bequest": { + "id": "option.acquisitionMethods.bequest", + "defaultMessage": "bequest" + }, + "commission": { + "id": "option.acquisitionMethods.commission", + "defaultMessage": "commission" + }, + "found in collection": { + "id": "option.acquisitionMethods.found in collection", + "defaultMessage": "found in collection" + }, + "gift": { + "id": "option.acquisitionMethods.gift", + "defaultMessage": "gift" + }, + "purchase": { + "id": "option.acquisitionMethods.purchase", + "defaultMessage": "purchase" + }, + "exchange": { + "id": "option.acquisitionMethods.exchange", + "defaultMessage": "exchange" + }, + "transfer": { + "id": "option.acquisitionMethods.transfer", + "defaultMessage": "transfer" + }, + "treasure": { + "id": "option.acquisitionMethods.treasure", + "defaultMessage": "treasure" + }, + "unknown": { + "id": "option.acquisitionMethods.unknown", + "defaultMessage": "unknown" + }, + "curated-on-behalf-of-federal-government": { + "id": "option.acquisitionMethods.curated-on-behalf-of-federal-government", + "defaultMessage": "curated on behalf of federal government" + }, + "curated-on-behalf-of-state-government": { + "id": "option.acquisitionMethods.curated-on-behalf-of-state-government", + "defaultMessage": "curated on behalf of state government" + }, + "curated-on-behalf-of-tribal-government": { + "id": "option.acquisitionMethods.curated-on-behalf-of-tribal-government", + "defaultMessage": "curated on behalf of tribal government" + }, + "donation": { + "id": "option.acquisitionMethods.donation", + "defaultMessage": "donation" + }, + "fieldCollected": { + "id": "option.acquisitionMethods.fieldCollected", + "defaultMessage": "field collected" + }, + "foundInCollection": { + "id": "option.acquisitionMethods.foundInCollection", + "defaultMessage": "found in collection" + }, + "loan": { + "id": "option.acquisitionMethods.loan", + "defaultMessage": "loan - TBD" + }, + "staffCurated": { + "id": "option.acquisitionMethods.staffCurated", + "defaultMessage": "staff curated" + } + } + }, + "eventTypes": { + "values": [ + "beforeDocumentModification", + "documentCreated", + "lifecycle_transition_event" + ], + "messages": { + "beforeDocumentModification": { + "id": "option.eventTypes.beforeDocumentModification", + "defaultMessage": "Document modification" + }, + "documentCreated": { + "id": "option.eventTypes.documentCreated", + "defaultMessage": "Document created" + }, + "lifecycle_transition_event": { + "id": "option.eventTypes.lifecycle_transition_event", + "defaultMessage": "Lifecycle transition" + } + } + }, + "citationTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.citationTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.citationTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.citationTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.citationTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "ageUnits": { + "values": [ + "days", + "months", + "weeks", + "years" + ], + "messages": { + "days": { + "id": "option.ageUnits.days", + "defaultMessage": "days" + }, + "months": { + "id": "option.ageUnits.months", + "defaultMessage": "months" + }, + "weeks": { + "id": "option.ageUnits.weeks", + "defaultMessage": "weeks" + }, + "years": { + "id": "option.ageUnits.years", + "defaultMessage": "years" + } + } + }, + "collections": { + "values": [ + "permanent-collection", + "education-collection", + "outdoor-collection", + "props-and-design", + "sites-and-facilities", + "active-use-collection", + "architectural-salvaged-collection" + ], + "messages": { + "library-collection": { + "id": "option.collections.library-collection", + "defaultMessage": "library collection" + }, + "permanent-collection": { + "id": "option.collections.permanent-collection", + "defaultMessage": "permanent collection" + }, + "study-collection": { + "id": "option.collections.study-collection", + "defaultMessage": "study collection" + }, + "teaching-collection": { + "id": "option.collections.teaching-collection", + "defaultMessage": "teaching collection" + }, + "education-collection": { + "id": "option.collections.education-collection", + "defaultMessage": "programming collection" + }, + "outdoor-collection": { + "id": "option.collections.outdoor-collection", + "defaultMessage": "outdoor collection" + }, + "props-and-design": { + "id": "option.collections.props-and-design", + "defaultMessage": "display collection" + }, + "sites-and-facilities": { + "id": "option.collections.sites-and-facilities", + "defaultMessage": "sites and facilities" + }, + "active-use-collection": { + "id": "option.collections.active-use-collection", + "defaultMessage": "active use collection" + }, + "architectural-salvaged-collection": { + "id": "option.collections.architectural-salvaged-collection", + "defaultMessage": "architectural/salvaged collection" + } + } + }, + "contentObjectTypes": { + "values": [ + "furniture", + "food" + ], + "messages": { + "furniture": { + "id": "option.contentObjectTypes.furniture", + "defaultMessage": "furniture" + }, + "food": { + "id": "option.contentObjectTypes.food", + "defaultMessage": "food" + } + } + }, + "forms": { + "values": [ + "dried fungus", + "egg", + "envelope", + "feather", + "fossil", + "fossil tracks", + "hair", + "herbarium sheet", + "liquid preservation", + "live mount", + "mineral", + "nest", + "ore", + "pellet", + "pinned", + "pressed plant", + "replica", + "rock", + "seeds", + "shell", + "skeletal", + "slide", + "study skin", + "tanned hide", + "wood sample" + ], + "messages": { + "dry": { + "id": "option.forms.dry", + "defaultMessage": "dry" + }, + "pinned": { + "id": "option.forms.pinned", + "defaultMessage": "pinned" + }, + "thin-section": { + "id": "option.forms.thin-section", + "defaultMessage": "thin section" + }, + "wet": { + "id": "option.forms.wet", + "defaultMessage": "wet" + }, + "bagged": { + "id": "option.forms.bagged", + "defaultMessage": "bagged" + }, + "bottled": { + "id": "option.forms.bottled", + "defaultMessage": "bottled" + }, + "boxed": { + "id": "option.forms.boxed", + "defaultMessage": "boxed" + }, + "in can or tin": { + "id": "option.forms.in can or tin", + "defaultMessage": "in can or tin" + }, + "in drum": { + "id": "option.forms.in drum", + "defaultMessage": "in drum" + }, + "ground": { + "id": "option.forms.ground", + "defaultMessage": "ground" + }, + "mounted": { + "id": "option.forms.mounted", + "defaultMessage": "mounted" + }, + "thin section": { + "id": "option.forms.thin section", + "defaultMessage": "thin section" + }, + "wrapped": { + "id": "option.forms.wrapped", + "defaultMessage": "wrapped" + }, + "unknown": { + "id": "option.forms.unknown", + "defaultMessage": "unknown" + }, + "dried fungus": { + "id": "option.forms.dried fungus", + "defaultMessage": "dried fungus" + }, + "egg": { + "id": "option.forms.egg", + "defaultMessage": "egg" + }, + "envelope": { + "id": "option.forms.envelope", + "defaultMessage": "envelope" + }, + "feather": { + "id": "option.forms.feather", + "defaultMessage": "feather" + }, + "fossil": { + "id": "option.forms.fossil", + "defaultMessage": "fossil" + }, + "fossil tracks": { + "id": "option.forms.fossil tracks", + "defaultMessage": "fossil tracks" + }, + "hair": { + "id": "option.forms.hair", + "defaultMessage": "hair" + }, + "herbarium sheet": { + "id": "option.forms.herbarium sheet", + "defaultMessage": "herbarium sheet" + }, + "liquid preservation": { + "id": "option.forms.liquid preservation", + "defaultMessage": "liquid preservation" + }, + "live mount": { + "id": "option.forms.live mount", + "defaultMessage": "live mount" + }, + "mineral": { + "id": "option.forms.mineral", + "defaultMessage": "mineral" + }, + "nest": { + "id": "option.forms.nest", + "defaultMessage": "nest" + }, + "ore": { + "id": "option.forms.ore", + "defaultMessage": "ore" + }, + "pellet": { + "id": "option.forms.pellet", + "defaultMessage": "pellet" + }, + "pressed plant": { + "id": "option.forms.pressed plant", + "defaultMessage": "pressed plant" + }, + "replica": { + "id": "option.forms.replica", + "defaultMessage": "replica" + }, + "rock": { + "id": "option.forms.rock", + "defaultMessage": "rock" + }, + "seeds": { + "id": "option.forms.seeds", + "defaultMessage": "seeds" + }, + "shell": { + "id": "option.forms.shell", + "defaultMessage": "shell" + }, + "skeletal": { + "id": "option.forms.skeletal", + "defaultMessage": "skeletal" + }, + "slide": { + "id": "option.forms.slide", + "defaultMessage": "slide" + }, + "study skin": { + "id": "option.forms.study skin", + "defaultMessage": "study skin" + }, + "tanned hide": { + "id": "option.forms.tanned hide", + "defaultMessage": "tanned hide" + }, + "wood sample": { + "id": "option.forms.wood sample", + "defaultMessage": "wood sample" + } + } + }, + "inscriptionTypes": { + "values": [ + "brand", + "credits", + "decoration", + "estate-stamp", + "graffiti", + "label", + "maker's-mark", + "plaque", + "signage" + ], + "messages": { + "brand": { + "id": "option.inscriptionTypes.brand", + "defaultMessage": "brand" + }, + "credits": { + "id": "option.inscriptionTypes.credits", + "defaultMessage": "credits" + }, + "decoration": { + "id": "option.inscriptionTypes.decoration", + "defaultMessage": "decoration" + }, + "estate-stamp": { + "id": "option.inscriptionTypes.estate-stamp", + "defaultMessage": "estate stamp" + }, + "graffiti": { + "id": "option.inscriptionTypes.graffiti", + "defaultMessage": "graffiti" + }, + "label": { + "id": "option.inscriptionTypes.label", + "defaultMessage": "label" + }, + "maker's-mark": { + "id": "option.inscriptionTypes.maker's-mark", + "defaultMessage": "maker's mark" + }, + "plaque": { + "id": "option.inscriptionTypes.plaque", + "defaultMessage": "plaque" + }, + "signage": { + "id": "option.inscriptionTypes.signage", + "defaultMessage": "signage" + } + } + }, + "measuredParts": { + "values": [ + "base", + "frame", + "framed", + "image-size", + "mount", + "paper-size", + "plate-size", + "unframed" + ], + "messages": { + "base": { + "id": "option.measuredParts.base", + "defaultMessage": "base" + }, + "frame": { + "id": "option.measuredParts.frame", + "defaultMessage": "frame" + }, + "framed": { + "id": "option.measuredParts.framed", + "defaultMessage": "framed" + }, + "image-size": { + "id": "option.measuredParts.image-size", + "defaultMessage": "image size" + }, + "mount": { + "id": "option.measuredParts.mount", + "defaultMessage": "mount" + }, + "paper-size": { + "id": "option.measuredParts.paper-size", + "defaultMessage": "paper size" + }, + "plate-size": { + "id": "option.measuredParts.plate-size", + "defaultMessage": "plate size" + }, + "unframed": { + "id": "option.measuredParts.unframed", + "defaultMessage": "unframed" + } + } + }, + "measurementMethods": { + "values": [ + "microscopy_reticule", + "standard_mesh_screen", + "sliding_calipers", + "spreading_calipers", + "measuring_tape_cloth", + "measuring_tape_metal", + "osteometric_board", + "ruler", + "pacing_pedometer", + "odometer", + "taping_chaining", + "stadia_transit", + "optical_range_finder", + "electronic_distance_measurement", + "protractor", + "goniometer", + "theodolite_total_station", + "balance_beam_scale", + "spring_scale", + "hydraulic_or_pneumatic_scale" + ], + "messages": { + "microscopy_reticule": { + "id": "option.measurementMethods.microscopy_reticule", + "defaultMessage": "microscopy (reticule)" + }, + "standard_mesh_screen": { + "id": "option.measurementMethods.standard_mesh_screen", + "defaultMessage": "standard mesh/screen" + }, + "sliding_calipers": { + "id": "option.measurementMethods.sliding_calipers", + "defaultMessage": "sliding calipers" + }, + "spreading_calipers": { + "id": "option.measurementMethods.spreading_calipers", + "defaultMessage": "spreading calipers" + }, + "measuring_tape_cloth": { + "id": "option.measurementMethods.measuring_tape_cloth", + "defaultMessage": "measuring tape (cloth)" + }, + "measuring_tape_metal": { + "id": "option.measurementMethods.measuring_tape_metal", + "defaultMessage": "measuring tape (metal)" + }, + "osteometric_board": { + "id": "option.measurementMethods.osteometric_board", + "defaultMessage": "osteometric board" + }, + "ruler": { + "id": "option.measurementMethods.ruler", + "defaultMessage": "ruler" + }, + "pacing_pedometer": { + "id": "option.measurementMethods.pacing_pedometer", + "defaultMessage": "pacing pedometer" + }, + "odometer": { + "id": "option.measurementMethods.odometer", + "defaultMessage": "odometer" + }, + "taping_chaining": { + "id": "option.measurementMethods.taping_chaining", + "defaultMessage": "taping/chaining" + }, + "stadia_transit": { + "id": "option.measurementMethods.stadia_transit", + "defaultMessage": "stadia/transit" + }, + "optical_range_finder": { + "id": "option.measurementMethods.optical_range_finder", + "defaultMessage": "optical range finder" + }, + "electronic_distance_measurement": { + "id": "option.measurementMethods.electronic_distance_measurement", + "defaultMessage": "electronic distance measurement" + }, + "protractor": { + "id": "option.measurementMethods.protractor", + "defaultMessage": "protractor" + }, + "goniometer": { + "id": "option.measurementMethods.goniometer", + "defaultMessage": "goniometer" + }, + "theodolite_total_station": { + "id": "option.measurementMethods.theodolite_total_station", + "defaultMessage": "theodolite/total station" + }, + "balance_beam_scale": { + "id": "option.measurementMethods.balance_beam_scale", + "defaultMessage": "balance/beam scale" + }, + "spring_scale": { + "id": "option.measurementMethods.spring_scale", + "defaultMessage": "spring scale" + }, + "hydraulic_or_pneumatic_scale": { + "id": "option.measurementMethods.hydraulic_or_pneumatic_scale", + "defaultMessage": "hydraulic or pneumatic scale" + } + } + }, + "nameCurrencies": { + "values": [ + "current", + "out of date", + "unknown" + ], + "messages": { + "current": { + "id": "option.nameCurrencies.current", + "defaultMessage": "current" + }, + "archaic": { + "id": "option.nameCurrencies.archaic", + "defaultMessage": "archaic" + }, + "out of date": { + "id": "option.nameCurrencies.out of date", + "defaultMessage": "out of date" + }, + "unknown": { + "id": "option.nameCurrencies.unknown", + "defaultMessage": "unknown" + } + } + }, + "nameLevels": { + "values": [ + "group", + "subgroup" + ], + "messages": { + "group": { + "id": "option.nameLevels.group", + "defaultMessage": "group" + }, + "subgroup": { + "id": "option.nameLevels.subgroup", + "defaultMessage": "subgroup" + } + } + }, + "nameSystems": { + "values": [ + "AASLH Nomenclature", + "Bennyhoff Olivella bead typology", + "Getty Art & Architecture Thesaurus", + "Gifford worked bone typology", + "Gifford worked shell typology", + "Heizer projectile point typology", + "Justice projectile point typology", + "Local OHC", + "Meighan historic glass bead typology", + "Treganza clay artifact typology", + "no system" + ], + "messages": { + "art-and-architecture-thesaurus": { + "id": "option.nameSystems.art-and-architecture-thesaurus", + "defaultMessage": "Art & Architecture Thesaurus" + }, + "nomenclature": { + "id": "option.nameSystems.nomenclature", + "defaultMessage": "nomenclature" + }, + "AASLH Nomenclature": { + "id": "option.nameSystems.AASLH Nomenclature", + "defaultMessage": "AASLH Nomenclature" + }, + "Bennyhoff Olivella bead typology": { + "id": "option.nameSystems.Bennyhoff Olivella bead typology", + "defaultMessage": "Bennyhoff Olivella bead typology" + }, + "Getty Art & Architecture Thesaurus": { + "id": "option.nameSystems.Getty Art & Architecture Thesaurus", + "defaultMessage": "Getty Art & Architecture Thesaurus" + }, + "Gifford worked bone typology": { + "id": "option.nameSystems.Gifford worked bone typology", + "defaultMessage": "Gifford worked bone typology" + }, + "Gifford worked shell typology": { + "id": "option.nameSystems.Gifford worked shell typology", + "defaultMessage": "Gifford worked shell typology" + }, + "Heizer projectile point typology": { + "id": "option.nameSystems.Heizer projectile point typology", + "defaultMessage": "Heizer projectile point typology" + }, + "Justice projectile point typology": { + "id": "option.nameSystems.Justice projectile point typology", + "defaultMessage": "Justice projectile point typology" + }, + "Meighan historic glass bead typology": { + "id": "option.nameSystems.Meighan historic glass bead typology", + "defaultMessage": "Meighan historic glass bead typology" + }, + "Treganza clay artifact typology": { + "id": "option.nameSystems.Treganza clay artifact typology", + "defaultMessage": "Treganza clay artifact typology" + }, + "no system": { + "id": "option.nameSystems.no system", + "defaultMessage": "no system" + }, + "Local OHC": { + "id": "option.nameSystems.Local OHC", + "defaultMessage": "Local OHC" + } + } + }, + "nameTypes": { + "values": [ + "classified", + "denomination", + "simple", + "taxonomic", + "typological" + ], + "messages": { + "classified": { + "id": "option.nameTypes.classified", + "defaultMessage": "classified" + }, + "denomination": { + "id": "option.nameTypes.denomination", + "defaultMessage": "denomination" + }, + "simple": { + "id": "option.nameTypes.simple", + "defaultMessage": "simple" + }, + "taxonomic": { + "id": "option.nameTypes.taxonomic", + "defaultMessage": "taxonomic" + }, + "typological": { + "id": "option.nameTypes.typological", + "defaultMessage": "typological" + } + } + }, + "numberTypes": { + "values": [ + "AccessCommingledID", + "AccessSkeletalID", + "Additional File Number", + "Archives/Library Negative Number", + "Barcode Number", + "Community NID", + "Digital Heritage Collection NID", + "Digital Heritage Item NID", + "Field Sheet Number", + "Fine Arts Card Number", + "FIPS Number", + "NADB Number", + "National Historic Landmark Number", + "National Register Number", + "OAI Number", + "OHI Number", + "OHPOID Number", + "OhioPix File Name", + "Old Ledger #1", + "Old Ledger #2", + "Original Collection Number", + "Other Number", + "Previous Catalog Number", + "Punch Card Number", + "Researcher Number", + "SOD Number", + "STARid" + ], + "messages": { + "associated uuid": { + "id": "option.numberTypes.associated uuid", + "defaultMessage": "associated uuid" + }, + "barcode": { + "id": "option.numberTypes.barcode", + "defaultMessage": "barcode" + }, + "lender": { + "id": "option.numberTypes.lender", + "defaultMessage": "lender" + }, + "obsolete": { + "id": "option.numberTypes.obsolete", + "defaultMessage": "obsolete" + }, + "previous": { + "id": "option.numberTypes.previous", + "defaultMessage": "previous" + }, + "serial": { + "id": "option.numberTypes.serial", + "defaultMessage": "serial" + }, + "unknown": { + "id": "option.numberTypes.unknown", + "defaultMessage": "unknown" + }, + "AccessCommingledID": { + "id": "option.numberTypes.AccessCommingledID", + "defaultMessage": "AccessCommingledID" + }, + "AccessSkeletalID": { + "id": "option.numberTypes.AccessSkeletalID", + "defaultMessage": "AccessSkeletalID" + }, + "Additional File Number": { + "id": "option.numberTypes.Additional File Number", + "defaultMessage": "Additional File Number" + }, + "Archives/Library Negative Number": { + "id": "option.numberTypes.Archives/Library Negative Number", + "defaultMessage": "Archives/Library Negative Number" + }, + "Barcode Number": { + "id": "option.numberTypes.Barcode Number", + "defaultMessage": "Barcode Number" + }, + "Field Sheet Number": { + "id": "option.numberTypes.Field Sheet Number", + "defaultMessage": "Field Sheet Number" + }, + "Fine Arts Card Number": { + "id": "option.numberTypes.Fine Arts Card Number", + "defaultMessage": "Fine Arts Card Number" + }, + "FIPS Number": { + "id": "option.numberTypes.FIPS Number", + "defaultMessage": "FIPS Number" + }, + "NADB Number": { + "id": "option.numberTypes.NADB Number", + "defaultMessage": "NADB Number" + }, + "National Historic Landmark Number": { + "id": "option.numberTypes.National Historic Landmark Number", + "defaultMessage": "National Historic Landmark Number" + }, + "National Register Number": { + "id": "option.numberTypes.National Register Number", + "defaultMessage": "National Register Number" + }, + "OAI Number": { + "id": "option.numberTypes.OAI Number", + "defaultMessage": "OAI Number" + }, + "OHI Number": { + "id": "option.numberTypes.OHI Number", + "defaultMessage": "OHI Number" + }, + "OHPOID Number": { + "id": "option.numberTypes.OHPOID Number", + "defaultMessage": "OHPOID Number" + }, + "OhioPix File Name": { + "id": "option.numberTypes.OhioPix File Name", + "defaultMessage": "OhioPix File Name" + }, + "Old Ledger #1": { + "id": "option.numberTypes.Old Ledger #1", + "defaultMessage": "Old Ledger #1" + }, + "Old Ledger #2": { + "id": "option.numberTypes.Old Ledger #2", + "defaultMessage": "Old Ledger #2" + }, + "Original Collection Number": { + "id": "option.numberTypes.Original Collection Number", + "defaultMessage": "Original Collection Number" + }, + "Other Number": { + "id": "option.numberTypes.Other Number", + "defaultMessage": "Other Number" + }, + "Previous Catalog Number": { + "id": "option.numberTypes.Previous Catalog Number", + "defaultMessage": "Previous Catalog Number" + }, + "Punch Card Number": { + "id": "option.numberTypes.Punch Card Number", + "defaultMessage": "Punch Card Number" + }, + "Researcher Number": { + "id": "option.numberTypes.Researcher Number", + "defaultMessage": "Researcher Number" + }, + "SOD Number": { + "id": "option.numberTypes.SOD Number", + "defaultMessage": "SOD Number" + }, + "STAR ID": { + "id": "option.numberTypes.STARid", + "defaultMessage": "STARid" + } + } + }, + "objectComponentNames": { + "values": [ + "blade", + "buttonhole", + "handle", + "sleeve" + ], + "messages": { + "blade": { + "id": "option.objectComponentNames.blade", + "defaultMessage": "blade" + }, + "buttonhole": { + "id": "option.objectComponentNames.buttonhole", + "defaultMessage": "buttonhole" + }, + "handle": { + "id": "option.objectComponentNames.handle", + "defaultMessage": "handle" + }, + "sleeve": { + "id": "option.objectComponentNames.sleeve", + "defaultMessage": "sleeve" + } + } + }, + "objectStatuses": { + "values": [ + "copy", + "forgery", + "holotype", + "paralectotype", + "paratype", + "type" + ], + "messages": { + "copy": { + "id": "option.objectStatuses.copy", + "defaultMessage": "copy" + }, + "forgery": { + "id": "option.objectStatuses.forgery", + "defaultMessage": "forgery" + }, + "holotype": { + "id": "option.objectStatuses.holotype", + "defaultMessage": "holotype" + }, + "paralectotype": { + "id": "option.objectStatuses.paralectotype", + "defaultMessage": "paralectotype" + }, + "paratype": { + "id": "option.objectStatuses.paratype", + "defaultMessage": "paratype" + }, + "type": { + "id": "option.objectStatuses.type", + "defaultMessage": "type" + } + } + }, + "ownershipAccessLevels": { + "values": [ + "limited", + "open", + "restricted" + ], + "messages": { + "limited": { + "id": "option.ownershipAccessLevels.limited", + "defaultMessage": "limited" + }, + "open": { + "id": "option.ownershipAccessLevels.open", + "defaultMessage": "open" + }, + "restricted": { + "id": "option.ownershipAccessLevels.restricted", + "defaultMessage": "restricted" + } + } + }, + "ownershipCategories": { + "values": [ + "company", + "public", + "private" + ], + "messages": { + "company": { + "id": "option.ownershipCategories.company", + "defaultMessage": "company" + }, + "public": { + "id": "option.ownershipCategories.public", + "defaultMessage": "public" + }, + "private": { + "id": "option.ownershipCategories.private", + "defaultMessage": "private" + } + } + }, + "ownershipExchangeMethods": { + "values": [ + "bequest", + "exchange", + "gift", + "purchase", + "transfer", + "treasure" + ], + "messages": { + "bequest": { + "id": "option.ownershipExchangeMethods.bequest", + "defaultMessage": "bequest" + }, + "exchange": { + "id": "option.ownershipExchangeMethods.exchange", + "defaultMessage": "exchange" + }, + "gift": { + "id": "option.ownershipExchangeMethods.gift", + "defaultMessage": "gift" + }, + "purchase": { + "id": "option.ownershipExchangeMethods.purchase", + "defaultMessage": "purchase" + }, + "transfer": { + "id": "option.ownershipExchangeMethods.transfer", + "defaultMessage": "transfer" + }, + "treasure": { + "id": "option.ownershipExchangeMethods.treasure", + "defaultMessage": "treasure" + } + } + }, + "phases": { + "values": [ + "adult/mature", + "subadult/immature", + "egg", + "fetus", + "pupa", + "larva", + "seed", + "indeterminate", + "multiple", + "unknown" + ], + "messages": { + "adult": { + "id": "option.phases.adult", + "defaultMessage": "adult" + }, + "imago": { + "id": "option.phases.imago", + "defaultMessage": "imago" + }, + "larva": { + "id": "option.phases.larva", + "defaultMessage": "larva" + }, + "nymph": { + "id": "option.phases.nymph", + "defaultMessage": "nymph" + }, + "pupa": { + "id": "option.phases.pupa", + "defaultMessage": "pupa" + }, + "adult/mature": { + "id": "option.phases.adult/mature", + "defaultMessage": "adult/mature" + }, + "subadult/immature": { + "id": "option.phases.subadult/immature", + "defaultMessage": "subadult/immature" + }, + "egg": { + "id": "option.phases.egg", + "defaultMessage": "egg" + }, + "seed": { + "id": "option.phases.seed", + "defaultMessage": "seed" + }, + "indeterminate": { + "id": "option.phases.indeterminate", + "defaultMessage": "indeterminate" + }, + "multiple": { + "id": "option.phases.multiple", + "defaultMessage": "multiple" + }, + "unknown": { + "id": "option.phases.unknown", + "defaultMessage": "unknown" + }, + "fetus": { + "id": "option.phases.fetus", + "defaultMessage": "fetus" + } + } + }, + "positions": { + "values": [ + "back", + "base", + "bottom", + "front", + "inside", + "left", + "outside", + "recto", + "right", + "rim", + "top", + "verso" + ], + "messages": { + "back": { + "id": "option.positions.back", + "defaultMessage": "back" + }, + "base": { + "id": "option.positions.base", + "defaultMessage": "base" + }, + "bottom": { + "id": "option.positions.bottom", + "defaultMessage": "bottom" + }, + "front": { + "id": "option.positions.front", + "defaultMessage": "front" + }, + "inside": { + "id": "option.positions.inside", + "defaultMessage": "inside" + }, + "left": { + "id": "option.positions.left", + "defaultMessage": "left" + }, + "outside": { + "id": "option.positions.outside", + "defaultMessage": "outside" + }, + "recto": { + "id": "option.positions.recto", + "defaultMessage": "recto" + }, + "right": { + "id": "option.positions.right", + "defaultMessage": "right" + }, + "rim": { + "id": "option.positions.rim", + "defaultMessage": "rim" + }, + "top": { + "id": "option.positions.top", + "defaultMessage": "top" + }, + "verso": { + "id": "option.positions.verso", + "defaultMessage": "verso" + } + } + }, + "recordStatuses": { + "values": [ + "approved", + "in-process", + "new", + "ready-for-review", + "revision-needed", + "temporary" + ], + "messages": { + "approved": { + "id": "option.recordStatuses.approved", + "defaultMessage": "approved" + }, + "in-process": { + "id": "option.recordStatuses.in-process", + "defaultMessage": "in process" + }, + "new": { + "id": "option.recordStatuses.new", + "defaultMessage": "new" + }, + "temporary": { + "id": "option.recordStatuses.temporary", + "defaultMessage": "temporary" + }, + "ready-for-review": { + "id": "option.recordStatuses.ready-for-review", + "defaultMessage": "ready for review" + }, + "revision-needed": { + "id": "option.recordStatuses.revision-needed", + "defaultMessage": "revision needed" + } + } + }, + "scripts": { + "values": [ + "carolingian-miniscule", + "gothic-script", + "palmer-method", + "roman-cursive", + "rustic-capitals", + "spencerian-method", + "square-capitals" + ], + "messages": { + "carolingian-miniscule": { + "id": "option.scripts.carolingian-miniscule", + "defaultMessage": "Carolingian minuscule" + }, + "gothic-script": { + "id": "option.scripts.gothic-script", + "defaultMessage": "Gothic script" + }, + "palmer-method": { + "id": "option.scripts.palmer-method", + "defaultMessage": "Palmer method" + }, + "roman-cursive": { + "id": "option.scripts.roman-cursive", + "defaultMessage": "Roman cursive" + }, + "rustic-capitals": { + "id": "option.scripts.rustic-capitals", + "defaultMessage": "rustic capitals" + }, + "spencerian-method": { + "id": "option.scripts.spencerian-method", + "defaultMessage": "Spencerian method" + }, + "square-capitals": { + "id": "option.scripts.square-capitals", + "defaultMessage": "square capitals" + } + } + }, + "sexes": { + "values": [ + "female", + "male", + "indeterminate", + "mixed" + ], + "messages": { + "female": { + "id": "option.sexes.female", + "defaultMessage": "female" + }, + "male": { + "id": "option.sexes.male", + "defaultMessage": "male" + }, + "indeterminate": { + "id": "option.sexes.indeterminate", + "defaultMessage": "indeterminate" + }, + "mixed": { + "id": "option.sexes.mixed", + "defaultMessage": "mixed" + } + } + }, + "technicalAttributes": { + "values": [ + "magnetic-tape-type", + "record-speed" + ], + "messages": { + "magnetic-tape-type": { + "id": "option.technicalAttributes.magnetic-tape-type", + "defaultMessage": "magnetic tape type" + }, + "record-speed": { + "id": "option.technicalAttributes.record-speed", + "defaultMessage": "record speed" + } + } + }, + "technicalAttributeMeasurements": { + "values": [ + "metal", + "78" + ], + "messages": { + "78": { + "id": "option.technicalAttributeMeasurements.78", + "defaultMessage": "78" + }, + "metal": { + "id": "option.technicalAttributeMeasurements.metal", + "defaultMessage": "metal" + } + } + }, + "technicalAttributeMeasurementUnits": { + "values": [ + "rpm" + ], + "messages": { + "rpm": { + "id": "option.technicalAttributeMeasurementUnits.rpm", + "defaultMessage": "rpm" + } + } + }, + "titleTypes": { + "values": [ + "assigned-by-artist", + "collection", + "book-title", + "site" + ], + "messages": { + "assigned-by-artist": { + "id": "option.titleTypes.assigned-by-artist", + "defaultMessage": "assigned by artist" + }, + "collection": { + "id": "option.titleTypes.collection", + "defaultMessage": "collection" + }, + "generic": { + "id": "option.titleTypes.generic", + "defaultMessage": "generic" + }, + "popular": { + "id": "option.titleTypes.popular", + "defaultMessage": "popular" + }, + "series": { + "id": "option.titleTypes.series", + "defaultMessage": "series" + }, + "trade": { + "id": "option.titleTypes.trade", + "defaultMessage": "trade" + }, + "book-title": { + "id": "option.titleTypes.book-title", + "defaultMessage": "book title" + }, + "site": { + "id": "option.titleTypes.site", + "defaultMessage": "site" + } + } + }, + "objectParentTypes": { + "values": [ + "set", + "derivative", + "separable-part", + "non-separable-part", + "recto", + "verso" + ], + "messages": { + "set": { + "id": "option.objectParentTypes.set", + "defaultMessage": "set" + }, + "derivative": { + "id": "option.objectParentTypes.derivative", + "defaultMessage": "work (derivative)" + }, + "separable-part": { + "id": "option.objectParentTypes.separable-part", + "defaultMessage": "work (separable part)" + }, + "non-separable-part": { + "id": "option.objectParentTypes.non-separable-part", + "defaultMessage": "work (non-separable part)" + }, + "recto": { + "id": "option.objectParentTypes.recto", + "defaultMessage": "work (recto)" + }, + "verso": { + "id": "option.objectParentTypes.verso", + "defaultMessage": "work (verso)" + } + } + }, + "objectChildTypes": { + "values": [ + "set", + "derivative", + "separable-part", + "non-separable-part", + "recto", + "verso" + ], + "messages": { + "set": { + "id": "option.objectChildTypes.set", + "defaultMessage": "item in a set" + }, + "derivative": { + "id": "option.objectChildTypes.derivative", + "defaultMessage": "derivative" + }, + "separable-part": { + "id": "option.objectChildTypes.separable-part", + "defaultMessage": "separable part" + }, + "non-separable-part": { + "id": "option.objectChildTypes.non-separable-part", + "defaultMessage": "non-separable part" + }, + "recto": { + "id": "option.objectChildTypes.recto", + "defaultMessage": "recto" + }, + "verso": { + "id": "option.objectChildTypes.verso", + "defaultMessage": "verso" + } + } + }, + "conceptTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.conceptTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.conceptTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.conceptTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.conceptTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "conceptTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.conceptTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.conceptTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.conceptTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "conceptHistoricalStatuses": { + "values": [ + "current", + "historical", + "both", + "unknown" + ], + "messages": { + "current": { + "id": "option.conceptHistoricalStatuses.current", + "defaultMessage": "current" + }, + "historical": { + "id": "option.conceptHistoricalStatuses.historical", + "defaultMessage": "historical" + }, + "both": { + "id": "option.conceptHistoricalStatuses.both", + "defaultMessage": "both" + }, + "unknown": { + "id": "option.conceptHistoricalStatuses.unknown", + "defaultMessage": "unknown" + } + } + }, + "objectAuditCategories": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.objectAuditCategories.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.objectAuditCategories.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.objectAuditCategories.high", + "defaultMessage": "high" + } + } + }, + "completenessLevels": { + "values": [ + "complete", + "fragmented", + "incomplete" + ], + "messages": { + "complete": { + "id": "option.completenessLevels.complete", + "defaultMessage": "complete" + }, + "fragmented": { + "id": "option.completenessLevels.fragmented", + "defaultMessage": "fragmented" + }, + "incomplete": { + "id": "option.completenessLevels.incomplete", + "defaultMessage": "incomplete" + } + } + }, + "conditions": { + "values": [ + "needsnowork", + "exhibitableneedswork", + "notexhibitablestable", + "injeopardy" + ], + "messages": { + "needsnowork": { + "id": "option.conditions.needsnowork", + "defaultMessage": "needs no work" + }, + "exhibitableneedswork": { + "id": "option.conditions.exhibitableneedswork", + "defaultMessage": "exhibitable / needs work" + }, + "notexhibitablestable": { + "id": "option.conditions.notexhibitablestable", + "defaultMessage": "not exhibitable / stable" + }, + "injeopardy": { + "id": "option.conditions.injeopardy", + "defaultMessage": "in jeopardy" + } + } + }, + "conservationTreatmentPriorities": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.conservationTreatmentPriorities.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.conservationTreatmentPriorities.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.conservationTreatmentPriorities.high", + "defaultMessage": "high" + } + } + }, + "hazards": { + "values": [ + "arsenic", + "asbestos", + "corrosive", + "flammable", + "guano", + "insects", + "lead", + "mold or mildew", + "mercury", + "oxidation", + "oxidation", + "poisonous", + "radioactive", + "scat", + "sharp protrusion", + "unstable component", + "vermin" + ], + "messages": { + "poisonous": { + "id": "option.hazards.poisonous", + "defaultMessage": "poisonous" + }, + "radioactive": { + "id": "option.hazards.radioactive", + "defaultMessage": "radioactive" + }, + "arsenic": { + "id": "option.hazards.arsenic", + "defaultMessage": "arsenic" + }, + "asbestos": { + "id": "option.hazards.asbestos", + "defaultMessage": "asbestos" + }, + "corrosive": { + "id": "option.hazards.corrosive", + "defaultMessage": "corrosive" + }, + "flammable": { + "id": "option.hazards.flammable", + "defaultMessage": "flammable" + }, + "guano": { + "id": "option.hazards.guano", + "defaultMessage": "guano" + }, + "insects": { + "id": "option.hazards.insects", + "defaultMessage": "insects" + }, + "lead": { + "id": "option.hazards.lead", + "defaultMessage": "lead" + }, + "mold or mildew": { + "id": "option.hazards.mold or mildew", + "defaultMessage": "mold or mildew" + }, + "mercury": { + "id": "option.hazards.mercury", + "defaultMessage": "mercury" + }, + "oxidation": { + "id": "option.hazards.oxidation", + "defaultMessage": "oxidation" + }, + "other": { + "id": "option.hazards.other", + "defaultMessage": "other" + }, + "scat": { + "id": "option.hazards.scat", + "defaultMessage": "scat" + }, + "sharp protrusion": { + "id": "option.hazards.sharp protrusion", + "defaultMessage": "sharp protrusion" + }, + "unstable component": { + "id": "option.hazards.unstable component", + "defaultMessage": "unstable component" + }, + "vermin": { + "id": "option.hazards.vermin", + "defaultMessage": "vermin" + } + } + }, + "conditionCheckMethods": { + "values": [ + "observed", + "xrayed" + ], + "messages": { + "observed": { + "id": "option.conditionCheckMethods.observed", + "defaultMessage": "observed" + }, + "xrayed": { + "id": "option.conditionCheckMethods.xrayed", + "defaultMessage": "x-rayed" + } + } + }, + "conditionCheckReasons": { + "values": [ + "candidate for deaccession", + "conservation", + "consideration", + "damaged", + "exhibit", + "inquiry", + "exhibit preparation", + "inventory/recataloging", + "loanin", + "loanout" + ], + "messages": { + "conservation": { + "id": "option.conditionCheckReasons.conservation", + "defaultMessage": "conservation" + }, + "damagedintransit": { + "id": "option.conditionCheckReasons.damagedintransit", + "defaultMessage": "damaged in transit" + }, + "exhibition": { + "id": "option.conditionCheckReasons.exhibition", + "defaultMessage": "exhibition" + }, + "loanin": { + "id": "option.conditionCheckReasons.loanin", + "defaultMessage": "loan in" + }, + "newacquisition": { + "id": "option.conditionCheckReasons.newacquisition", + "defaultMessage": "new acquisition" + }, + "candidate for deaccession": { + "id": "option.conditionCheckReasons.candidate for deaccession", + "defaultMessage": "candidate for deaccession" + }, + "consideraton": { + "id": "option.conditionCheckReasons.consideration", + "defaultMessage": "consideration" + }, + "damaged": { + "id": "option.conditionCheckReasons.damaged", + "defaultMessage": "damaged" + }, + "exhibit": { + "id": "option.conditionCheckReasons.exhibit", + "defaultMessage": "exhibit" + }, + "exhibit preparation": { + "id": "option.conditionCheckReasons.exhibit preparation", + "defaultMessage": "exhibit preparation" + }, + "inquiry": { + "id": "option.conditionCheckReasons.inquiry", + "defaultMessage": "inquiry" + }, + "inventory/recataloging": { + "id": "option.conditionCheckReasons.inventory/recataloging", + "defaultMessage": "inventory/recataloging" + }, + "loanout": { + "id": "option.conditionCheckReasons.loanout", + "defaultMessage": "loan out" + } + } + }, + "salvagePriorityCodes": { + "values": [ + "low", + "medium", + "high" + ], + "messages": { + "low": { + "id": "option.salvagePriorityCodes.low", + "defaultMessage": "low" + }, + "medium": { + "id": "option.salvagePriorityCodes.medium", + "defaultMessage": "medium" + }, + "high": { + "id": "option.salvagePriorityCodes.high", + "defaultMessage": "high" + } + } + }, + "emailTypes": { + "values": [ + "business", + "personal", + "other" + ], + "messages": { + "business": { + "id": "option.emailTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.emailTypes.personal", + "defaultMessage": "personal" + }, + "other": { + "id": "option.emailTypes.other", + "defaultMessage": "other" + } + } + }, + "telephoneNumberTypes": { + "values": [ + "business", + "home", + "mobile", + "other" + ], + "messages": { + "business": { + "id": "option.telephoneNumberTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.telephoneNumberTypes.home", + "defaultMessage": "home" + }, + "mobile": { + "id": "option.telephoneNumberTypes.mobile", + "defaultMessage": "mobile" + }, + "other": { + "id": "option.telephoneNumberTypes.other", + "defaultMessage": "other" + } + } + }, + "faxNumberTypes": { + "values": [ + "business", + "home", + "other" + ], + "messages": { + "business": { + "id": "option.faxNumberTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.faxNumberTypes.home", + "defaultMessage": "home" + }, + "other": { + "id": "option.faxNumberTypes.other", + "defaultMessage": "other" + } + } + }, + "webAddressTypes": { + "values": [ + "business", + "personal", + "other" + ], + "messages": { + "business": { + "id": "option.webAddressTypes.business", + "defaultMessage": "business" + }, + "personal": { + "id": "option.webAddressTypes.personal", + "defaultMessage": "personal" + }, + "other": { + "id": "option.webAddressTypes.other", + "defaultMessage": "other" + } + } + }, + "addressTypes": { + "values": [ + "business", + "home", + "other" + ], + "messages": { + "business": { + "id": "option.addressTypes.business", + "defaultMessage": "business" + }, + "home": { + "id": "option.addressTypes.home", + "defaultMessage": "home" + }, + "other": { + "id": "option.addressTypes.other", + "defaultMessage": "other" + } + } + }, + "addressCountries": { + "values": [ + "AX", + "AF", + "AL", + "DZ", + "AS", + "AD", + "AO", + "AI", + "AQ", + "AG", + "AR", + "AM", + "AW", + "AU", + "AT", + "AZ", + "BS", + "BH", + "BD", + "BB", + "BY", + "BE", + "BZ", + "BJ", + "BM", + "BT", + "BO", + "BQ", + "BA", + "BW", + "BV", + "BR", + "IO", + "BN", + "BG", + "BF", + "BI", + "KH", + "CM", + "CA", + "CV", + "KY", + "CF", + "TD", + "CL", + "CN", + "CX", + "CC", + "CO", + "KM", + "CG", + "CD", + "CK", + "CR", + "CI", + "HR", + "CU", + "CW", + "CY", + "CZ", + "DK", + "DJ", + "DM", + "DO", + "EC", + "EG", + "SV", + "GQ", + "ER", + "EE", + "ET", + "FK", + "FO", + "FJ", + "FI", + "FR", + "GF", + "PF", + "TF", + "GA", + "GM", + "GE", + "DE", + "GH", + "GI", + "GR", + "GL", + "GD", + "GP", + "GU", + "GT", + "GG", + "GN", + "GW", + "GY", + "HT", + "HM", + "VA", + "HN", + "HK", + "HU", + "IS", + "IN", + "ID", + "IR", + "IQ", + "IE", + "IM", + "IL", + "IT", + "JM", + "JP", + "JE", + "JO", + "KZ", + "KE", + "KI", + "KP", + "KR", + "KW", + "KG", + "LA", + "LV", + "LB", + "LS", + "LR", + "LY", + "LI", + "LT", + "LU", + "MO", + "MK", + "MG", + "MW", + "MY", + "MV", + "ML", + "MT", + "MH", + "MQ", + "MR", + "MU", + "YT", + "MX", + "FM", + "MD", + "MC", + "MN", + "ME", + "MS", + "MA", + "MZ", + "MM", + "NA", + "NR", + "NP", + "NL", + "NC", + "NZ", + "NI", + "NE", + "NG", + "NU", + "NF", + "MP", + "NO", + "OM", + "PK", + "PW", + "PS", + "PA", + "PG", + "PY", + "PE", + "PH", + "PN", + "PL", + "PT", + "PR", + "QA", + "RE", + "RO", + "RU", + "RW", + "BL", + "SH", + "KN", + "LC", + "MF", + "PM", + "VC", + "WS", + "SM", + "ST", + "SA", + "SN", + "RS", + "SC", + "SL", + "SG", + "SX", + "SK", + "SI", + "SB", + "SO", + "ZA", + "GS", + "SS", + "ES", + "LK", + "SD", + "SR", + "SJ", + "SZ", + "SE", + "CH", + "SY", + "TW", + "TJ", + "TZ", + "TH", + "TL", + "TG", + "TK", + "TO", + "TT", + "TN", + "TR", + "TM", + "TC", + "TV", + "UG", + "UA", + "AE", + "GB", + "US", + "UM", + "UY", + "UZ", + "VU", + "VE", + "VN", + "VG", + "VI", + "WF", + "EH", + "YE", + "ZM", + "ZW" + ], + "messages": { + "AF": { + "id": "option.addressCountries.AF", + "defaultMessage": "Afghanistan" + }, + "AX": { + "id": "option.addressCountries.AX", + "defaultMessage": "Åland Islands" + }, + "AL": { + "id": "option.addressCountries.AL", + "defaultMessage": "Albania" + }, + "DZ": { + "id": "option.addressCountries.DZ", + "defaultMessage": "Algeria" + }, + "AS": { + "id": "option.addressCountries.AS", + "defaultMessage": "American Samoa" + }, + "AD": { + "id": "option.addressCountries.AD", + "defaultMessage": "Andorra" + }, + "AO": { + "id": "option.addressCountries.AO", + "defaultMessage": "Angola" + }, + "AI": { + "id": "option.addressCountries.AI", + "defaultMessage": "Anguilla" + }, + "AQ": { + "id": "option.addressCountries.AQ", + "defaultMessage": "Antarctica" + }, + "AG": { + "id": "option.addressCountries.AG", + "defaultMessage": "Antigua and Barbuda" + }, + "AR": { + "id": "option.addressCountries.AR", + "defaultMessage": "Argentina" + }, + "AM": { + "id": "option.addressCountries.AM", + "defaultMessage": "Armenia" + }, + "AW": { + "id": "option.addressCountries.AW", + "defaultMessage": "Aruba" + }, + "AU": { + "id": "option.addressCountries.AU", + "defaultMessage": "Australia" + }, + "AT": { + "id": "option.addressCountries.AT", + "defaultMessage": "Austria" + }, + "AZ": { + "id": "option.addressCountries.AZ", + "defaultMessage": "Azerbaijan" + }, + "BS": { + "id": "option.addressCountries.BS", + "defaultMessage": "Bahamas (the)" + }, + "BH": { + "id": "option.addressCountries.BH", + "defaultMessage": "Bahrain" + }, + "BD": { + "id": "option.addressCountries.BD", + "defaultMessage": "Bangladesh" + }, + "BB": { + "id": "option.addressCountries.BB", + "defaultMessage": "Barbados" + }, + "BY": { + "id": "option.addressCountries.BY", + "defaultMessage": "Belarus" + }, + "BE": { + "id": "option.addressCountries.BE", + "defaultMessage": "Belgium" + }, + "BZ": { + "id": "option.addressCountries.BZ", + "defaultMessage": "Belize" + }, + "BJ": { + "id": "option.addressCountries.BJ", + "defaultMessage": "Benin" + }, + "BM": { + "id": "option.addressCountries.BM", + "defaultMessage": "Bermuda" + }, + "BT": { + "id": "option.addressCountries.BT", + "defaultMessage": "Bhutan" + }, + "BO": { + "id": "option.addressCountries.BO", + "defaultMessage": "Bolivia (Plurinational State of)" + }, + "BQ": { + "id": "option.addressCountries.BQ", + "defaultMessage": "Bonaire, Sint Eustatius and Saba" + }, + "BA": { + "id": "option.addressCountries.BA", + "defaultMessage": "Bosnia and Herzegovina" + }, + "BW": { + "id": "option.addressCountries.BW", + "defaultMessage": "Botswana" + }, + "BV": { + "id": "option.addressCountries.BV", + "defaultMessage": "Bouvet Island" + }, + "BR": { + "id": "option.addressCountries.BR", + "defaultMessage": "Brazil" + }, + "IO": { + "id": "option.addressCountries.IO", + "defaultMessage": "British Indian Ocean Territory (the)" + }, + "BN": { + "id": "option.addressCountries.BN", + "defaultMessage": "Brunei Darussalam" + }, + "BG": { + "id": "option.addressCountries.BG", + "defaultMessage": "Bulgaria" + }, + "BF": { + "id": "option.addressCountries.BF", + "defaultMessage": "Burkina Faso" + }, + "BI": { + "id": "option.addressCountries.BI", + "defaultMessage": "Burundi" + }, + "KH": { + "id": "option.addressCountries.KH", + "defaultMessage": "Cambodia" + }, + "CM": { + "id": "option.addressCountries.CM", + "defaultMessage": "Cameroon" + }, + "CA": { + "id": "option.addressCountries.CA", + "defaultMessage": "Canada" + }, + "CV": { + "id": "option.addressCountries.CV", + "defaultMessage": "Cape Verde" + }, + "KY": { + "id": "option.addressCountries.KY", + "defaultMessage": "Cayman Islands (the)" + }, + "CF": { + "id": "option.addressCountries.CF", + "defaultMessage": "Central African Republic (the)" + }, + "TD": { + "id": "option.addressCountries.TD", + "defaultMessage": "Chad" + }, + "CL": { + "id": "option.addressCountries.CL", + "defaultMessage": "Chile" + }, + "CN": { + "id": "option.addressCountries.CN", + "defaultMessage": "China" + }, + "CX": { + "id": "option.addressCountries.CX", + "defaultMessage": "Christmas Island" + }, + "CC": { + "id": "option.addressCountries.CC", + "defaultMessage": "Cocos (Keeling) Islands (the)" + }, + "CO": { + "id": "option.addressCountries.CO", + "defaultMessage": "Colombia" + }, + "KM": { + "id": "option.addressCountries.KM", + "defaultMessage": "Comoros (the)" + }, + "CG": { + "id": "option.addressCountries.CG", + "defaultMessage": "Congo (the)" + }, + "CD": { + "id": "option.addressCountries.CD", + "defaultMessage": "Congo (the Democratic Republic of the)" + }, + "CK": { + "id": "option.addressCountries.CK", + "defaultMessage": "Cook Islands (the)" + }, + "CR": { + "id": "option.addressCountries.CR", + "defaultMessage": "Costa Rica" + }, + "CI": { + "id": "option.addressCountries.CI", + "defaultMessage": "Côte d'Ivoire" + }, + "HR": { + "id": "option.addressCountries.HR", + "defaultMessage": "Croatia" + }, + "CU": { + "id": "option.addressCountries.CU", + "defaultMessage": "Cuba" + }, + "CW": { + "id": "option.addressCountries.CW", + "defaultMessage": "Curaçao" + }, + "CY": { + "id": "option.addressCountries.CY", + "defaultMessage": "Cyprus" + }, + "CZ": { + "id": "option.addressCountries.CZ", + "defaultMessage": "Czechia" + }, + "DK": { + "id": "option.addressCountries.DK", + "defaultMessage": "Denmark" + }, + "DJ": { + "id": "option.addressCountries.DJ", + "defaultMessage": "Djibouti" + }, + "DM": { + "id": "option.addressCountries.DM", + "defaultMessage": "Dominica" + }, + "DO": { + "id": "option.addressCountries.DO", + "defaultMessage": "Dominican Republic (the)" + }, + "EC": { + "id": "option.addressCountries.EC", + "defaultMessage": "Ecuador" + }, + "EG": { + "id": "option.addressCountries.EG", + "defaultMessage": "Egypt" + }, + "SV": { + "id": "option.addressCountries.SV", + "defaultMessage": "El Salvador" + }, + "GQ": { + "id": "option.addressCountries.GQ", + "defaultMessage": "Equatorial Guinea" + }, + "ER": { + "id": "option.addressCountries.ER", + "defaultMessage": "Eritrea" + }, + "EE": { + "id": "option.addressCountries.EE", + "defaultMessage": "Estonia" + }, + "ET": { + "id": "option.addressCountries.ET", + "defaultMessage": "Ethiopia" + }, + "FK": { + "id": "option.addressCountries.FK", + "defaultMessage": "Falkland Islands (the) [Malvinas]" + }, + "FO": { + "id": "option.addressCountries.FO", + "defaultMessage": "Faroe Islands (the)" + }, + "FJ": { + "id": "option.addressCountries.FJ", + "defaultMessage": "Fiji" + }, + "FI": { + "id": "option.addressCountries.FI", + "defaultMessage": "Finland" + }, + "FR": { + "id": "option.addressCountries.FR", + "defaultMessage": "France" + }, + "GF": { + "id": "option.addressCountries.GF", + "defaultMessage": "French Guiana" + }, + "PF": { + "id": "option.addressCountries.PF", + "defaultMessage": "French Polynesia" + }, + "TF": { + "id": "option.addressCountries.TF", + "defaultMessage": "French Southern Territories (the)" + }, + "GA": { + "id": "option.addressCountries.GA", + "defaultMessage": "Gabon" + }, + "GM": { + "id": "option.addressCountries.GM", + "defaultMessage": "Gambia (the)" + }, + "GE": { + "id": "option.addressCountries.GE", + "defaultMessage": "Georgia" + }, + "DE": { + "id": "option.addressCountries.DE", + "defaultMessage": "Germany" + }, + "GH": { + "id": "option.addressCountries.GH", + "defaultMessage": "Ghana" + }, + "GI": { + "id": "option.addressCountries.GI", + "defaultMessage": "Gibraltar" + }, + "GR": { + "id": "option.addressCountries.GR", + "defaultMessage": "Greece" + }, + "GL": { + "id": "option.addressCountries.GL", + "defaultMessage": "Greenland" + }, + "GD": { + "id": "option.addressCountries.GD", + "defaultMessage": "Grenada" + }, + "GP": { + "id": "option.addressCountries.GP", + "defaultMessage": "Guadeloupe" + }, + "GU": { + "id": "option.addressCountries.GU", + "defaultMessage": "Guam" + }, + "GT": { + "id": "option.addressCountries.GT", + "defaultMessage": "Guatemala" + }, + "GG": { + "id": "option.addressCountries.GG", + "defaultMessage": "Guernsey" + }, + "GN": { + "id": "option.addressCountries.GN", + "defaultMessage": "Guinea" + }, + "GW": { + "id": "option.addressCountries.GW", + "defaultMessage": "Guinea-Bissau" + }, + "GY": { + "id": "option.addressCountries.GY", + "defaultMessage": "Guyana" + }, + "HT": { + "id": "option.addressCountries.HT", + "defaultMessage": "Haiti" + }, + "HM": { + "id": "option.addressCountries.HM", + "defaultMessage": "Heard Island and McDonald Islands" + }, + "VA": { + "id": "option.addressCountries.VA", + "defaultMessage": "Holy See (the)" + }, + "HN": { + "id": "option.addressCountries.HN", + "defaultMessage": "Honduras" + }, + "HK": { + "id": "option.addressCountries.HK", + "defaultMessage": "Hong Kong" + }, + "HU": { + "id": "option.addressCountries.HU", + "defaultMessage": "Hungary" + }, + "IS": { + "id": "option.addressCountries.IS", + "defaultMessage": "Iceland" + }, + "IN": { + "id": "option.addressCountries.IN", + "defaultMessage": "India" + }, + "ID": { + "id": "option.addressCountries.ID", + "defaultMessage": "Indonesia" + }, + "IR": { + "id": "option.addressCountries.IR", + "defaultMessage": "Iran (Islamic Republic of)" + }, + "IQ": { + "id": "option.addressCountries.IQ", + "defaultMessage": "Iraq" + }, + "IE": { + "id": "option.addressCountries.IE", + "defaultMessage": "Ireland" + }, + "IM": { + "id": "option.addressCountries.IM", + "defaultMessage": "Isle of Man" + }, + "IL": { + "id": "option.addressCountries.IL", + "defaultMessage": "Israel" + }, + "IT": { + "id": "option.addressCountries.IT", + "defaultMessage": "Italy" + }, + "JM": { + "id": "option.addressCountries.JM", + "defaultMessage": "Jamaica" + }, + "JP": { + "id": "option.addressCountries.JP", + "defaultMessage": "Japan" + }, + "JE": { + "id": "option.addressCountries.JE", + "defaultMessage": "Jersey" + }, + "JO": { + "id": "option.addressCountries.JO", + "defaultMessage": "Jordan" + }, + "KZ": { + "id": "option.addressCountries.KZ", + "defaultMessage": "Kazakhstan" + }, + "KE": { + "id": "option.addressCountries.KE", + "defaultMessage": "Kenya" + }, + "KI": { + "id": "option.addressCountries.KI", + "defaultMessage": "Kiribati" + }, + "KP": { + "id": "option.addressCountries.KP", + "defaultMessage": "Korea (the Democratic People's Republic of)" + }, + "KR": { + "id": "option.addressCountries.KR", + "defaultMessage": "Korea (the Republic of)" + }, + "KW": { + "id": "option.addressCountries.KW", + "defaultMessage": "Kuwait" + }, + "KG": { + "id": "option.addressCountries.KG", + "defaultMessage": "Kyrgyzstan" + }, + "LA": { + "id": "option.addressCountries.LA", + "defaultMessage": "Lao People's Democratic Republic (the)" + }, + "LV": { + "id": "option.addressCountries.LV", + "defaultMessage": "Latvia" + }, + "LB": { + "id": "option.addressCountries.LB", + "defaultMessage": "Lebanon" + }, + "LS": { + "id": "option.addressCountries.LS", + "defaultMessage": "Lesotho" + }, + "LR": { + "id": "option.addressCountries.LR", + "defaultMessage": "Liberia" + }, + "LY": { + "id": "option.addressCountries.LY", + "defaultMessage": "Libya" + }, + "LI": { + "id": "option.addressCountries.LI", + "defaultMessage": "Liechtenstein" + }, + "LT": { + "id": "option.addressCountries.LT", + "defaultMessage": "Lithuania" + }, + "LU": { + "id": "option.addressCountries.LU", + "defaultMessage": "Luxembourg" + }, + "MO": { + "id": "option.addressCountries.MO", + "defaultMessage": "Macao" + }, + "MK": { + "id": "option.addressCountries.MK", + "defaultMessage": "Macedonia (the former Yugoslav Republic of)" + }, + "MG": { + "id": "option.addressCountries.MG", + "defaultMessage": "Madagascar" + }, + "MW": { + "id": "option.addressCountries.MW", + "defaultMessage": "Malawi" + }, + "MY": { + "id": "option.addressCountries.MY", + "defaultMessage": "Malaysia" + }, + "MV": { + "id": "option.addressCountries.MV", + "defaultMessage": "Maldives" + }, + "ML": { + "id": "option.addressCountries.ML", + "defaultMessage": "Mali" + }, + "MT": { + "id": "option.addressCountries.MT", + "defaultMessage": "Malta" + }, + "MH": { + "id": "option.addressCountries.MH", + "defaultMessage": "Marshall Islands (the)" + }, + "MQ": { + "id": "option.addressCountries.MQ", + "defaultMessage": "Martinique" + }, + "MR": { + "id": "option.addressCountries.MR", + "defaultMessage": "Mauritania" + }, + "MU": { + "id": "option.addressCountries.MU", + "defaultMessage": "Mauritius" + }, + "YT": { + "id": "option.addressCountries.YT", + "defaultMessage": "Mayotte" + }, + "MX": { + "id": "option.addressCountries.MX", + "defaultMessage": "Mexico" + }, + "FM": { + "id": "option.addressCountries.FM", + "defaultMessage": "Micronesia (Federated States of)" + }, + "MD": { + "id": "option.addressCountries.MD", + "defaultMessage": "Moldova (the Republic of)" + }, + "MC": { + "id": "option.addressCountries.MC", + "defaultMessage": "Monaco" + }, + "MN": { + "id": "option.addressCountries.MN", + "defaultMessage": "Mongolia" + }, + "ME": { + "id": "option.addressCountries.ME", + "defaultMessage": "Montenegro" + }, + "MS": { + "id": "option.addressCountries.MS", + "defaultMessage": "Montserrat" + }, + "MA": { + "id": "option.addressCountries.MA", + "defaultMessage": "Morocco" + }, + "MZ": { + "id": "option.addressCountries.MZ", + "defaultMessage": "Mozambique" + }, + "MM": { + "id": "option.addressCountries.MM", + "defaultMessage": "Myanmar" + }, + "NA": { + "id": "option.addressCountries.NA", + "defaultMessage": "Namibia" + }, + "NR": { + "id": "option.addressCountries.NR", + "defaultMessage": "Nauru" + }, + "NP": { + "id": "option.addressCountries.NP", + "defaultMessage": "Nepal" + }, + "NL": { + "id": "option.addressCountries.NL", + "defaultMessage": "Netherlands (the)" + }, + "NC": { + "id": "option.addressCountries.NC", + "defaultMessage": "New Caledonia" + }, + "NZ": { + "id": "option.addressCountries.NZ", + "defaultMessage": "New Zealand" + }, + "NI": { + "id": "option.addressCountries.NI", + "defaultMessage": "Nicaragua" + }, + "NE": { + "id": "option.addressCountries.NE", + "defaultMessage": "Niger (the)" + }, + "NG": { + "id": "option.addressCountries.NG", + "defaultMessage": "Nigeria" + }, + "NU": { + "id": "option.addressCountries.NU", + "defaultMessage": "Niue" + }, + "NF": { + "id": "option.addressCountries.NF", + "defaultMessage": "Norfolk Island" + }, + "MP": { + "id": "option.addressCountries.MP", + "defaultMessage": "Northern Mariana Islands (the)" + }, + "NO": { + "id": "option.addressCountries.NO", + "defaultMessage": "Norway" + }, + "OM": { + "id": "option.addressCountries.OM", + "defaultMessage": "Oman" + }, + "PK": { + "id": "option.addressCountries.PK", + "defaultMessage": "Pakistan" + }, + "PW": { + "id": "option.addressCountries.PW", + "defaultMessage": "Palau" + }, + "PS": { + "id": "option.addressCountries.PS", + "defaultMessage": "Palestine, State of" + }, + "PA": { + "id": "option.addressCountries.PA", + "defaultMessage": "Panama" + }, + "PG": { + "id": "option.addressCountries.PG", + "defaultMessage": "Papua New Guinea" + }, + "PY": { + "id": "option.addressCountries.PY", + "defaultMessage": "Paraguay" + }, + "PE": { + "id": "option.addressCountries.PE", + "defaultMessage": "Peru" + }, + "PH": { + "id": "option.addressCountries.PH", + "defaultMessage": "Philippines (the)" + }, + "PN": { + "id": "option.addressCountries.PN", + "defaultMessage": "Pitcairn" + }, + "PL": { + "id": "option.addressCountries.PL", + "defaultMessage": "Poland" + }, + "PT": { + "id": "option.addressCountries.PT", + "defaultMessage": "Portugal" + }, + "PR": { + "id": "option.addressCountries.PR", + "defaultMessage": "Puerto Rico" + }, + "QA": { + "id": "option.addressCountries.QA", + "defaultMessage": "Qatar" + }, + "RE": { + "id": "option.addressCountries.RE", + "defaultMessage": "Réunion" + }, + "RO": { + "id": "option.addressCountries.RO", + "defaultMessage": "Romania" + }, + "RU": { + "id": "option.addressCountries.RU", + "defaultMessage": "Russian Federation (the)" + }, + "RW": { + "id": "option.addressCountries.RW", + "defaultMessage": "Rwanda" + }, + "BL": { + "id": "option.addressCountries.BL", + "defaultMessage": "Saint Barthélemy" + }, + "SH": { + "id": "option.addressCountries.SH", + "defaultMessage": "Saint Helena, Ascension and Tristan da Cunha" + }, + "KN": { + "id": "option.addressCountries.KN", + "defaultMessage": "Saint Kitts and Nevis" + }, + "LC": { + "id": "option.addressCountries.LC", + "defaultMessage": "Saint Lucia" + }, + "MF": { + "id": "option.addressCountries.MF", + "defaultMessage": "Saint Martin (French part)" + }, + "PM": { + "id": "option.addressCountries.PM", + "defaultMessage": "Saint Pierre and Miquelon" + }, + "VC": { + "id": "option.addressCountries.VC", + "defaultMessage": "Saint Vincent and the Grenadines" + }, + "WS": { + "id": "option.addressCountries.WS", + "defaultMessage": "Samoa" + }, + "SM": { + "id": "option.addressCountries.SM", + "defaultMessage": "San Marino" + }, + "ST": { + "id": "option.addressCountries.ST", + "defaultMessage": "Sao Tome and Principe" + }, + "SA": { + "id": "option.addressCountries.SA", + "defaultMessage": "Saudi Arabia" + }, + "SN": { + "id": "option.addressCountries.SN", + "defaultMessage": "Senegal" + }, + "RS": { + "id": "option.addressCountries.RS", + "defaultMessage": "Serbia" + }, + "SC": { + "id": "option.addressCountries.SC", + "defaultMessage": "Seychelles" + }, + "SL": { + "id": "option.addressCountries.SL", + "defaultMessage": "Sierra Leone" + }, + "SG": { + "id": "option.addressCountries.SG", + "defaultMessage": "Singapore" + }, + "SX": { + "id": "option.addressCountries.SX", + "defaultMessage": "Sint Maarten (Dutch part)" + }, + "SK": { + "id": "option.addressCountries.SK", + "defaultMessage": "Slovakia" + }, + "SI": { + "id": "option.addressCountries.SI", + "defaultMessage": "Slovenia" + }, + "SB": { + "id": "option.addressCountries.SB", + "defaultMessage": "Solomon Islands" + }, + "SO": { + "id": "option.addressCountries.SO", + "defaultMessage": "Somalia" + }, + "ZA": { + "id": "option.addressCountries.ZA", + "defaultMessage": "South Africa" + }, + "GS": { + "id": "option.addressCountries.GS", + "defaultMessage": "South Georgia and the South Sandwich Islands" + }, + "SS": { + "id": "option.addressCountries.SS", + "defaultMessage": "South Sudan" + }, + "ES": { + "id": "option.addressCountries.ES", + "defaultMessage": "Spain" + }, + "LK": { + "id": "option.addressCountries.LK", + "defaultMessage": "Sri Lanka" + }, + "SD": { + "id": "option.addressCountries.SD", + "defaultMessage": "Sudan (the)" + }, + "SR": { + "id": "option.addressCountries.SR", + "defaultMessage": "Suriname" + }, + "SJ": { + "id": "option.addressCountries.SJ", + "defaultMessage": "Svalbard and Jan Mayen" + }, + "SZ": { + "id": "option.addressCountries.SZ", + "defaultMessage": "Swaziland" + }, + "SE": { + "id": "option.addressCountries.SE", + "defaultMessage": "Sweden" + }, + "CH": { + "id": "option.addressCountries.CH", + "defaultMessage": "Switzerland" + }, + "SY": { + "id": "option.addressCountries.SY", + "defaultMessage": "Syrian Arab Republic" + }, + "TW": { + "id": "option.addressCountries.TW", + "defaultMessage": "Taiwan (Province of China)" + }, + "TJ": { + "id": "option.addressCountries.TJ", + "defaultMessage": "Tajikistan" + }, + "TZ": { + "id": "option.addressCountries.TZ", + "defaultMessage": "Tanzania, United Republic of" + }, + "TH": { + "id": "option.addressCountries.TH", + "defaultMessage": "Thailand" + }, + "TL": { + "id": "option.addressCountries.TL", + "defaultMessage": "Timor-Leste" + }, + "TG": { + "id": "option.addressCountries.TG", + "defaultMessage": "Togo" + }, + "TK": { + "id": "option.addressCountries.TK", + "defaultMessage": "Tokelau" + }, + "TO": { + "id": "option.addressCountries.TO", + "defaultMessage": "Tonga" + }, + "TT": { + "id": "option.addressCountries.TT", + "defaultMessage": "Trinidad and Tobago" + }, + "TN": { + "id": "option.addressCountries.TN", + "defaultMessage": "Tunisia" + }, + "TR": { + "id": "option.addressCountries.TR", + "defaultMessage": "Turkey" + }, + "TM": { + "id": "option.addressCountries.TM", + "defaultMessage": "Turkmenistan" + }, + "TC": { + "id": "option.addressCountries.TC", + "defaultMessage": "Turks and Caicos Islands (the)" + }, + "TV": { + "id": "option.addressCountries.TV", + "defaultMessage": "Tuvalu" + }, + "UG": { + "id": "option.addressCountries.UG", + "defaultMessage": "Uganda" + }, + "UA": { + "id": "option.addressCountries.UA", + "defaultMessage": "Ukraine" + }, + "AE": { + "id": "option.addressCountries.AE", + "defaultMessage": "United Arab Emirates (the)" + }, + "GB": { + "id": "option.addressCountries.GB", + "defaultMessage": "United Kingdom of Great Britain and Northern Ireland (the)" + }, + "US": { + "id": "option.addressCountries.US", + "defaultMessage": "United States of America (the)" + }, + "UM": { + "id": "option.addressCountries.UM", + "defaultMessage": "United States Minor Outlying Islands (the)" + }, + "UY": { + "id": "option.addressCountries.UY", + "defaultMessage": "Uruguay" + }, + "UZ": { + "id": "option.addressCountries.UZ", + "defaultMessage": "Uzbekistan" + }, + "VU": { + "id": "option.addressCountries.VU", + "defaultMessage": "Vanuatu" + }, + "VE": { + "id": "option.addressCountries.VE", + "defaultMessage": "Venezuela (Bolivarian Republic of)" + }, + "VN": { + "id": "option.addressCountries.VN", + "defaultMessage": "Viet Nam" + }, + "VG": { + "id": "option.addressCountries.VG", + "defaultMessage": "Virgin Islands (British)" + }, + "VI": { + "id": "option.addressCountries.VI", + "defaultMessage": "Virgin Islands (U.S.)" + }, + "WF": { + "id": "option.addressCountries.WF", + "defaultMessage": "Wallis and Futuna" + }, + "EH": { + "id": "option.addressCountries.EH", + "defaultMessage": "Western Sahara" + }, + "YE": { + "id": "option.addressCountries.YE", + "defaultMessage": "Yemen" + }, + "ZM": { + "id": "option.addressCountries.ZM", + "defaultMessage": "Zambia" + }, + "ZW": { + "id": "option.addressCountries.ZW", + "defaultMessage": "Zimbabwe" + } + } + }, + "exhibitionConsTreatmentStatuses": { + "values": [ + "Needed", + "Not needed", + "Done" + ], + "messages": { + "Needed": { + "id": "option.exhibitionConsTreatmentStatuses.Needed", + "defaultMessage": "needed" + }, + "Not needed": { + "id": "option.exhibitionConsTreatmentStatuses.Not needed", + "defaultMessage": "not needed" + }, + "Done": { + "id": "option.exhibitionConsTreatmentStatuses.Done", + "defaultMessage": "done" + } + } + }, + "exhibitionMountStatuses": { + "values": [ + "Needed", + "Not needed", + "Done" + ], + "messages": { + "Needed": { + "id": "option.exhibitionMountStatuses.Needed", + "defaultMessage": "needed" + }, + "Not needed": { + "id": "option.exhibitionMountStatuses.Not needed", + "defaultMessage": "not needed" + }, + "Done": { + "id": "option.exhibitionMountStatuses.Done", + "defaultMessage": "done" + } + } + }, + "entryReasons": { + "values": [ + "loan", + "referral" + ], + "messages": { + "enquiry": { + "id": "option.entryReasons.enquiry", + "defaultMessage": "enquiry" + }, + "consideration": { + "id": "option.entryReasons.consideration", + "defaultMessage": "consideration" + }, + "commission": { + "id": "option.entryReasons.commission", + "defaultMessage": "commission" + }, + "loan": { + "id": "option.entryReasons.loan", + "defaultMessage": "loan" + }, + "referral": { + "id": "option.entryReasons.referral", + "defaultMessage": "referral" + } + } + }, + "installationType": { + "values": [ + "installation", + "deinstallation", + "exhibition", + "exhibition update" + ], + "messages": { + "installation": { + "id": "option.installationType.installation", + "defaultMessage": "installation" + }, + "deinstallation": { + "id": "option.installationType.deinstallation", + "defaultMessage": "deinstallation" + }, + "exhibition": { + "id": "option.installationType.exhibition", + "defaultMessage": "exhibition" + }, + "exhibition update": { + "id": "option.installationType.exhibition update", + "defaultMessage": "exhibition update" + } + } + }, + "iterationSuccess": { + "values": [ + "yes", + "no", + "partially" + ], + "messages": { + "yes": { + "id": "option.iterationSuccess.yes", + "defaultMessage": "yes" + }, + "no": { + "id": "option.iterationSuccess.no", + "defaultMessage": "no" + }, + "partially": { + "id": "option.iterationSuccess.partially", + "defaultMessage": "partially" + } + } + }, + "locationTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.locationTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.locationTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.locationTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "locationTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.locationTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.locationTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.locationTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.locationTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "mediaTypes": { + "values": [ + "dataset", + "document", + "moving_image", + "still_image", + "sound" + ], + "messages": { + "dataset": { + "id": "option.mediaTypes.dataset", + "defaultMessage": "dataset" + }, + "document": { + "id": "option.mediaTypes.document", + "defaultMessage": "document" + }, + "moving_image": { + "id": "option.mediaTypes.moving_image", + "defaultMessage": "moving image" + }, + "still_image": { + "id": "option.mediaTypes.still_image", + "defaultMessage": "still image" + }, + "sound": { + "id": "option.mediaTypes.sound", + "defaultMessage": "sound" + } + } + }, + "locationFitnesses": { + "values": [ + "dangerous", + "suitable", + "temporary", + "unsuitable" + ], + "messages": { + "dangerous": { + "id": "option.locationFitnesses.dangerous", + "defaultMessage": "dangerous" + }, + "suitable": { + "id": "option.locationFitnesses.suitable", + "defaultMessage": "suitable" + }, + "temporary": { + "id": "option.locationFitnesses.temporary", + "defaultMessage": "temporary" + }, + "unsuitable": { + "id": "option.locationFitnesses.unsuitable", + "defaultMessage": "unsuitable" + } + } + }, + "moveReasons": { + "values": [ + "collections-facility-move", + "conservation", + "exhibition", + "inventory", + "loan", + "newstoragelocation", + "photography", + "research" + ], + "messages": { + "collections-facility-move": { + "id": "option.moveReasons.collections-facility-move", + "defaultMessage": "collections facility move" + }, + "conservation": { + "id": "option.moveReasons.conservation", + "defaultMessage": "conservation" + }, + "exhibition": { + "id": "option.moveReasons.exhibition", + "defaultMessage": "exhibition" + }, + "inventory": { + "id": "option.moveReasons.inventory", + "defaultMessage": "inventory" + }, + "loan": { + "id": "option.moveReasons.loan", + "defaultMessage": "loan" + }, + "newstoragelocation": { + "id": "option.moveReasons.newstoragelocation", + "defaultMessage": "new storage location" + }, + "photography": { + "id": "option.moveReasons.photography", + "defaultMessage": "photography" + }, + "research": { + "id": "option.moveReasons.research", + "defaultMessage": "research" + } + } + }, + "moveMethods": { + "values": [ + "40\" textile box", + "60\" textile box", + "bin box", + "blanket wrapped", + "crate", + "custom box", + "custom mount", + "drawer", + "fragile", + "garment rack", + "handcarried", + "hazardous", + "heavy", + "large banker's box", + "pallet", + "small banker's box", + "speed pack" + ], + "messages": { + "forklift": { + "id": "option.moveMethods.forklift", + "defaultMessage": "forklift" + }, + "handcarried": { + "id": "option.moveMethods.handcarried", + "defaultMessage": "hand carry" + }, + "trolley": { + "id": "option.moveMethods.trolley", + "defaultMessage": "trolley" + }, + "40\" textile box": { + "id": "option.moveMethods.40\" textile box", + "defaultMessage": "40\" textile box" + }, + "60\" textile box": { + "id": "option.moveMethods.60\" textile box", + "defaultMessage": "60\" textile box" + }, + "bin box": { + "id": "option.moveMethods.bin box", + "defaultMessage": "bin box" + }, + "blanket wrapped": { + "id": "option.moveMethods.blanket wrapped", + "defaultMessage": "blanket wrapped" + }, + "crate": { + "id": "option.moveMethods.crate", + "defaultMessage": "crate" + }, + "custom box": { + "id": "option.moveMethods.custom box", + "defaultMessage": "custom box" + }, + "custom mount": { + "id": "option.moveMethods.custom mount", + "defaultMessage": "custom mount" + }, + "drawer": { + "id": "option.moveMethods.drawer", + "defaultMessage": "drawer" + }, + "fragile": { + "id": "option.moveMethods.fragile", + "defaultMessage": "fragile" + }, + "garment rack": { + "id": "option.moveMethods.garment rack", + "defaultMessage": "garment rack" + }, + "hazardous": { + "id": "option.moveMethods.hazardous", + "defaultMessage": "hazardous" + }, + "heavy": { + "id": "option.moveMethods.heavy", + "defaultMessage": "heavy" + }, + "large banker's box": { + "id": "option.moveMethods.large banker's box", + "defaultMessage": "large banker's box" + }, + "pallet": { + "id": "option.moveMethods.pallet", + "defaultMessage": "pallet" + }, + "small banker's box": { + "id": "option.moveMethods.small banker's box", + "defaultMessage": "small banker's box" + }, + "speed pack": { + "id": "option.moveMethods.speed pack", + "defaultMessage": "speed pack" + } + } + }, + "invActions": { + "values": [ + "conservation", + "preservation", + "re-housing" + ], + "messages": { + "conservation": { + "id": "option.invActions.conservation", + "defaultMessage": "conservation" + }, + "preservation": { + "id": "option.invActions.preservation", + "defaultMessage": "preservation" + }, + "re-housing": { + "id": "option.invActions.re-housing", + "defaultMessage": "re-housing" + } + } + }, + "invFreqs": { + "values": [ + "daily", + "weekly", + "monthly", + "semi-annually", + "annually" + ], + "messages": { + "daily": { + "id": "option.invFreqs.daily", + "defaultMessage": "daily" + }, + "weekly": { + "id": "option.invFreqs.weekly", + "defaultMessage": "weekly" + }, + "monthly": { + "id": "option.invFreqs.monthly", + "defaultMessage": "monthly" + }, + "semi-annually": { + "id": "option.invFreqs.semi-annually", + "defaultMessage": "semi-annually" + }, + "annually": { + "id": "option.invFreqs.annually", + "defaultMessage": "annually" + } + } + }, + "exitReasons": { + "values": [ + "noLongerUseful", + "notCollectionThemed", + "deteriorated", + "cantPreserve", + "betterExampleExists", + "nagpraRepatriation" + ], + "messages": { + "deaccession": { + "id": "option.exitReasons.deaccession", + "defaultMessage": "deaccession" + }, + "disposal": { + "id": "option.exitReasons.disposal", + "defaultMessage": "disposal" + }, + "returnofloan": { + "id": "option.exitReasons.returnofloan", + "defaultMessage": "return of loan" + }, + "noLongerUseful": { + "id": "option.exitReasons.noLongerUseful", + "defaultMessage": "no longer useful to the organization purpose" + }, + "notCollectionThemed": { + "id": "option.exitReasons.notCollectionThemed", + "defaultMessage": "does not address collecting themes" + }, + "deteriorated": { + "id": "option.exitReasons.deteriorated", + "defaultMessage": "has deteriorated beyond usefulness" + }, + "cantPreserve": { + "id": "option.exitReasons.cantPreserve", + "defaultMessage": "can no longer be preserved" + }, + "betterExampleExists": { + "id": "option.exitReasons.betterExampleExists", + "defaultMessage": "Is represented by a better example" + }, + "nagpraRepatriation": { + "id": "option.exitReasons.nagpraRepatriation", + "defaultMessage": "NAGPRA repatriation" + } + } + }, + "exitMethods": { + "values": [ + "deaccession", + "disposal", + "transfer" + ], + "messages": { + "courier": { + "id": "option.exitMethods.courier", + "defaultMessage": "courier" + }, + "inperson": { + "id": "option.exitMethods.inperson", + "defaultMessage": "in person" + }, + "post": { + "id": "option.exitMethods.post", + "defaultMessage": "post" + }, + "deaccession": { + "id": "option.exitMethods.deaccession", + "defaultMessage": "deaccession" + }, + "disposal": { + "id": "option.exitMethods.disposal", + "defaultMessage": "disposal" + }, + "transfer": { + "id": "option.exitMethods.transfer", + "defaultMessage": "transfer" + } + } + }, + "orgTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.orgTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.orgTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.orgTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "orgTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.orgTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.orgTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.orgTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.orgTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "personTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.personTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.personTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.personTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.personTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "personTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.personTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.personTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.personTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "salutations": { + "values": [ + "dear", + "hello", + "to" + ], + "messages": { + "dear": { + "id": "option.salutations.dear", + "defaultMessage": "Dear" + }, + "hello": { + "id": "option.salutations.hello", + "defaultMessage": "Hello" + }, + "to": { + "id": "option.salutations.to", + "defaultMessage": "To" + } + } + }, + "personTitles": { + "values": [ + "Admiral", + "Baron", + "Baroness", + "Captain", + "Commander", + "Commodore", + "Count", + "Countess", + "Dame", + "Detective", + "Dr", + "General", + "Governor", + "Honorable", + "Judge", + "King", + "Lady", + "Lieutenant", + "Lord", + "Miss", + "Mr", + "Mrs", + "Ms", + "Prince", + "Princess", + "Professor", + "Queen", + "Reverend", + "Saint", + "Sergeant", + "Sir" + ], + "messages": { + "Admiral": { + "id": "option.personTitles.Admiral", + "defaultMessage": "Admiral" + }, + "Baron": { + "id": "option.personTitles.Baron", + "defaultMessage": "Baron" + }, + "Baroness": { + "id": "option.personTitles.Baroness", + "defaultMessage": "Baroness" + }, + "Captain": { + "id": "option.personTitles.Captain", + "defaultMessage": "Captain" + }, + "Commander": { + "id": "option.personTitles.Commander", + "defaultMessage": "Commander" + }, + "Commodore": { + "id": "option.personTitles.Commodore", + "defaultMessage": "Commodore" + }, + "Count": { + "id": "option.personTitles.Count", + "defaultMessage": "Count" + }, + "Countess": { + "id": "option.personTitles.Countess", + "defaultMessage": "Countess" + }, + "Dame": { + "id": "option.personTitles.Dame", + "defaultMessage": "Dame" + }, + "Dr": { + "id": "option.personTitles.Dr", + "defaultMessage": "Dr" + }, + "General": { + "id": "option.personTitles.General", + "defaultMessage": "General" + }, + "Governor": { + "id": "option.personTitles.Governor", + "defaultMessage": "Governor" + }, + "Honorable": { + "id": "option.personTitles.Honorable", + "defaultMessage": "Honorable" + }, + "Judge": { + "id": "option.personTitles.Judge", + "defaultMessage": "Judge" + }, + "King": { + "id": "option.personTitles.King", + "defaultMessage": "King" + }, + "Lady": { + "id": "option.personTitles.Lady", + "defaultMessage": "Lady" + }, + "Lord": { + "id": "option.personTitles.Lord", + "defaultMessage": "Lord" + }, + "Miss": { + "id": "option.personTitles.Miss", + "defaultMessage": "Miss" + }, + "Mr": { + "id": "option.personTitles.Mr", + "defaultMessage": "Mr" + }, + "Mrs": { + "id": "option.personTitles.Mrs", + "defaultMessage": "Mrs" + }, + "Ms": { + "id": "option.personTitles.Ms", + "defaultMessage": "Ms" + }, + "Prince": { + "id": "option.personTitles.Prince", + "defaultMessage": "Prince" + }, + "Princess": { + "id": "option.personTitles.Princess", + "defaultMessage": "Princess" + }, + "Professor": { + "id": "option.personTitles.Professor", + "defaultMessage": "Professor" + }, + "Queen": { + "id": "option.personTitles.Queen", + "defaultMessage": "Queen" + }, + "Reverend": { + "id": "option.personTitles.Reverend", + "defaultMessage": "Reverend" + }, + "Saint": { + "id": "option.personTitles.Saint", + "defaultMessage": "Saint" + }, + "Sir": { + "id": "option.personTitles.Sir", + "defaultMessage": "Sir" + }, + "Detective": { + "id": "option.personTitles.Detective", + "defaultMessage": "Detective" + }, + "Lieutenant": { + "id": "option.personTitles.Lieutenant", + "defaultMessage": "Lieutenant" + }, + "Sergeant": { + "id": "option.personTitles.Sergeant", + "defaultMessage": "Sergeant" + } + } + }, + "genders": { + "values": [ + "agender", + "bigender", + "dyadic", + "female", + "feminine", + "gender-fluid", + "gender-neutral", + "gender-non-binary", + "genderqueer", + "intersex", + "male", + "masculine", + "pansexual", + "polygender", + "questioning", + "transgender", + "transsexual", + "two-spirit" + ], + "messages": { + "agender": { + "id": "option.genders.agender", + "defaultMessage": "agender" + }, + "bigender": { + "id": "option.genders.bigender", + "defaultMessage": "bigender" + }, + "dyadic": { + "id": "option.genders.dyadic", + "defaultMessage": "dyadic" + }, + "female": { + "id": "option.genders.female", + "defaultMessage": "female" + }, + "feminine": { + "id": "option.genders.feminine", + "defaultMessage": "feminine" + }, + "gender-fluid": { + "id": "option.genders.gender-fluid", + "defaultMessage": "gender-fluid" + }, + "gender-neutral": { + "id": "option.genders.gender-neutral", + "defaultMessage": "gender-neutral" + }, + "gender-non-binary": { + "id": "option.genders.gender-non-binary", + "defaultMessage": "gender non-binary" + }, + "genderqueer": { + "id": "option.genders.genderqueer", + "defaultMessage": "genderqueer" + }, + "intersex": { + "id": "option.genders.intersex", + "defaultMessage": "intersex" + }, + "male": { + "id": "option.genders.male", + "defaultMessage": "male" + }, + "masculine": { + "id": "option.genders.masculine", + "defaultMessage": "masculine" + }, + "pansexual": { + "id": "option.genders.pansexual", + "defaultMessage": "pansexual" + }, + "polygender": { + "id": "option.genders.polygender", + "defaultMessage": "polygender" + }, + "questioning": { + "id": "option.genders.questioning", + "defaultMessage": "questioning" + }, + "transgender": { + "id": "option.genders.transgender", + "defaultMessage": "transgender" + }, + "transsexual": { + "id": "option.genders.transsexual", + "defaultMessage": "transsexual" + }, + "two-spirit": { + "id": "option.genders.two-spirit", + "defaultMessage": "two-spirit" + } + } + }, + "placeTermTypes": { + "values": [ + "common", + "technical-scientific", + "native", + "non-native", + "local", + "descriptive", + "spelling-variant" + ], + "messages": { + "common": { + "id": "option.placeTermTypes.common", + "defaultMessage": "common name" + }, + "technical-scientific": { + "id": "option.placeTermTypes.technical-scientific", + "defaultMessage": "technical or scientific name" + }, + "native": { + "id": "option.placeTermTypes.native", + "defaultMessage": "native name" + }, + "non-native": { + "id": "option.placeTermTypes.non-native", + "defaultMessage": "non-native name" + }, + "local": { + "id": "option.placeTermTypes.local", + "defaultMessage": "local name" + }, + "descriptive": { + "id": "option.placeTermTypes.descriptive", + "defaultMessage": "descriptive name" + }, + "spelling-variant": { + "id": "option.placeTermTypes.spelling-variant", + "defaultMessage": "spelling variant" + } + } + }, + "placeTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.placeTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.placeTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.placeTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.placeTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "placeHistoricalStatuses": { + "values": [ + "current", + "historical", + "both" + ], + "messages": { + "current": { + "id": "option.placeHistoricalStatuses.current", + "defaultMessage": "current" + }, + "historical": { + "id": "option.placeHistoricalStatuses.historical", + "defaultMessage": "historical" + }, + "both": { + "id": "option.placeHistoricalStatuses.both", + "defaultMessage": "both" + } + } + }, + "placeTypes": { + "values": [ + "autonomous-region", + "borough", + "city", + "collection-site", + "continent", + "country", + "country-code", + "county", + "dependent-state", + "deserted-settlement", + "district-national", + "general-region", + "governorate", + "inhabited-place", + "island", + "island-group", + "localilty", + "metropolitan-area", + "municipality", + "nation", + "national-division", + "neighborhood", + "occupied-territory", + "prefecture", + "province", + "region", + "state", + "state-province", + "territory", + "township", + "union-territory", + "unitary-authority", + "urban-prefecture", + "water-body" + ], + "messages": { + "autonomous-region": { + "id": "option.placeTypes.autonomous-region", + "defaultMessage": "autonomous region" + }, + "borough": { + "id": "option.placeTypes.borough", + "defaultMessage": "borough" + }, + "city": { + "id": "option.placeTypes.city", + "defaultMessage": "city" + }, + "collection-site": { + "id": "option.placeTypes.collection-site", + "defaultMessage": "collection site" + }, + "continent": { + "id": "option.placeTypes.continent", + "defaultMessage": "continent" + }, + "country": { + "id": "option.placeTypes.country", + "defaultMessage": "country" + }, + "country-code": { + "id": "option.placeTypes.country-code", + "defaultMessage": "country code" + }, + "county": { + "id": "option.placeTypes.county", + "defaultMessage": "county" + }, + "dependent-state": { + "id": "option.placeTypes.dependent-state", + "defaultMessage": "dependent state" + }, + "deserted-settlement": { + "id": "option.placeTypes.deserted-settlement", + "defaultMessage": "deserted settlement" + }, + "district-national": { + "id": "option.placeTypes.district-national", + "defaultMessage": "district (national)" + }, + "general-region": { + "id": "option.placeTypes.general-region", + "defaultMessage": "general region" + }, + "governorate": { + "id": "option.placeTypes.governorate", + "defaultMessage": "governorate" + }, + "inhabited-place": { + "id": "option.placeTypes.inhabited-place", + "defaultMessage": "inhabited place" + }, + "island": { + "id": "option.placeTypes.island", + "defaultMessage": "island" + }, + "island-group": { + "id": "option.placeTypes.island-group", + "defaultMessage": "island group" + }, + "localilty": { + "id": "option.placeTypes.locality", + "defaultMessage": "locality" + }, + "metropolitan-area": { + "id": "option.placeTypes.metropolitan-area", + "defaultMessage": "metropolitan area" + }, + "municipality": { + "id": "option.placeTypes.municipality", + "defaultMessage": "municipality" + }, + "nation": { + "id": "option.placeTypes.nation", + "defaultMessage": "nation" + }, + "national-division": { + "id": "option.placeTypes.national-division", + "defaultMessage": "national division" + }, + "neighborhood": { + "id": "option.placeTypes.neighborhood", + "defaultMessage": "neighborhood" + }, + "occupied-territory": { + "id": "option.placeTypes.occupied-territory", + "defaultMessage": "occupied territory" + }, + "prefecture": { + "id": "option.placeTypes.prefecture", + "defaultMessage": "prefecture" + }, + "province": { + "id": "option.placeTypes.province", + "defaultMessage": "province" + }, + "region": { + "id": "option.placeTypes.region", + "defaultMessage": "region" + }, + "state": { + "id": "option.placeTypes.state", + "defaultMessage": "state" + }, + "state-province": { + "id": "option.placeTypes.state-province", + "defaultMessage": "state province" + }, + "territory": { + "id": "option.placeTypes.territory", + "defaultMessage": "territory" + }, + "township": { + "id": "option.placeTypes.township", + "defaultMessage": "township" + }, + "union-territory": { + "id": "option.placeTypes.union-territory", + "defaultMessage": "union territory" + }, + "unitary-authority": { + "id": "option.placeTypes.unitary-authority", + "defaultMessage": "unitary authority" + }, + "urban-prefecture": { + "id": "option.placeTypes.urban-prefecture", + "defaultMessage": "urban prefecture" + }, + "water-body": { + "id": "option.placeTypes.water-body", + "defaultMessage": "water body" + } + } + }, + "coordinateSystems": { + "values": [ + "altitude-depth", + "latitude-longitude", + "national-grid-reference", + "utm" + ], + "messages": { + "altitude-depth": { + "id": "option.coordinateSystems.altitude-depth", + "defaultMessage": "altitude depth" + }, + "latitude-longitude": { + "id": "option.coordinateSystems.latitude-longitude", + "defaultMessage": "latitude and longitude" + }, + "national-grid-reference": { + "id": "option.coordinateSystems.national-grid-reference", + "defaultMessage": "National Grid reference" + }, + "utm": { + "id": "option.coordinateSystems.utm", + "defaultMessage": "Universal Transverse Mercator (UTM)" + } + } + }, + "spatialRefSystems": { + "values": [ + "epsg4326-wgs84", + "epsg4269-nad83", + "epsg4267-nad27", + "unknown" + ], + "messages": { + "epsg4326-wgs84": { + "id": "option.spatialRefSystems.epsg4326-wgs84", + "defaultMessage": "EPSG:4326-WGS84" + }, + "epsg4269-nad83": { + "id": "option.spatialRefSystems.epsg4269-nad83", + "defaultMessage": "EPSG:4269-NAD83" + }, + "epsg4267-nad27": { + "id": "option.spatialRefSystems.epsg4267-nad27", + "defaultMessage": "EPSG:4267-NAD27" + }, + "unknown": { + "id": "option.spatialRefSystems.unknown", + "defaultMessage": "unknown" + } + } + }, + "localityUnits": { + "values": [ + "acres", + "centimeters", + "feet", + "hectares", + "inches", + "kilometers", + "meters", + "miles", + "millimeters", + "square-feet", + "square-meters", + "square-yards", + "stories" + ], + "messages": { + "acres": { + "id": "option.localityUnits.acres", + "defaultMessage": "acres" + }, + "centimeters": { + "id": "option.localityUnits.centimeters", + "defaultMessage": "centimeters" + }, + "feet": { + "id": "option.localityUnits.feet", + "defaultMessage": "feet" + }, + "hectares": { + "id": "option.localityUnits.hectares", + "defaultMessage": "hectares" + }, + "inches": { + "id": "option.localityUnits.inches", + "defaultMessage": "inches" + }, + "kilometers": { + "id": "option.localityUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.localityUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.localityUnits.miles", + "defaultMessage": "miles" + }, + "millimeters": { + "id": "option.localityUnits.millimeters", + "defaultMessage": "millimeters" + }, + "square-feet": { + "id": "option.localityUnits.square-feet", + "defaultMessage": "square feet" + }, + "square-meters": { + "id": "option.localityUnits.square-meters", + "defaultMessage": "square meters" + }, + "square-yards": { + "id": "option.localityUnits.square-yards", + "defaultMessage": "square yards" + }, + "stories": { + "id": "option.localityUnits.stories", + "defaultMessage": "stories" + } + } + }, + "geodeticDatums": { + "values": [ + "Not Recorded", + "ADG66", + "NAD27", + "NAD83", + "NAD83&WGS84", + "WGS84" + ], + "messages": { + "epsg4326-wgs84": { + "id": "option.geodeticDatums.epsg4326-wgs84", + "defaultMessage": "EPSG:4326-WGS84" + }, + "epsg4269-nad83": { + "id": "option.geodeticDatums.epsg4269-nad83", + "defaultMessage": "EPSG:4269-NAD83" + }, + "epsg4267-nad27": { + "id": "option.geodeticDatums.epsg4267-nad27", + "defaultMessage": "EPSG:4267-NAD27" + }, + "unknown": { + "id": "option.geodeticDatums.unknown", + "defaultMessage": "unknown" + }, + "Not Recorded": { + "id": "option.geodeticDatums.Not Recorded", + "defaultMessage": "not recorded" + }, + "NAD83&WGS84": { + "id": "option.geodeticDatums.NAD83&WGS84", + "defaultMessage": "NAD83 & WGS84" + } + } + }, + "geoRefProtocols": { + "values": [ + "chapman-wieczorek-2006-guide-best-practices-georeferencing", + "manis-herpnet-ornis-georeferencing-guidelines", + "georeferencing-dummies", + "biogeomancer" + ], + "messages": { + "chapman-wieczorek-2006-guide-best-practices-georeferencing": { + "id": "option.geoRefProtocols.chapman-wieczorek-2006-guide-best-practices-georeferencing", + "defaultMessage": "Chapman, Wieczorek 2006, Guide to Best Practices for Georeferencing" + }, + "manis-herpnet-ornis-georeferencing-guidelines": { + "id": "option.geoRefProtocols.manis-herpnet-ornis-georeferencing-guidelines", + "defaultMessage": "MaNIS/HerpNet/ORNIS Georeferencing Guidelines" + }, + "georeferencing-dummies": { + "id": "option.geoRefProtocols.georeferencing-dummies", + "defaultMessage": "Georeferencing For Dummies" + }, + "biogeomancer": { + "id": "option.geoRefProtocols.biogeomancer", + "defaultMessage": "BioGeomancer" + } + } + }, + "geoRefVerificationStatuses": { + "values": [ + "unverified", + "verified-data-custodian", + "verified-contributor" + ], + "messages": { + "unverified": { + "id": "option.geoRefVerificationStatuses.unverified", + "defaultMessage": "unverified" + }, + "verified-data-custodian": { + "id": "option.geoRefVerificationStatuses.verified-data-custodian", + "defaultMessage": "verified by data custodian" + }, + "verified-contributor": { + "id": "option.geoRefVerificationStatuses.verified-contributor", + "defaultMessage": "verified by contributor" + } + } + }, + "transportMethodTypes": { + "values": [ + "cargo aircraft", + "combi aircraft", + "common carrier", + "exclusive-use truck", + "expedited use freight", + "LOFO freight", + "mail", + "non-commercial carrier", + "ocean freight", + "passenger aircraft", + "shuttle service" + ], + "messages": { + "cargo aircraft": { + "id": "option.transportMethodTypes.cargo aircraft", + "defaultMessage": "cargo aircraft" + }, + "combi aircraft": { + "id": "option.transportMethodTypes.combi aircraft", + "defaultMessage": "combi aircraft" + }, + "common carrier": { + "id": "option.transportMethodTypes.common carrier", + "defaultMessage": "common carrier" + }, + "exclusive-use truck": { + "id": "option.transportMethodTypes.exclusive-use truck", + "defaultMessage": "exclusive-use truck" + }, + "expedited use freight": { + "id": "option.transportMethodTypes.expedited use freight", + "defaultMessage": "expedited use freight" + }, + "LOFO freight": { + "id": "option.transportMethodTypes.LOFO freight", + "defaultMessage": "LOFO freight" + }, + "mail": { + "id": "option.transportMethodTypes.mail", + "defaultMessage": "mail" + }, + "non-commercial carrier": { + "id": "option.transportMethodTypes.non-commercial carrier", + "defaultMessage": "non-commercial carrier" + }, + "ocean freight": { + "id": "option.transportMethodTypes.ocean freight", + "defaultMessage": "ocean freight" + }, + "passenger aircraft": { + "id": "option.transportMethodTypes.passenger aircraft", + "defaultMessage": "passenger aircraft" + }, + "shuttle service": { + "id": "option.transportMethodTypes.shuttle service", + "defaultMessage": "shuttle service" + } + } + }, + "reportMimeTypes": { + "values": [ + "application/pdf", + "text/html", + "application/xml", + "application/vnd.ms-excel", + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/vnd.ms-powerpoint", + "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "application/msword", + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "text/csv", + "text/tab-separated-values" + ], + "messages": { + "application/pdf": { + "id": "option.reportMimeTypes.application/pdf", + "defaultMessage": "PDF" + }, + "text/html": { + "id": "option.reportMimeTypes.text/html", + "defaultMessage": "HTML" + }, + "application/xml": { + "id": "option.reportMimeTypes.application/xml", + "defaultMessage": "XML" + }, + "application/vnd.ms-excel": { + "id": "option.reportMimeTypes.application/vnd.ms-excel", + "defaultMessage": "MS Excel (.xls)" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "defaultMessage": "MS Excel (.xlsx)" + }, + "application/vnd.ms-powerpoint": { + "id": "option.reportMimeTypes.application/vnd.ms-powerpoint", + "defaultMessage": "MS PowerPoint (.ppt)" + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.presentationml.presentation", + "defaultMessage": "MS PowerPoint (.pptx)" + }, + "application/msword": { + "id": "option.reportMimeTypes.application/msword", + "defaultMessage": "MS Word (.doc)" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { + "id": "option.reportMimeTypes.application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "defaultMessage": "MS Word (.docx)" + }, + "text/csv": { + "id": "option.reportMimeTypes.text/csv", + "defaultMessage": "CSV" + }, + "text/tab-separated-values": { + "id": "option.reportMimeTypes.text/tab-separated-values", + "defaultMessage": "TSV" + } + } + }, + "valueTypes": { + "values": [ + "Current Value", + "Original Value", + "Replacement Value" + ], + "messages": { + "Current Value": { + "id": "option.valueTypes.Current Value", + "defaultMessage": "current value" + }, + "Original Value": { + "id": "option.valueTypes.Original Value", + "defaultMessage": "original value" + }, + "Replacement Value": { + "id": "option.valueTypes.Replacement Value", + "defaultMessage": "replacement value" + } + } + }, + "vocabTermStatuses": { + "values": [ + "active", + "inactive" + ], + "messages": { + "active": { + "id": "option.vocabTermStatuses.active", + "defaultMessage": "active" + }, + "inactive": { + "id": "option.vocabTermStatuses.inactive", + "defaultMessage": "inactive" + } + } + }, + "workTermStatuses": { + "values": [ + "quickaddedneedsattention", + "inprogress", + "complete" + ], + "messages": { + "quickaddedneedsattention": { + "id": "option.workTermStatuses.quickaddedneedsattention", + "defaultMessage": "quick added, needs attention" + }, + "inprogress": { + "id": "option.workTermStatuses.inprogress", + "defaultMessage": "in progress" + }, + "complete": { + "id": "option.workTermStatuses.complete", + "defaultMessage": "complete" + } + } + }, + "counties": { + "values": [ + "Unknown", + "Abbeville", + "Aberdeenshire (UK)", + "Acadia", + "Acaponeta", + "Accomack", + "Ada", + "Adair", + "Adams", + "Addison", + "Agusan del Norte", + "Ahuacatlan", + "Aiken", + "Aitkin", + "Alachua", + "Alamance", + "Alameda", + "Alamosa", + "Albany", + "Albemarle", + "Alcona", + "Alcorn", + "Aleutians East", + "Aleutians West", + "Alexander", + "Alexandria", + "Alfalfa", + "Alger", + "Allamakee", + "Allegan", + "Allegany", + "Alleghany", + "Allegheny", + "Allen", + "Allendale", + "Alpena", + "Alpine", + "Amador", + "Amazonas", + "Amelia", + "Amherst", + "Amite", + "Anchorage", + "Anderson", + "Andrew", + "Andrews", + "Androscoggin", + "Angelina", + "Anglesey", + "Anglesey (UK)", + "Angus (Forfarshire) (UK)", + "Anne Arundel", + "Anoka", + "Anson", + "Antelope", + "Antonina", + "Antrim", + "Antrim (UK)", + "Apache", + "Appanoose", + "Appling", + "Appomattox", + "Aransas", + "Arapahoe", + "Archer", + "Archuleta", + "Arenac", + "Argyll (Argyllshire) (UK)", + "Arkansas", + "Arlington", + "Armagh (UK)", + "Armstrong", + "Aroostook", + "Arran, Island of", + "Arthur", + "Ascension", + "Ashe", + "Ashland", + "Ashley", + "Ashtabula", + "Asotin", + "Assumption", + "Atascosa", + "Atchison", + "Athens", + "Atkinson", + "Atlantic", + "Atoka", + "Attala", + "Audrain", + "Audubon", + "Auglaize", + "Augusta", + "Aurora", + "Austin", + "Autauga", + "Avery", + "Avoyelles", + "Ayopaya", + "Ayrshire (UK)", + "Ba", + "Baca", + "Bacon", + "Bagua", + "Bailey", + "Baker", + "Baldwin", + "Ballard", + "Baltimore", + "Bamberg", + "Bandera", + "Banffshire (UK)", + "Banks", + "Banner", + "Bannock", + "Baraga", + "Barber", + "Barbour", + "Barnes", + "Barnstable", + "Barnwell", + "Barreiras", + "Barren", + "Barron", + "Barrow", + "Barry", + "Bartholomew", + "Barton", + "Bartow", + "Bastrop", + "Bates", + "Bath", + "Baxter", + "Bay", + "Bayfield", + "Baylor", + "Beadle", + "Bear Lake", + "Beaufort", + "Beauregard", + "Beaver", + "Beaverhead", + "Becker", + "Beckham", + "Bedford", + "Bedfordshire (UK)", + "Bee", + "Belknap", + "Bell", + "Belmont", + "Beltrami", + "Ben Hill", + "Benewah", + "Bennett", + "Bennington", + "Benson", + "Bent", + "Benton", + "Benzie", + "Bergen", + "Berkeley", + "Berks", + "Berkshire", + "Berkshire (UK)", + "Bernalillo", + "Berrien", + "Bertie", + "Berwickshire (UK)", + "Bethel", + "Bexar", + "Bibb", + "Bienville", + "Big Horn", + "Big Stone", + "Billings", + "Bingham", + "Black Hawk", + "Blackford", + "Bladen", + "Blaine", + "Blair", + "Blanco", + "Bland", + "Bleckley", + "Bledsoe", + "Blount", + "Blue Earth", + "Boise", + "Bolivar", + "Bollinger", + "Bon Homme", + "Bonaventure", + "Bond", + "Bongara", + "Bonner", + "Bonneville", + "Boone", + "Borden", + "Bosque", + "Bossier", + "Botetourt", + "Bothwell Municipality", + "Bottineau", + "Boulder", + "Boundary", + "Bourbon", + "Bowie", + "Bowman", + "Box Butte", + "Box Elder", + "Boyd", + "Boyle", + "Bracken", + "Bradford", + "Bradley", + "Branch", + "Brantley", + "Braxton", + "Brazoria", + "Brazos", + "Breathitt", + "Breckinridge", + "Brecknockshire (Breconshire) (UK)", + "Bremer", + "Brevard", + "Brewster", + "Briscoe", + "Bristol", + "Bristol Bay", + "Broadwater", + "Bronx", + "Brooke", + "Brookings", + "Brooks", + "Broome", + "Broomfield", + "Broward", + "Brown", + "Brule", + "Brunswick", + "Bryan", + "Buchanan", + "Buckingham", + "Buckinghamshire (UK)", + "Bucks", + "Buena Vista", + "Buffalo", + "Bullitt", + "Bulloch", + "Bullock", + "Buncombe", + "Bureau", + "Burke", + "Burleigh", + "Burleson", + "Burlington", + "Burnet", + "Burnett", + "Burnie Municipality", + "Burt", + "Buteshire (UK)", + "Butler", + "Butte", + "Butts", + "Cabarrus", + "Cabell", + "Cache", + "Caddo", + "Caernarfonshire (Carnarvonshire) (UK)", + "Caithness (UK)", + "Cajamarca", + "Calaveras", + "Calcasieu", + "Caldwell", + "Caledonia", + "Calhoun", + "Callahan", + "Callaway", + "Calloway", + "Calumet", + "Calvert", + "Camas", + "Cambria", + "Cambridgeshire (UK)", + "Camden", + "Cameron", + "Camp", + "Campbell", + "Canadian", + "Candelaria", + "Candler", + "Cannon", + "Canyon", + "Cape Girardeau", + "Cape May", + "Capiz", + "Carangola", + "Carbon", + "Cardiganshire (UK)", + "Caribou", + "Carlisle", + "Carlton", + "Carmarthenshire (UK)", + "Caroline", + "Carroll", + "Carson", + "Carson City", + "Carter", + "Carteret", + "Carver", + "Cascade", + "Casey", + "Cass", + "Cassia", + "Castro", + "Castrovirreina", + "Caswell", + "Catahoula", + "Catawba", + "Catoosa", + "Catron", + "Cattaraugus", + "Cautin", + "Cavalier", + "Cayuga", + "Cecil", + "Cedar", + "Celendin", + "Centre", + "Cerro Gordo", + "Chachapoyas", + "Chaffee", + "Chambers", + "Champaign", + "Chariton", + "Charles", + "Charles City", + "Charles Mix", + "Charleston", + "Charlevoix", + "Charlotte", + "Charlottesville", + "Charlton", + "Chase", + "Chatham", + "Chattahoochee", + "Chattooga", + "Chautauqua", + "Chaves", + "Cheatham", + "Cheboygan", + "Chelan", + "Chemung", + "Chenango", + "Cherokee", + "Cherry", + "Chesapeake", + "Cheshire", + "Cheshire (UK)", + "Chester", + "Chesterfield", + "Cheyenne", + "Chiang Mai, Changwat", + "Chickasaw", + "Chicligasta", + "Chicot", + "Childress", + "Chilton", + "Chippewa", + "Chisago", + "Chittenden", + "Choctaw", + "Chouteau", + "Chowan", + "Christian", + "Churchill", + "Cibola", + "Cimarron", + "Citrus", + "Clackamas", + "Clackmannanshire (UK)", + "Claiborne", + "Clallam", + "Clare", + "Clarendon", + "Clarion", + "Clark", + "Clarke", + "Clatsop", + "Clay", + "Clayton", + "Clear Creek", + "Clearfield", + "Clearwater", + "Cleburne", + "Clermont", + "Cleveland", + "Clinch", + "Clinton", + "Cloud", + "Coahoma", + "Coal", + "Cobb", + "Cochise", + "Cochran", + "Cocke", + "Coconino", + "Codington", + "Coffee", + "Coffey", + "Coke", + "Colbert", + "Cole", + "Coleman", + "Coles", + "Colfax", + "Colleton", + "Collier", + "Collin", + "Collingsworth", + "Colonial Heights", + "Colorado", + "Colquitt", + "Columbia", + "Columbiana", + "Columbus", + "Colusa", + "Comal", + "Comanche", + "Comondú", + "Compostela", + "Concho", + "Concordia", + "Conecuh", + "Conejos", + "Contra Costa", + "Converse", + "Conway", + "Cook", + "Cooke", + "Cooper", + "Coos", + "Coosa", + "Copiah", + "Cornwall", + "Cornwall (UK)", + "Corson", + "Cortland", + "Corumba", + "Coryell", + "Coshocton", + "Costilla", + "Cottle", + "Cotton", + "Cottonwood", + "Covington", + "Coweta", + "Cowley", + "Cowlitz", + "Craig", + "Craighead", + "Crane", + "Craven", + "Crawford", + "Creek", + "Crenshaw", + "Crisp", + "Crittenden", + "Crockett", + "Cromartyshire (UK)", + "Crook", + "Crosby", + "Cross", + "Crow Wing", + "Crowley", + "Culberson", + "Cullman", + "Culpeper", + "Cumberland", + "Cumberland (UK)", + "Cuming", + "Currituck", + "Curry", + "Custer", + "Cuyahoga", + "Dade", + "Daggett", + "Dakota", + "Dale", + "Dallam", + "Dallas", + "Dane", + "Daniels", + "Danville", + "Dare", + "Darke", + "Darlington", + "Dauphin", + "Davidson", + "Davie", + "Daviess", + "Davis", + "Davison", + "Dawes", + "Dawson", + "Day", + "De Baca", + "De Kalb", + "De Soto", + "De Witt", + "Deaf Smith", + "Dearborn", + "Decatur", + "Deer Lodge", + "Defiance", + "DeKalb", + "Del Norte", + "Delaware", + "Deloraine Municipality", + "Delta", + "Denali", + "Denbighshire (UK)", + "Dent", + "Denton", + "Denver", + "Derbyshire (UK)", + "Des Moines", + "Deschutes", + "Desha", + "DeSoto", + "Deuel", + "Devon (UK)", + "Dewey", + "DeWitt", + "Diamantina", + "Dickens", + "Dickenson", + "Dickey", + "Dickinson", + "Dickson", + "Dillingham", + "Dillon", + "Dimmit", + "Dinwiddie", + "District of Columbia", + "Divide", + "Dixie", + "Dixon", + "Doddridge", + "Dodge", + "Dolores", + "Dona Ana", + "Doniphan", + "Donley", + "Dooly", + "Door", + "Dorchester", + "Dorset (UK)", + "Dougherty", + "Douglas", + "Down (UK)", + "Doña Ana", + "Drew", + "Du Page", + "Dubois", + "Dubuque", + "Duchesne", + "Dukes", + "Dumbartonshire (UK)", + "Dumfriesshire (UK)", + "Dundy", + "Dunklin", + "Dunn", + "DuPage", + "Duplin", + "Durham", + "Durham (UK)", + "Dutchess", + "Duval", + "Dyer", + "Eagle", + "Early", + "East Baton Rouge", + "East Carroll", + "East Feliciana", + "East Lothian (UK)", + "Eastland", + "Eaton", + "Eau Claire", + "Echols", + "Ector", + "Eddy", + "Edgar", + "Edgecombe", + "Edgefield", + "Edmonson", + "Edmunds", + "Edwards", + "Effingham", + "El Dorado", + "El Paso", + "Elbert", + "Elk", + "Elkhart", + "Elko", + "Elliott", + "Ellis", + "Ellsworth", + "Elmore", + "Emanuel", + "Emery", + "Emmet", + "Emmons", + "Emporia", + "Ensenada", + "Erath", + "Erie", + "Escambia", + "Esmeralda", + "Esmeraldas", + "Esperance Municipality", + "Essex", + "Essex (MA)", + "Essex (UK)", + "Estill", + "Etowah", + "Eureka", + "Evangeline", + "Evans", + "Fairbanks North Star", + "Fairfax", + "Fairfield", + "Fall River", + "Fallon", + "Falls", + "Falls Church", + "Fannin", + "Faribault", + "Faulk", + "Faulkner", + "Fauquier", + "Fayette", + "Fentress", + "Fergus", + "Fermanagh (UK)", + "Ferry", + "Fife (UK)", + "Fillmore", + "Fingal Municipality", + "Finney", + "Fisher", + "Flagler", + "Flathead", + "Fleming", + "Flintshire (UK)", + "Florence", + "Florida", + "Floyd", + "Fluvanna", + "Foard", + "Fond Du Lac", + "Fond du Lac", + "Ford", + "Forest", + "Forrest", + "Forsyth", + "Fort Bend", + "Foster", + "Fountain", + "Franklin", + "Frederick", + "Fredericksburg", + "Freeborn", + "Freestone", + "Fremont", + "Fresno", + "Frio", + "Frontier", + "Fulton", + "Furnas", + "Gadsden", + "Gage", + "Gaines", + "Galapagos", + "Galax", + "Gallatin", + "Gallia", + "Galveston", + "Galway", + "Garden", + "Garfield", + "Garland", + "Garrard", + "Garrett", + "Garvin", + "Garza", + "Gasconade", + "Gaston", + "Gates", + "Geary", + "Geauga", + "Gem", + "Genesee", + "Geneva", + "Gentry", + "George", + "Georgetown", + "Gibson", + "Gila", + "Gilchrist", + "Giles", + "Gillespie", + "Gilliam", + "Gilmer", + "Gilpin", + "Glacier", + "Glades", + "Gladwin", + "Glamorgan (UK)", + "Glamorgan Municipality", + "Glascock", + "Glasscock", + "Glenn", + "Glenorchy Municipality", + "Gloucester", + "Gloucestershire (UK)", + "Glynn", + "Gogebic", + "Golden Valley", + "Goliad", + "Gonzales", + "Goochland", + "Goodhue", + "Gooding", + "Gordon", + "Gormanston Municipality", + "Goshen", + "Gosper", + "Gouveia", + "Gove", + "Grady", + "Grafton", + "Graham", + "Grainger", + "Grand", + "Grand Forks", + "Grand Isle", + "Grand Traverse", + "Granite", + "Grant", + "Granville", + "Gratiot", + "Graves", + "Gray", + "Grays Harbor", + "Grayson", + "Greeley", + "Green", + "Green Lake", + "Greenbrier", + "Greene", + "Greenlee", + "Greensville", + "Greenup", + "Greenville", + "Greenwood", + "Greer", + "Gregg", + "Gregory", + "Grenada", + "Griggs", + "Grimes", + "Grundy", + "Guadalupe", + "Guaraquecaba", + "Guaratuba", + "Guernsey", + "Guilford", + "Gulf", + "Gunnison", + "Guthrie", + "Gwinnett", + "Haakon", + "Habersham", + "Haines", + "Hale", + "Halifax", + "Hall", + "Hamblen", + "Hamilton", + "Hamilton Municipality", + "Hamlin", + "Hampden", + "Hampshire", + "Hampshire (UK)", + "Hampton", + "Hancock", + "Hand", + "Hanover", + "Hansford", + "Hanson", + "Haralson", + "Hardee", + "Hardeman", + "Hardin", + "Harding", + "Hardy", + "Harford", + "Harlan", + "Harmon", + "Harnett", + "Harney", + "Harper", + "Harris", + "Harrison", + "Harrisonburg", + "Hart", + "Hartford", + "Hartley", + "Harvey", + "Haskell", + "Hawaii", + "Hawkins", + "Hayes", + "Hays", + "Haywood", + "Heard", + "Hemphill", + "Hempstead", + "Henderson", + "Hendricks", + "Hendry", + "Hennepin", + "Henrico", + "Henry", + "Herefordshire (UK)", + "Herkimer", + "Hernando", + "Hertford", + "Hertfordshire (UK)", + "Hettinger", + "Hickman", + "Hickory", + "Hidalgo", + "Highland", + "Highlands", + "Hill", + "Hillsborough", + "Hillsdale", + "Hinds", + "Hinsdale", + "Hitchcock", + "Hobart Municipality", + "Hocking", + "Hockley", + "Hodgeman", + "Hoke", + "Holmes", + "Holt", + "Honolulu", + "Hood", + "Hood River", + "Hooker", + "Hoonah–Angoon", + "Hopewell", + "Hopkins", + "Horry", + "Hot Spring", + "Hot Springs", + "Houghton", + "Houston", + "Howard", + "Howell", + "Huancabamba", + "Huanuco", + "Hubbard", + "Hudson", + "Hudspeth", + "Huerfano", + "Hughes", + "Humboldt", + "Humphreys", + "Hunt", + "Hunterdon", + "Huntingdon", + "Huntingdonshire (UK)", + "Huntington", + "Huron", + "Hutchinson", + "Hyde", + "Iberia", + "Iberville", + "Ida", + "Idaho", + "Imperial", + "Independence", + "Indian River", + "Indiana", + "Ingham", + "Inverness-shire (UK)", + "Inyo", + "Ionia", + "Iosco", + "Iowa", + "Iredell", + "Irion", + "Iron", + "Iroquois", + "Irwin", + "Isabella", + "Isanti", + "Island", + "Isle of Wight", + "Issaquena", + "Itasca", + "Itawamba", + "Ixtlan", + "Izard", + "Jack", + "Jackson", + "Jaguariaiya", + "Jalisco", + "James City", + "Jasper", + "Jay", + "Jeff Davis", + "Jefferson", + "Jefferson Davis", + "Jenkins", + "Jennings", + "Jerauld", + "Jerome", + "Jersey", + "Jessamine", + "Jewell", + "Jim Hogg", + "Jim Wells", + "Jo Daviess", + "Johnson", + "Johnston", + "Jolo Group", + "Jones", + "Josephine", + "Juab", + "Judith Basin", + "Juneau", + "Juniata", + "Juquila", + "Kalamazoo", + "Kalawao", + "Kalkaska", + "Kanabec", + "Kanawha", + "Kandavu", + "Kandiyohi", + "Kane", + "Kankakee", + "Karnes", + "Kauai", + "Kaufman", + "Kay", + "Kearney", + "Kearny", + "Keith", + "Kemper", + "Kenai Peninsula", + "Kendall", + "Kenedy", + "Kennebec", + "Kenosha", + "Kent", + "Kent (UK)", + "Kentish Municipality", + "Kenton", + "Keokuk", + "Kepulauan", + "Kepulauan Kangean Islands", + "Kern", + "Kerr", + "Kershaw", + "Ketchikan Gateway", + "Kewaunee", + "Keweenaw", + "Keya Paha", + "Kidder", + "Kimball", + "Kimble", + "Kincardineshire (UK)", + "King", + "King and Queen", + "King George", + "King William", + "Kingborough Municipality", + "Kingfisher", + "Kingman", + "Kings", + "Kingsbury", + "Kinney", + "Kinross-shire (UK)", + "Kiowa", + "Kirkcudbrightshire (UK)", + "Kit Carson", + "Kitsap", + "Kittitas", + "Kittson", + "Klamath", + "Kleberg", + "Klickitat", + "Knott", + "Knox", + "Kodiak Island", + "Koochiching", + "Kootenai", + "Korinthos", + "Koro", + "Kosciusko", + "Kossuth", + "La Crosse", + "La Paz", + "La Plata", + "La Salle", + "Labette", + "Lac qui Parle", + "Lackawanna", + "Laclede", + "Lafayette", + "Lafourche", + "LaGrange", + "Lake", + "Lake and Peninsula", + "Lake of the Woods", + "Lamar", + "Lamas", + "Lamb", + "Lamoille", + "LaMoure", + "Lampasas", + "Lanarkshire (UK)", + "Lancashire (UK)", + "Lancaster", + "Lander", + "Lane", + "Langlade", + "Lanier", + "Lapeer", + "LaPorte", + "Laramie", + "Larecaja", + "Larimer", + "LaRue", + "Las Animas", + "LaSalle", + "Lassen", + "Latah", + "Latimer", + "Lauderdale", + "Launceston Municipality", + "Laurel", + "Laurens", + "Lavaca", + "Lawrence", + "Le Flore", + "Le Sueur", + "Lea", + "Leake", + "Leavenworth", + "Lebanon", + "Lee", + "Leelanau", + "Leflore", + "Lehigh", + "Leicestershire (UK)", + "Lemhi", + "Lenawee", + "Lenoir", + "Leon", + "Leslie", + "Letcher", + "Levy", + "Lewis", + "Lewis and Clark", + "Lexington", + "Liberty", + "Licking", + "Lilydale Municipality", + "Limestone", + "Lincoln", + "Lincolnshire (UK)", + "Linn", + "Lipscomb", + "Litchfield", + "Little River", + "Live Oak", + "Livingston", + "Llano", + "Logan", + "Loja", + "Londonderry (UK)", + "Long", + "Longford Municipality", + "Lonoke", + "Lorain", + "Loreto", + "Los Alamos", + "Los Angeles", + "Los Cabos", + "Loudon", + "Loudoun", + "Louisa", + "Loup", + "Love", + "Loving", + "Lowndes", + "Lubbock", + "Lucas", + "Luce", + "Lumpkin", + "Luna", + "Lunenburg", + "Luzerne", + "Lycoming", + "Lyman", + "Lynchburg", + "Lynn", + "Lyon", + "Mackinac", + "Macomb", + "Macon", + "Macoupin", + "Madera", + "Madison", + "Magoffin", + "Mahaska", + "Mahnomen", + "Mahoning", + "Major", + "Malheur", + "Manabi", + "Manassas", + "Manassas Park", + "Manatee", + "Manistee", + "Manitowoc", + "Marathon", + "Marengo", + "Maricopa", + "Maries", + "Marin", + "Marinette", + "Marion", + "Mariposa", + "Marlboro", + "Marquette", + "Marshall", + "Martin", + "Martinsville", + "Mason", + "Massac", + "Matagorda", + "Matanuska-Susitna", + "Mathews", + "Maui", + "Maury", + "Maverick", + "Mayes", + "McClain", + "McCone", + "McCook", + "McCormick", + "McCracken", + "McCreary", + "McCulloch", + "McCurtain", + "McDonald", + "McDonough", + "McDowell", + "McDuffie", + "McHenry", + "McIntosh", + "McKean", + "McKenzie", + "McKinley", + "McLean", + "McLennan", + "McLeod", + "McMinn", + "McMullen", + "McNairy", + "McPherson", + "Meade", + "Meagher", + "Mecklenburg", + "Mecosta", + "Medina", + "Meeker", + "Meigs", + "Mellette", + "Menard", + "Mendocino", + "Menifee", + "Menominee", + "Merced", + "Mercer", + "Merionethshire (UK)", + "Meriwether", + "Merrick", + "Merrimack", + "Mesa", + "Metcalfe", + "Mexicali", + "Miahuatlan", + "Miami", + "Miami-Dade", + "Middlesex", + "Middlesex (UK)", + "Midland", + "Midlothian (UK)", + "Mifflin", + "Milam", + "Millard", + "Mille Lacs", + "Miller", + "Mills", + "Milwaukee", + "Miner", + "Mineral", + "Mingo", + "Minidoka", + "Minnehaha", + "Missaukee", + "Mississippi", + "Missoula", + "Mitchell", + "Mizque", + "Mobile", + "Modoc", + "Moffat", + "Mohave", + "Moniteau", + "Monmouth", + "Monmouthshire (UK)", + "Mono", + "Monona", + "Monongalia", + "Monroe", + "Montague", + "Montcalm", + "Monterey", + "Montezuma", + "Montgomery", + "Montgomeryshire (UK)", + "Montmorency", + "Montour", + "Montrose", + "Moody", + "Moore", + "Mora", + "Morayshire (UK)", + "Morehouse", + "Morgan", + "Morrill", + "Morris", + "Morrison", + "Morro do Chapeu", + "Morrow", + "Morton", + "Motley", + "Moultrie", + "Mountrail", + "Mower", + "Muhlenberg", + "Mulegé", + "Multnomah", + "Murray", + "Muscatine", + "Muscogee", + "Muskegon", + "Muskingum", + "Muskogee", + "Musselshell", + "Nacogdoches", + "Nairnshire (UK)", + "Nakhon Ratchasima, Changwat", + "Nance", + "Nantucket", + "Nantucket (MA)", + "Napa", + "Nash", + "Nassau", + "Natchitoches", + "Natrona", + "Navajo", + "Navarro", + "Nelson", + "Nemaha", + "Neosho", + "Neshoba", + "Ness", + "Nevada", + "New Castle", + "New Hanover", + "New Haven", + "New Kent", + "New London", + "New Madrid", + "New Norfolk Municipality", + "New York", + "Newaygo", + "Newberry", + "Newport", + "Newport News", + "Newton", + "Nez Perc", + "Nez Perce", + "Niagara", + "Nicholas", + "Nicholson", + "Nicollet", + "Niobrara", + "Noble", + "Nobles", + "Nodaway", + "Nolan", + "Nome", + "Norfolk", + "Norfolk (UK)", + "Norman", + "North Slope", + "Northampton", + "Northamptonshire (UK)", + "Northumberland", + "Northumberland (UK)", + "Northwest Arctic", + "Norton", + "Nottinghamshire (UK)", + "Nottoway", + "Nowata", + "Noxubee", + "Nuckolls", + "Nueces", + "Nueva Vizcaya", + "Nye", + "O'Brien", + "Oakland", + "Oatlands Municipality", + "Obion", + "Ocean", + "Oceana", + "Ochiltree", + "Oconee", + "Oconto", + "Ogemaw", + "Ogle", + "Oglethorpe", + "Ohio", + "Okaloosa", + "Okanogan", + "Okeechobee", + "Okfuskee", + "Oklahoma", + "Okmulgee", + "Oktibbeha", + "Oldham", + "Oliver", + "Olmsted", + "Oneida", + "Onondaga", + "Onslow", + "Ontario", + "Ontonagon", + "Orange", + "Orangeburg", + "Oregon", + "Orkney (UK)", + "Orleans", + "Osage", + "Osborne", + "Osceola", + "Oscoda", + "Oswego", + "Otero", + "Otoe", + "Otsego", + "Ottawa", + "Otter Tail", + "Ouachita", + "Ouray", + "Outagamie", + "Overton", + "Owen", + "Owsley", + "Owyhee", + "Oxford", + "Oxfordshire (UK)", + "Ozark", + "Ozaukee", + "Pacific", + "Page", + "Palm Beach", + "Palmeira", + "Palo Alto", + "Palo Pinto", + "Pamlico", + "Pampanga", + "Pangasinan", + "Panola", + "Paranagua", + "Park", + "Parke", + "Parker", + "Parmer", + "Pasco", + "Pasquotank", + "Passaic", + "Patrick", + "Paulding", + "Pawnee", + "Payette", + "Payne", + "Peach", + "Pearl River", + "Pecos", + "Peeblesshire (UK)", + "Pembina", + "Pembrokeshire (UK)", + "Pemiscot", + "Pend Oreille", + "Pender", + "Pendleton", + "Penguin Municipality", + "Pennington", + "Penobscot", + "Peoria", + "Pepin", + "Perkins", + "Perquimans", + "Perry", + "Pershing", + "Person", + "Perthshire (UK)", + "Petersburg", + "Petroleum", + "Pettis", + "Phelps", + "Philadelphia", + "Phillips", + "Piatt", + "Pickaway", + "Pickens", + "Pickett", + "Pierce", + "Pike", + "Pima", + "Pinal", + "Pine", + "Pinellas", + "Pipestone", + "Piscataquis", + "Pitkin", + "Pitt", + "Pittsburg", + "Pittsylvania", + "Piura", + "Piute", + "Placer", + "Plaquemines", + "Platte", + "Pleasants", + "Plumas", + "Plymouth", + "Pocahontas", + "Pochutla", + "Poinsett", + "Pointe Coupee", + "Polk", + "Pondera", + "Pontotoc", + "Pope", + "Poquoson", + "Portage", + "Porter", + "Portland Municipality", + "Portsmouth", + "Posey", + "Pottawatomie", + "Pottawattamie", + "Potter", + "Powder River", + "Powell", + "Power", + "Poweshiek", + "Powhatan", + "Prairie", + "Pratt", + "Preble", + "Prentiss", + "Presidio", + "Presque Isle", + "Preston", + "Price", + "Prince Edward", + "Prince George", + "Prince George's", + "Prince of Wales-Hyder", + "Prince William", + "Providence", + "Prowers", + "Pueblo", + "Pujili", + "Pulaski", + "Pushmataha", + "Putnam", + "Quay", + "Queen Anne's", + "Queen Elizabeth Islands", + "Queens", + "Quezon", + "Quitman", + "Quito", + "Rabun", + "Racine", + "Radford", + "Radnorshire (UK)", + "Raiatea", + "Rains", + "Raleigh", + "Ralls", + "Ramsey", + "Randall", + "Randolph", + "Rankin", + "Ransom", + "Rapides", + "Rappahannock", + "Rarotonga", + "Ravalli", + "Rawlins", + "Ray", + "Reagan", + "Real", + "Red Lake", + "Red River", + "Red Willow", + "Redwood", + "Reeves", + "Refugio", + "Renfrewshire (UK)", + "Reno", + "Rensselaer", + "Renville", + "Republic", + "Rewa", + "Reynolds", + "Rhea", + "Rice", + "Rich", + "Richardson", + "Richland", + "Richmond", + "Riley", + "Ringarooma Municipality", + "Ringgold", + "Rio Arriba", + "Rio Blanco", + "Rio Branco", + "Rio Grande", + "Rio Verde", + "Ripley", + "Ritchie", + "Riverside", + "Rizal", + "Roane", + "Roanoke", + "Roberts", + "Robertson", + "Robeson", + "Rock", + "Rock Island", + "Rockbridge", + "Rockcastle", + "Rockdale", + "Rockingham", + "Rockland", + "Rockwall", + "Roger Mills", + "Rogers", + "Rolette", + "Rooks", + "Roosevelt", + "Rosarito, Playas de", + "Roscommon", + "Roseau", + "Rosebud", + "Ross", + "Ross Municipality", + "Ross-shire (UK)", + "Routt", + "Rowan", + "Roxburghshire (UK)", + "Runnels", + "Rush", + "Rusk", + "Russell", + "Russell Islands", + "Rutherford", + "Rutland", + "Rutland (UK)", + "Sabah", + "Sabine", + "Sac", + "Sacramento", + "Sagadahoc", + "Saginaw", + "Saguache", + "Salem", + "Saline", + "Salt Lake", + "Saluda", + "Sampson", + "San Augustine", + "San Benito", + "San Bernardino", + "San Blas", + "San Diego", + "San Francisco", + "San Ignacio", + "San Jacinto", + "San Joaquin", + "San Juan", + "San Luis Obispo", + "San Mateo", + "San Miguel", + "San Patricio", + "San Pedro Lagunillas", + "San Pedro Lagunitas", + "San Saba", + "Sanborn", + "Sanders", + "Sandoval", + "Sandusky", + "Sangamon", + "Sanilac", + "Sanpete", + "Santa Barbara", + "Santa Clara", + "Santa Cruz", + "Santa Fe", + "Santa Maria del Oro", + "Santa Rosa", + "Santa Victoria", + "Sarasota", + "Saratoga", + "Sarawak", + "Sargent", + "Sarpy", + "Sauk", + "Saunders", + "Sawyer", + "Schenectady", + "Schleicher", + "Schley", + "Schoharie", + "Schoolcraft", + "Schuyler", + "Schuylkill", + "Scioto", + "Scotland", + "Scott", + "Scotts Bluff", + "Scottsdale Municipality", + "Screven", + "Scurry", + "Searcy", + "Sebastian", + "Sedgwick", + "Selkirkshire (UK)", + "Seminole", + "Seneca", + "Senyavin Islands", + "Sequatchie", + "Sequoyah", + "Sevier", + "Seward", + "Shackelford", + "Shannon", + "Sharkey", + "Sharp", + "Shasta", + "Shawano", + "Shawnee", + "Sheboygan", + "Sheffield Municipality", + "Shelby", + "Shenandoah", + "Sherburne", + "Sheridan", + "Sherman", + "Shetland (UK)", + "Shiawassee", + "Shoshone", + "Shropshire (UK)", + "Sibley", + "Sierra", + "Silver Bow", + "Simpson", + "Sioux", + "Siskiyou", + "Sitka", + "Skagit", + "Skagway", + "Skamania", + "Slope", + "Smith", + "Smyth", + "Snohomish", + "Snyder", + "Socorro", + "Sola de Vega", + "Solano", + "Somerset", + "Somerset (UK)", + "Somervell", + "Sonoma", + "Sorell Municipality", + "Southampton", + "Southeast Fairbanks", + "Spalding", + "Spartanburg", + "Spencer", + "Spink", + "Spokane", + "Spotsylvania", + "Spring Bay Municipality", + "St. Bernard", + "St. Charles", + "St. Clair", + "St. Croix", + "St. Francis", + "St. Francois", + "St. Helena", + "St. James", + "St. John the Baptist", + "St. Johns", + "St. Joseph", + "St. Landry", + "St. Lawrence", + "St. Leonards Municipality", + "St. Louis", + "St. Lucie", + "St. Martin", + "St. Mary", + "St. Mary's", + "St. Tammany", + "Stafford", + "Staffordshire (UK)", + "Stanislaus", + "Stanley", + "Stanly", + "Stanton", + "Stark", + "Starke", + "Starr", + "Staunton", + "Ste. Genevieve", + "Stearns", + "Steele", + "Stephens", + "Stephenson", + "Sterling", + "Steuben", + "Stevens", + "Stewart", + "Stillwater", + "Stirlingshire (UK)", + "Stoddard", + "Stokes", + "Stone", + "Stonewall", + "Storey", + "Story", + "Strafford", + "Stutsman", + "Sublette", + "Sud Yungas", + "Suffolk", + "Suffolk (UK)", + "Sullivan", + "Sully", + "Summers", + "Summit", + "Sumner", + "Sumter", + "Sunflower", + "Surrey (UK)", + "Surry", + "Susquehanna", + "Sussex", + "Sussex (UK)", + "Sutherland (UK)", + "Sutter", + "Sutton", + "Suwannee", + "Swain", + "Sweet Grass", + "Sweetwater", + "Swift", + "Swisher", + "Switzerland", + "Tahiti", + "Talbot", + "Taliaferro", + "Talladega", + "Tallahatchie", + "Tallapoosa", + "Taltal", + "Tama", + "Taney", + "Tangipahoa", + "Taos", + "Tarrant", + "Tasman Municipality", + "Tate", + "Tattnall", + "Taylor", + "Tazewell", + "Tecate", + "Tehama", + "Telfair", + "Teller", + "Tensas", + "Tepic", + "Terrebonne", + "Terrell", + "Terry", + "Teton", + "Texas", + "Thayer", + "Thomas", + "Throckmorton", + "Thurston", + "Tift", + "Tijuana", + "Tillamook", + "Tillman", + "Tioga", + "Tippah", + "Tippecanoe", + "Tipton", + "Tishomingo", + "Titus", + "Todd", + "Tolland", + "Tom Green", + "Tompkins", + "Tompkins (NY)", + "Tooele", + "Toole", + "Toombs", + "Torrance", + "Towner", + "Towns", + "Traill", + "Transylvania", + "Traverse", + "Travis", + "Treasure", + "Trego", + "Trempealeau", + "Treutlen", + "Trigg", + "Trimble", + "Trinity", + "Tripp", + "Troup", + "Trousdale", + "Trumbull", + "Tucker", + "Tulare", + "Tulsa", + "Tunica", + "Tuolumne", + "Turner", + "Tuscaloosa", + "Tuscarawas", + "Tuscola", + "Twiggs", + "Twin Falls", + "Tyler", + "Tyrone (UK)", + "Tyrrell", + "Uinta", + "Uintah", + "Ulster", + "Ulverstone Municipality", + "Umatilla", + "Unicoi", + "Union", + "Unknown", + "Upshur", + "Upson", + "Upton", + "Urubamba", + "Utah", + "Uvalde", + "Val Verde", + "Valdez–Cordova", + "Valencia", + "Valley", + "Van Buren", + "Van Wert", + "Van Zandt", + "Vance", + "Vanderburgh", + "Vanua Levu", + "Venango", + "Ventura", + "Vermilion", + "Vermillion", + "Vernon", + "Victoria", + "Vigo", + "Vilas", + "Vinton", + "Virginia Beach", + "Viti Levu", + "Volusia", + "Wabash", + "Wabasha", + "Wabaunsee", + "Wade Hampton", + "Wadena", + "Wagoner", + "Wahkiakum", + "Wake", + "Wakulla", + "Waldo", + "Walker", + "Walla Walla", + "Wallace", + "Waller", + "Wallowa", + "Walsh", + "Walthall", + "Walton", + "Walworth", + "Wapello", + "Waratah Municipality", + "Ward", + "Ware", + "Warren", + "Warrick", + "Warwickshire (UK)", + "Wasatch", + "Wasco", + "Waseca", + "Washakie", + "Washburn", + "Washington", + "Washita", + "Washoe", + "Washtenaw", + "Watauga", + "Watonwan", + "Waukesha", + "Waupaca", + "Waushara", + "Wayne", + "Waynesboro", + "Weakley", + "Webb", + "Weber", + "Webster", + "Weld", + "Wells", + "West Baton Rouge", + "West Carroll", + "West Feliciana", + "West Lothian (Linlithgowshire) (UK)", + "Westchester", + "Westmoreland", + "Westmorland (UK)", + "Weston", + "Wetzel", + "Wexford", + "Wharton", + "Whatcom", + "Wheatland", + "Wheeler", + "White", + "White Pine", + "Whiteside", + "Whitfield", + "Whitley", + "Whitman", + "Wibaux", + "Wichita", + "Wicomico", + "Wigtownshire (UK)", + "Wilbarger", + "Wilcox", + "Wilkes", + "Wilkin", + "Wilkinson", + "Will", + "Will (IL)", + "Willacy", + "Williams", + "Williamsburg", + "Williamson", + "Wilson", + "Wiltshire (UK)", + "Winchester", + "Windham", + "Windsor", + "Winkler", + "Winn", + "Winnebago", + "Winneshiek", + "Winona", + "Winston", + "Wirt", + "Wise", + "Wolfe", + "Wood", + "Woodbury", + "Woodford", + "Woodruff", + "Woods", + "Woodson", + "Woodward", + "Worcester", + "Worcestershire (UK)", + "Worth", + "Wrangell", + "Wright", + "Wyandot", + "Wyandotte", + "Wyoming", + "Wythe", + "Yadkin", + "Yakima", + "Yakutat", + "Yalobusha", + "Yamhill", + "Yancey", + "Yankton", + "Yates", + "Yavapai", + "Yazoo", + "Yell", + "Yellow Medicine", + "Yellowstone", + "Yoakum", + "Yolo", + "York", + "Yorkshire (UK)", + "Young", + "Yuba", + "Yukon–Koyukuk", + "Yuma", + "Zambales", + "Zapata", + "Zavala", + "Zeehan Municipality", + "Zhongdian", + "Ziebach" + ], + "messages": { + "Unknown": { + "id": "option.counties.Unknown", + "defaultMessage": "unknown" + } + } + }, + "states": { + "values": [ + "Unknown", + "'Eua", + "Aamzonas", + "Acre", + "AK", + "AL", + "Alajuela", + "Alajuelo", + "ALB", + "Alberta", + "Alger", + "Alta Verapaz", + "Amazonas", + "Ancash", + "Anhui", + "Antioquia", + "Antofagasta", + "Apurimac", + "AR", + "Aragua", + "Araucania", + "Arequipa", + "ARIZ", + "Artigas", + "Atacama", + "Atlantida", + "Ayacucho", + "AZ", + "AZ Territory", + "Azuay", + "B.C.S.", + "Bac Phan", + "Bahia", + "Baja California", + "Baja California Sur", + "Baja Verapaz", + "Baleares", + "Baluchistan", + "Banguey Island", + "Barinas", + "BCS", + "Benguet", + "Binh Tri Thien, Tinh", + "Biobio, Regio del", + "Bismarck Archipelago", + "BN", + "Bohol", + "Bolivar", + "Boyaca", + "British Columbia", + "Brunei", + "Buenos Aires", + "Bulacan", + "CA", + "Cajamarca", + "Campeche", + "Canar", + "Cape Province", + "Carchi", + "Caroline Islands", + "Cartago", + "Cascajal", + "Cataluna", + "Cauca", + "Cebu", + "Central", + "Chalatenango", + "CHI", + "Chia", + "Chiang Mai, Changwat", + "Chiapas", + "Chihuahua", + "Chimaltenango", + "Chimborazo", + "Chinandega", + "Chiriqui", + "Chontales", + "Chupadero", + "Chuquisaca", + "CO", + "CO Territory", + "Coahuila", + "COCA", + "Cochabamba", + "Cocle", + "COL", + "Colima", + "Comayagua", + "Concepcion", + "COP", + "Coquimbo", + "Cordoba", + "Cortes", + "Costa", + "Cotopaxi", + "CT", + "Cundinamarca", + "Cuzco", + "Darien", + "DE", + "Dept. La e", + "Dept. Mag", + "Distrito Federal", + "DUR", + "Durango", + "East Malaysia", + "East Sepik", + "Eastern Division", + "Eastern Divsion", + "El Progreso", + "Esmeraldas", + "Esteli", + "FL", + "Florida", + "Fujian", + "GA", + "Gansu", + "Goias", + "Golestan", + "Granada", + "GRO", + "GUAM", + "Guanacaste", + "Guanajuato", + "Guangdong", + "Guatemala", + "Guayas", + "Guerrero", + "Guizhou", + "Ha Bach, Tinh", + "Hainan", + "Halland", + "Hamadan", + "Heidelberg", + "Heredia", + "HI", + "Hidalgo", + "Honshu", + "Huancabamba", + "Huancavelica", + "Huanuco", + "Hubei", + "Huehuetena", + "Huehuetenango", + "Humacao", + "IA", + "ID", + "Idaho", + "IL", + "IN", + "Insular", + "Ipiros", + "Iqnique Province", + "Iringa", + "Isabela", + "Izabel", + "JAL", + "Jalisco", + "Jalsico", + "Jawa Timur", + "Jiangsu", + "Jujuy", + "Junin", + "Kangean", + "Khorasan Province", + "Kkanh Hoa", + "KS", + "KwaZulu-Natal", + "KY", + "LA", + "La Habana", + "La Libertad", + "La Paz", + "La Vega", + "Lambayeque", + "Las Villas", + "LASAN", + "Leon", + "Lima", + "Limon", + "Loja", + "Loreto", + "Luzon", + "MA", + "Madre de Dios", + "Magdalena", + "Maldonado", + "Manabi", + "Manitoba", + "Mariana Islands", + "Mato Grosso", + "Matto Grosso", + "Mayaguez", + "Mazandaran", + "MD", + "ME", + "Merida", + "Meta", + "Mexico", + "MI", + "MIC", + "MICH", + "Michoacan", + "Minas Gerais", + "Mindanao", + "Misiones", + "MN", + "MO", + "MON", + "Montevideo", + "Morazan", + "Morelos", + "MS", + "MT", + "MX", + "N. Segovia", + "Narino", + "NAY", + "Nayarit", + "NC", + "ND", + "NE", + "Neuvo Leon", + "Nevada", + "New Brunswick", + "New South Wales", + "Newfoundland", + "NH", + "NJ", + "NL", + "NM", + "NM-TX", + "Nord", + "Norte", + "Norte de Santander", + "North Ayrshire", + "Northeastern", + "Northern", + "Northern Division", + "Northern Territory", + "Northwest Frontier", + "Northwest Territories", + "Nova Scotia", + "Nuevo Leon", + "Nunavut", + "NV", + "NY", + "O", + "Oaxaca", + "OH", + "OK", + "Ontario", + "OR", + "OR (?)", + "OR or WA", + "Oregon", + "Oriente", + "Otuzco", + "PA", + "Palawan", + "Panama", + "Panay", + "Paraguari", + "Parana", + "Paris", + "Pasco", + "Pataz", + "PE", + "Peloponnisos", + "Peten", + "Pichincha", + "Piura", + "PMG", + "Pohnpei", + "Pomeroon-Supernaam", + "Portuguesa", + "Potosi", + "PRE", + "Prince Edward Island", + "PUE", + "Puebla", + "Puerto Rico", + "Puno", + "Puntarenas", + "Quang Ngai", + "Quebec", + "Queensland", + "Quezaltenango", + "Quezon", + "Quiche", + "RI", + "Rio de Janeiro", + "Rizal", + "S Catarina", + "S L Potosi", + "S.L. Potos", + "Sabah", + "Salta", + "Samar", + "San Blas", + "San Jose", + "San Luis", + "San Luis a", + "San Luis Potosi", + "San Martin", + "San Miguel", + "San Pedro", + "Santa Barbara", + "Santa Catarina", + "Santa Cruz", + "Santander", + "Santiago, Region Met", + "Sao Paulo", + "Sarawak", + "Saskatchewan", + "Savaii Island", + "SC", + "Scotland", + "SD", + "Semnan", + "Seybo", + "Sichuan", + "Sierra", + "SIN", + "Sinaloa", + "SL Potosi", + "Societe, Iles de la", + "Societe, Isles de la", + "SON", + "Sonora", + "Sonsonate", + "South Australia", + "Southern Cook Island", + "St. Andrew", + "St. Croix", + "Stann Creek", + "Sulu", + "Sumatera", + "TAB", + "Tabasco", + "Tachira", + "Tacna", + "TAM", + "Tamaulipas", + "Tarank Province", + "Tarija", + "Tarma", + "Tasmania", + "Tehran", + "Tierra del Fuego", + "Tlaxcala", + "TN", + "Toledo", + "Tongatapu", + "Trelawny", + "Trujillo", + "Tuamotu, Archipel de", + "Tubuai, Iles", + "Tucuman", + "Tutuila Island", + "TX", + "TX ", + "TX-NM", + "Upolu Island", + "UT", + "Utah", + "VA", + "Valle", + "Valparaiso", + "Vaupes", + "Veracruz", + "Verguas", + "Victoria", + "VT", + "w TX to NM", + "w. TX - El Paso, NM", + "w. TX - El Paso,NM", + "WA", + "WA Territory", + "Wales", + "WAS", + "Western Australia", + "Western Cape", + "WI", + "WN", + "WV", + "WY", + "Wyoming", + "Xizang", + "Yaracuy", + "Yoro", + "Yucatan", + "Yukon Territory", + "Yunnan", + "Zacatecas", + "Zhejiang", + "Zulia" + ], + "messages": { + "Unknown": { + "id": "option.states.Unknown", + "defaultMessage": "unknown" + } + } + }, + "countries": { + "values": [ + "unknown", + "Afghanistan", + "AX", + "AL", + "Algeria", + "American Samoa", + "AD", + "AO", + "AI", + "AQ", + "Antigua", + "Antigua and Barbuda", + "Argentina", + "Armenia", + "AW", + "Australia", + "AT", + "AZ", + "BS", + "BH", + "BD", + "BB", + "BY", + "Belgium", + "Belize", + "BJ", + "Bermuda", + "BT", + "Bolivia", + "BQ", + "Borneo", + "BA", + "BW", + "BV", + "Brazil", + "IO", + "Brunei", + "BG", + "BF", + "BI", + "Cambodia", + "Cameroon", + "Canada", + "CV", + "KY", + "CF", + "TD", + "Chile", + "China", + "CX", + "CC", + "Colombia", + "KM", + "CG", + "Cook Islands", + "Costa Rica", + "CI", + "Croatia", + "Cuba", + "CW", + "CY", + "CZ", + "D R Congo", + "Denmark", + "DJ", + "DM", + "Dominican Republic", + "Ecuador", + "EG", + "El Salvador", + "Ellas", + "Equatorial Guinea", + "ER", + "Espana", + "EE", + "ET", + "FK", + "FO", + "Fiji", + "Finland", + "France", + "GF", + "PF", + "TF", + "GA", + "GM", + "GE", + "Germany", + "GH", + "GI", + "Greenland", + "GD", + "Guadeloupe", + "GU", + "Guatemala", + "GG", + "GN", + "GW", + "Guyana", + "Haiti", + "HM", + "Hispaniola", + "VA", + "Honduras", + "HK", + "HN", + "Iceland", + "India", + "Indonesia", + "Iran", + "IQ", + "Ireland", + "IM", + "Israel", + "Italy", + "Jamaica", + "Japan", + "JE", + "Jordan", + "KZ", + "Kenya", + "KI", + "KP", + "KW", + "KG", + "LA", + "LV", + "Lebanon", + "LS", + "LR", + "LY", + "LI", + "LT", + "LU", + "MO", + "MK", + "Madagascar", + "Malawi", + "Malaysia", + "MV", + "ML", + "MT", + "Marshall Islands", + "MQ", + "MR", + "MU", + "YT", + "Mexico", + "Micronesia", + "MD", + "MC", + "Mongolia", + "ME", + "MS", + "Morocco", + "MZ", + "Myanmar", + "Namibia", + "NR", + "Nepal", + "Netherlands Antilles", + "Netherlands", + "New Caledonia", + "New Zealand", + "Nicaragua", + "NE", + "NG", + "Nihon", + "Niue", + "NF", + "MP", + "Norway", + "OM", + "Pakistan", + "PW", + "PS", + "Panama", + "Papua New Guinea", + "Paraguay", + "Peru", + "Philippines", + "PN", + "PL", + "Polynesia", + "Polynesie francaise", + "Portugal", + "Prathet Thai", + "Puerto Rico", + "QA", + "Republica Dominicana", + "Reunion", + "RO", + "Russia", + "RW", + "BL", + "Saint Helena", + "KN", + "Saint Lucia", + "MF", + "PM", + "VC", + "Samoa", + "SM", + "ST", + "SA", + "Scotland", + "SN", + "RS", + "Seychelles", + "SL", + "SG", + "SX", + "SK", + "Slovenia", + "SO", + "Solomon Islands", + "South Africa", + "GS", + "South Korea", + "SS", + "Spain", + "Sri Lanka", + "Sudan", + "Suriname", + "SJ", + "SZ", + "Sweden", + "CH", + "Syria", + "Taiwan", + "TJ", + "Tanzania", + "Thailand", + "TL", + "TG", + "TK", + "Tonga", + "Trinidad and Tobago", + "TN", + "Turkey", + "TM", + "TC", + "TV", + "Uganda", + "UA", + "AE", + "United Kingdom", + "UM", + "Uruguay", + "USA", + "UZ", + "Vanuatu", + "Venezuela", + "Viet Nam", + "VG", + "Virgin Islands", + "WF", + "EH", + "Western Samoa", + "YE", + "ZM", + "Zhonghua", + "ZW" + ], + "messages": { + "unknown": { + "id": "option.countries.unknown", + "defaultMessage": "unknown" + }, + "Afghanistan": { + "id": "option.countries.Afghanistan", + "defaultMessage": "Afghanistan" + }, + "AX": { + "id": "option.countries.AX", + "defaultMessage": "Åland Islands" + }, + "AL": { + "id": "option.countries.AL", + "defaultMessage": "Albania" + }, + "Algeria": { + "id": "option.countries.Algeria", + "defaultMessage": "Algeria" + }, + "American Samoa": { + "id": "option.countries.American Samoa", + "defaultMessage": "American Samoa" + }, + "AD": { + "id": "option.countries.AD", + "defaultMessage": "Andorra" + }, + "AO": { + "id": "option.countries.AO", + "defaultMessage": "Angola" + }, + "AI": { + "id": "option.countries.AI", + "defaultMessage": "Anguilla" + }, + "AQ": { + "id": "option.countries.AQ", + "defaultMessage": "Antarctica" + }, + "Antigua": { + "id": "option.countries.Antigua", + "defaultMessage": "Antigua" + }, + "Antigua and Barbuda": { + "id": "option.countries.Antigua and Barbuda", + "defaultMessage": "Antigua and Barbuda" + }, + "Argentina": { + "id": "option.countries.Argentina", + "defaultMessage": "Argentina" + }, + "Armenia": { + "id": "option.countries.Armenia", + "defaultMessage": "Armenia" + }, + "AW": { + "id": "option.countries.AW", + "defaultMessage": "Aruba" + }, + "Australia": { + "id": "option.countries.Australia", + "defaultMessage": "Australia" + }, + "AT": { + "id": "option.countries.AT", + "defaultMessage": "Austria" + }, + "AZ": { + "id": "option.countries.AZ", + "defaultMessage": "Azerbaijan" + }, + "BS": { + "id": "option.countries.BS", + "defaultMessage": "Bahamas" + }, + "BH": { + "id": "option.countries.BH", + "defaultMessage": "Bahrain" + }, + "BD": { + "id": "option.countries.BD", + "defaultMessage": "Bangladesh" + }, + "BB": { + "id": "option.countries.BB", + "defaultMessage": "Barbados" + }, + "BY": { + "id": "option.countries.BY", + "defaultMessage": "Belarus" + }, + "Belgium": { + "id": "option.countries.Belgium", + "defaultMessage": "Belgium" + }, + "Belize": { + "id": "option.countries.Belize", + "defaultMessage": "Belize" + }, + "BJ": { + "id": "option.countries.BJ", + "defaultMessage": "Benin" + }, + "Bermuda": { + "id": "option.countries.Bermuda", + "defaultMessage": "Bermuda" + }, + "BT": { + "id": "option.countries.BT", + "defaultMessage": "Bhutan" + }, + "Bolivia": { + "id": "option.countries.Bolivia", + "defaultMessage": "Bolivia" + }, + "BQ": { + "id": "option.countries.BQ", + "defaultMessage": "Bonaire, Sint Eustatius and Saba" + }, + "Borneo": { + "id": "option.countries.Borneo", + "defaultMessage": "Borneo" + }, + "BA": { + "id": "option.countries.BA", + "defaultMessage": "Bosnia and Herzegovina" + }, + "BW": { + "id": "option.countries.BW", + "defaultMessage": "Botswana" + }, + "BV": { + "id": "option.countries.BV", + "defaultMessage": "Bouvet Island" + }, + "Brazil": { + "id": "option.countries.Brazil", + "defaultMessage": "Brazil" + }, + "IO": { + "id": "option.countries.IO", + "defaultMessage": "British Indian Ocean Territory" + }, + "Brunei": { + "id": "option.countries.Brunei", + "defaultMessage": "Brunei" + }, + "BG": { + "id": "option.countries.BG", + "defaultMessage": "Bulgaria" + }, + "BF": { + "id": "option.countries.BF", + "defaultMessage": "Burkina Faso" + }, + "BI": { + "id": "option.countries.BI", + "defaultMessage": "Burundi" + }, + "Cambodia": { + "id": "option.countries.Cambodia", + "defaultMessage": "Cambodia" + }, + "Cameroon": { + "id": "option.countries.Cameroon", + "defaultMessage": "Cameroon" + }, + "Canada": { + "id": "option.countries.Canada", + "defaultMessage": "Canada" + }, + "CV": { + "id": "option.countries.CV", + "defaultMessage": "Cape Verde" + }, + "KY": { + "id": "option.countries.KY", + "defaultMessage": "Cayman Islands" + }, + "CF": { + "id": "option.countries.CF", + "defaultMessage": "Central African Republic" + }, + "TD": { + "id": "option.countries.TD", + "defaultMessage": "Chad" + }, + "Chile": { + "id": "option.countries.Chile", + "defaultMessage": "Chile" + }, + "China": { + "id": "option.countries.China", + "defaultMessage": "China" + }, + "CX": { + "id": "option.countries.CX", + "defaultMessage": "Christmas Island" + }, + "CC": { + "id": "option.countries.CC", + "defaultMessage": "Cocos (Keeling) Islands" + }, + "Colombia": { + "id": "option.countries.Colombia", + "defaultMessage": "Colombia" + }, + "KM": { + "id": "option.countries.KM", + "defaultMessage": "Comoros" + }, + "CG": { + "id": "option.countries.CG", + "defaultMessage": "Congo" + }, + "Cook Islands": { + "id": "option.countries.Cook Islands", + "defaultMessage": "Cook Islands" + }, + "Costa Rica": { + "id": "option.countries.Costa Rica", + "defaultMessage": "Costa Rica" + }, + "CI": { + "id": "option.countries.CI", + "defaultMessage": "Côte d’Ivoire" + }, + "Croatia": { + "id": "option.countries.Croatia", + "defaultMessage": "Croatia" + }, + "Cuba": { + "id": "option.countries.Cuba", + "defaultMessage": "Cuba" + }, + "CW": { + "id": "option.countries.CW", + "defaultMessage": "Curaçao" + }, + "CY": { + "id": "option.countries.CY", + "defaultMessage": "Cyprus" + }, + "CZ": { + "id": "option.countries.CZ", + "defaultMessage": "Czech Republic" + }, + "D R Congo": { + "id": "option.countries.D R Congo", + "defaultMessage": "D R Congo" + }, + "Denmark": { + "id": "option.countries.Denmark", + "defaultMessage": "Denmark" + }, + "DJ": { + "id": "option.countries.DJ", + "defaultMessage": "Djibouti" + }, + "DM": { + "id": "option.countries.DM", + "defaultMessage": "Dominica" + }, + "Dominican Republic": { + "id": "option.countries.Dominican Republic", + "defaultMessage": "Dominican Republic" + }, + "Ecuador": { + "id": "option.countries.Ecuador", + "defaultMessage": "Ecuador" + }, + "EG": { + "id": "option.countries.EG", + "defaultMessage": "Egypt" + }, + "El Salvador": { + "id": "option.countries.El Salvador", + "defaultMessage": "El Salvador" + }, + "Ellas": { + "id": "option.countries.Ellas", + "defaultMessage": "Ellas" + }, + "Equatorial Guinea": { + "id": "option.countries.Equatorial Guinea", + "defaultMessage": "Equatorial Guinea" + }, + "ER": { + "id": "option.countries.ER", + "defaultMessage": "Eritrea" + }, + "Espana": { + "id": "option.countries.Espana", + "defaultMessage": "Espana" + }, + "EE": { + "id": "option.countries.EE", + "defaultMessage": "Estonia" + }, + "ET": { + "id": "option.countries.ET", + "defaultMessage": "Ethiopia" + }, + "FK": { + "id": "option.countries.FK", + "defaultMessage": "Falkland Islands (Malvinas)" + }, + "FO": { + "id": "option.countries.FO", + "defaultMessage": "Faroe Islands" + }, + "Fiji": { + "id": "option.countries.Fiji", + "defaultMessage": "Fiji" + }, + "Finland": { + "id": "option.countries.Finland", + "defaultMessage": "Finland" + }, + "France": { + "id": "option.countries.France", + "defaultMessage": "France" + }, + "GF": { + "id": "option.countries.GF", + "defaultMessage": "French Guiana" + }, + "PF": { + "id": "option.countries.PF", + "defaultMessage": "French Polynesia" + }, + "TF": { + "id": "option.countries.TF", + "defaultMessage": "French Southern Territories" + }, + "GA": { + "id": "option.countries.GA", + "defaultMessage": "Gabon" + }, + "GM": { + "id": "option.countries.GM", + "defaultMessage": "Gambia" + }, + "GE": { + "id": "option.countries.GE", + "defaultMessage": "Georgia" + }, + "Germany": { + "id": "option.countries.Germany", + "defaultMessage": "Germany" + }, + "GH": { + "id": "option.countries.GH", + "defaultMessage": "Ghana" + }, + "GI": { + "id": "option.countries.GI", + "defaultMessage": "Gibraltar" + }, + "Greenland": { + "id": "option.countries.Greenland", + "defaultMessage": "Greenland" + }, + "GD": { + "id": "option.countries.GD", + "defaultMessage": "Grenada" + }, + "Guadeloupe": { + "id": "option.countries.Guadeloupe", + "defaultMessage": "Guadeloupe" + }, + "GU": { + "id": "option.countries.GU", + "defaultMessage": "Guam" + }, + "Guatemala": { + "id": "option.countries.Guatemala", + "defaultMessage": "Guatemala" + }, + "GG": { + "id": "option.countries.GG", + "defaultMessage": "Guernsey" + }, + "GN": { + "id": "option.countries.GN", + "defaultMessage": "Guinea" + }, + "GW": { + "id": "option.countries.GW", + "defaultMessage": "Guinea-Bissau" + }, + "Guyana": { + "id": "option.countries.Guyana", + "defaultMessage": "Guyana" + }, + "Haiti": { + "id": "option.countries.Haiti", + "defaultMessage": "Haiti" + }, + "HM": { + "id": "option.countries.HM", + "defaultMessage": "Heard Island and McDonald Islands" + }, + "Hispaniola": { + "id": "option.countries.Hispaniola", + "defaultMessage": "Hispaniola" + }, + "VA": { + "id": "option.countries.VA", + "defaultMessage": "Holy See (Vatican City State)" + }, + "Honduras": { + "id": "option.countries.Honduras", + "defaultMessage": "Honduras" + }, + "HK": { + "id": "option.countries.HK", + "defaultMessage": "Hong Kong" + }, + "HN": { + "id": "option.countries.HN", + "defaultMessage": "Hungary" + }, + "Iceland": { + "id": "option.countries.Iceland", + "defaultMessage": "Iceland" + }, + "India": { + "id": "option.countries.India", + "defaultMessage": "India" + }, + "Indonesia": { + "id": "option.countries.Indonesia", + "defaultMessage": "Indonesia" + }, + "Iran": { + "id": "option.countries.Iran", + "defaultMessage": "Iran" + }, + "IQ": { + "id": "option.countries.IQ", + "defaultMessage": "Iraq" + }, + "Ireland": { + "id": "option.countries.Ireland", + "defaultMessage": "Ireland" + }, + "IM": { + "id": "option.countries.IM", + "defaultMessage": "Isle of Man" + }, + "Israel": { + "id": "option.countries.Israel", + "defaultMessage": "Israel" + }, + "Italy": { + "id": "option.countries.Italy", + "defaultMessage": "Italy" + }, + "Jamaica": { + "id": "option.countries.Jamaica", + "defaultMessage": "Jamaica" + }, + "Japan": { + "id": "option.countries.Japan", + "defaultMessage": "Japan" + }, + "JE": { + "id": "option.countries.JE", + "defaultMessage": "Jersey" + }, + "Jordan": { + "id": "option.countries.Jordan", + "defaultMessage": "Jordan" + }, + "KZ": { + "id": "option.countries.KZ", + "defaultMessage": "Kazakhstan" + }, + "Kenya": { + "id": "option.countries.Kenya", + "defaultMessage": "Kenya" + }, + "KI": { + "id": "option.countries.KI", + "defaultMessage": "Kiribati" + }, + "KP": { + "id": "option.countries.KP", + "defaultMessage": "Korea, Democratic People’s Republic of" + }, + "KW": { + "id": "option.countries.KW", + "defaultMessage": "Kuwait" + }, + "KG": { + "id": "option.countries.KG", + "defaultMessage": "Kyrgyzstan" + }, + "LA": { + "id": "option.countries.LA", + "defaultMessage": "Lao People’s Democratic Republic" + }, + "LV": { + "id": "option.countries.LV", + "defaultMessage": "Latvia" + }, + "Lebanon": { + "id": "option.countries.Lebanon", + "defaultMessage": "Lebanon" + }, + "LS": { + "id": "option.countries.LS", + "defaultMessage": "Lesotho" + }, + "LR": { + "id": "option.countries.LR", + "defaultMessage": "Liberia" + }, + "LY": { + "id": "option.countries.LY", + "defaultMessage": "Libya" + }, + "LI": { + "id": "option.countries.LI", + "defaultMessage": "Liechtenstein" + }, + "LT": { + "id": "option.countries.LT", + "defaultMessage": "Lithuania" + }, + "LU": { + "id": "option.countries.LU", + "defaultMessage": "Luxembourg" + }, + "MO": { + "id": "option.countries.MO", + "defaultMessage": "Macao" + }, + "MK": { + "id": "option.countries.MK", + "defaultMessage": "Macedonia, the Former Yugoslav Republic of" + }, + "Madagascar": { + "id": "option.countries.Madagascar", + "defaultMessage": "Madagascar" + }, + "Malawi": { + "id": "option.countries.Malawi", + "defaultMessage": "Malawi" + }, + "Malaysia": { + "id": "option.countries.Malaysia", + "defaultMessage": "Malaysia" + }, + "MV": { + "id": "option.countries.MV", + "defaultMessage": "Maldives" + }, + "ML": { + "id": "option.countries.ML", + "defaultMessage": "Mali" + }, + "MT": { + "id": "option.countries.MT", + "defaultMessage": "Malta" + }, + "Marshall Islands": { + "id": "option.countries.Marshall Islands", + "defaultMessage": "Marshall Islands" + }, + "MQ": { + "id": "option.countries.MQ", + "defaultMessage": "Martinique" + }, + "MR": { + "id": "option.countries.MR", + "defaultMessage": "Mauritania" + }, + "MU": { + "id": "option.countries.MU", + "defaultMessage": "Mauritius" + }, + "YT": { + "id": "option.countries.YT", + "defaultMessage": "Mayotte" + }, + "Mexico": { + "id": "option.countries.Mexico", + "defaultMessage": "Mexico" + }, + "Micronesia": { + "id": "option.countries.Micronesia", + "defaultMessage": "Micronesia" + }, + "MD": { + "id": "option.countries.MD", + "defaultMessage": "Moldova, Republic of" + }, + "MC": { + "id": "option.countries.MC", + "defaultMessage": "Monaco" + }, + "Mongolia": { + "id": "option.countries.Mongolia", + "defaultMessage": "Mongolia" + }, + "ME": { + "id": "option.countries.ME", + "defaultMessage": "Montenegro" + }, + "MS": { + "id": "option.countries.MS", + "defaultMessage": "Montserrat" + }, + "Morocco": { + "id": "option.countries.Morocco", + "defaultMessage": "Morocco" + }, + "MZ": { + "id": "option.countries.MZ", + "defaultMessage": "Mozambique" + }, + "Myanmar": { + "id": "option.countries.Myanmar", + "defaultMessage": "Myanmar" + }, + "Namibia": { + "id": "option.countries.Namibia", + "defaultMessage": "Namibia" + }, + "NR": { + "id": "option.countries.NR", + "defaultMessage": "Nauru" + }, + "Nepal": { + "id": "option.countries.Nepal", + "defaultMessage": "Nepal" + }, + "Netherlands Antilles": { + "id": "option.countries.Netherlands Antilles", + "defaultMessage": "Netherlands Antilles" + }, + "Netherlands": { + "id": "option.countries.Netherlands", + "defaultMessage": "Netherlands" + }, + "New Caledonia": { + "id": "option.countries.New Caledonia", + "defaultMessage": "New Caledonia" + }, + "New Zealand": { + "id": "option.countries.New Zealand", + "defaultMessage": "New Zealand" + }, + "Nicaragua": { + "id": "option.countries.Nicaragua", + "defaultMessage": "Nicaragua" + }, + "NE": { + "id": "option.countries.NE", + "defaultMessage": "Niger" + }, + "NG": { + "id": "option.countries.NG", + "defaultMessage": "Nigeria" + }, + "Nihon": { + "id": "option.countries.Nihon", + "defaultMessage": "Nihon" + }, + "Niue": { + "id": "option.countries.Niue", + "defaultMessage": "Niue" + }, + "NF": { + "id": "option.countries.NF", + "defaultMessage": "Norfolk Island" + }, + "MP": { + "id": "option.countries.MP", + "defaultMessage": "Northern Mariana Islands" + }, + "Norway": { + "id": "option.countries.Norway", + "defaultMessage": "Norway" + }, + "OM": { + "id": "option.countries.OM", + "defaultMessage": "Oman" + }, + "Pakistan": { + "id": "option.countries.Pakistan", + "defaultMessage": "Pakistan" + }, + "PW": { + "id": "option.countries.PW", + "defaultMessage": "Palau" + }, + "PS": { + "id": "option.countries.PS", + "defaultMessage": "Palestinian Territory, Occupied" + }, + "Panama": { + "id": "option.countries.Panama", + "defaultMessage": "Panama" + }, + "Papua New Guinea": { + "id": "option.countries.Papua New Guinea", + "defaultMessage": "Papua New Guinea" + }, + "Paraguay": { + "id": "option.countries.Paraguay", + "defaultMessage": "Paraguay" + }, + "Peru": { + "id": "option.countries.Peru", + "defaultMessage": "Peru" + }, + "Philippines": { + "id": "option.countries.Philippines", + "defaultMessage": "Philippines" + }, + "PN": { + "id": "option.countries.PN", + "defaultMessage": "Pitcairn" + }, + "PL": { + "id": "option.countries.PL", + "defaultMessage": "Poland" + }, + "Polynesia": { + "id": "option.countries.Polynesia", + "defaultMessage": "Polynesia" + }, + "Polynesie francaise": { + "id": "option.countries.Polynesie francaise", + "defaultMessage": "Polynesie francaise" + }, + "Portugal": { + "id": "option.countries.Portugal", + "defaultMessage": "Portugal" + }, + "Prathet Thai": { + "id": "option.countries.Prathet Thai", + "defaultMessage": "Prathet Thai" + }, + "Puerto Rico": { + "id": "option.countries.Puerto Rico", + "defaultMessage": "Puerto Rico" + }, + "QA": { + "id": "option.countries.QA", + "defaultMessage": "Qatar" + }, + "Republica Dominicana": { + "id": "option.countries.Republica Dominicana", + "defaultMessage": "Republica Dominicana" + }, + "Reunion": { + "id": "option.countries.Reunion", + "defaultMessage": "Reunion" + }, + "RO": { + "id": "option.countries.RO", + "defaultMessage": "Romania" + }, + "Russia": { + "id": "option.countries.Russia", + "defaultMessage": "Russia" + }, + "RW": { + "id": "option.countries.RW", + "defaultMessage": "Rwanda" + }, + "BL": { + "id": "option.countries.BL", + "defaultMessage": "Saint Barthélemy" + }, + "Saint Helena": { + "id": "option.countries.Saint Helena", + "defaultMessage": "Saint Helena" + }, + "KN": { + "id": "option.countries.KN", + "defaultMessage": "Saint Kitts and Nevis" + }, + "Saint Lucia": { + "id": "option.countries.Saint Lucia", + "defaultMessage": "Saint Lucia" + }, + "MF": { + "id": "option.countries.MF", + "defaultMessage": "Saint Martin (French Part)" + }, + "PM": { + "id": "option.countries.PM", + "defaultMessage": "Saint Pierre and Miquelon" + }, + "VC": { + "id": "option.countries.VC", + "defaultMessage": "Saint Vincent and the Grenadines" + }, + "Samoa": { + "id": "option.countries.Samoa", + "defaultMessage": "Samoa" + }, + "SM": { + "id": "option.countries.SM", + "defaultMessage": "San Marino" + }, + "ST": { + "id": "option.countries.ST", + "defaultMessage": "Sao Tome and Principe" + }, + "SA": { + "id": "option.countries.SA", + "defaultMessage": "Saudi Arabia" + }, + "Scotland": { + "id": "option.countries.Scotland", + "defaultMessage": "Scotland" + }, + "SN": { + "id": "option.countries.SN", + "defaultMessage": "Senegal" + }, + "RS": { + "id": "option.countries.RS", + "defaultMessage": "Serbia" + }, + "Seychelles": { + "id": "option.countries.Seychelles", + "defaultMessage": "Seychelles" + }, + "SL": { + "id": "option.countries.SL", + "defaultMessage": "Sierra Leone" + }, + "SG": { + "id": "option.countries.SG", + "defaultMessage": "Singapore" + }, + "SX": { + "id": "option.countries.SX", + "defaultMessage": "Sint Maarten (Dutch Part)" + }, + "SK": { + "id": "option.countries.SK", + "defaultMessage": "Slovakia" + }, + "Slovenia": { + "id": "option.countries.Slovenia", + "defaultMessage": "Slovenia" + }, + "SO": { + "id": "option.countries.SO", + "defaultMessage": "Somalia" + }, + "Solomon Islands": { + "id": "option.countries.Solomon Islands", + "defaultMessage": "Solomon Islands" + }, + "South Africa": { + "id": "option.countries.South Africa", + "defaultMessage": "South Africa" + }, + "GS": { + "id": "option.countries.GS", + "defaultMessage": "South Georgia and the South Sandwich Islands" + }, + "South Korea": { + "id": "option.countries.South Korea", + "defaultMessage": "South Korea" + }, + "SS": { + "id": "option.countries.SS", + "defaultMessage": "South Sudan" + }, + "Spain": { + "id": "option.countries.Spain", + "defaultMessage": "Spain" + }, + "Sri Lanka": { + "id": "option.countries.Sri Lanka", + "defaultMessage": "Sri Lanka" + }, + "Sudan": { + "id": "option.countries.Sudan", + "defaultMessage": "Sudan" + }, + "Suriname": { + "id": "option.countries.Suriname", + "defaultMessage": "Suriname" + }, + "SJ": { + "id": "option.countries.SJ", + "defaultMessage": "Svalbard and Jan Mayen" + }, + "SZ": { + "id": "option.countries.SZ", + "defaultMessage": "Swaziland" + }, + "Sweden": { + "id": "option.countries.Sweden", + "defaultMessage": "Sweden" + }, + "CH": { + "id": "option.countries.CH", + "defaultMessage": "Switzerland" + }, + "Syria": { + "id": "option.countries.Syria", + "defaultMessage": "Syria" + }, + "Taiwan": { + "id": "option.countries.Taiwan", + "defaultMessage": "Taiwan" + }, + "TJ": { + "id": "option.countries.TJ", + "defaultMessage": "Tajikistan" + }, + "Tanzania": { + "id": "option.countries.Tanzania", + "defaultMessage": "Tanzania" + }, + "Thailand": { + "id": "option.countries.Thailand", + "defaultMessage": "Thailand" + }, + "TL": { + "id": "option.countries.TL", + "defaultMessage": "Timor-Leste" + }, + "TG": { + "id": "option.countries.TG", + "defaultMessage": "Togo" + }, + "TK": { + "id": "option.countries.TK", + "defaultMessage": "Tokelau" + }, + "Tonga": { + "id": "option.countries.Tonga", + "defaultMessage": "Tonga" + }, + "Trinidad and Tobago": { + "id": "option.countries.Trinidad and Tobago", + "defaultMessage": "Trinidad and Tobago" + }, + "TN": { + "id": "option.countries.TN", + "defaultMessage": "Tunisia" + }, + "Turkey": { + "id": "option.countries.Turkey", + "defaultMessage": "Turkey" + }, + "TM": { + "id": "option.countries.TM", + "defaultMessage": "Turkmenistan" + }, + "TC": { + "id": "option.countries.TC", + "defaultMessage": "Turks and Caicos Islands" + }, + "TV": { + "id": "option.countries.TV", + "defaultMessage": "Tuvalu" + }, + "Uganda": { + "id": "option.countries.Uganda", + "defaultMessage": "Uganda" + }, + "UA": { + "id": "option.countries.UA", + "defaultMessage": "Ukraine" + }, + "AE": { + "id": "option.countries.AE", + "defaultMessage": "United Arab Emirates" + }, + "United Kingdom": { + "id": "option.countries.United Kingdom", + "defaultMessage": "United Kingdom" + }, + "UM": { + "id": "option.countries.UM", + "defaultMessage": "United States Minor Outlying Islands" + }, + "Uruguay": { + "id": "option.countries.Uruguay", + "defaultMessage": "Uruguay" + }, + "USA": { + "id": "option.countries.USA", + "defaultMessage": "USA" + }, + "UZ": { + "id": "option.countries.UZ", + "defaultMessage": "Uzbekistan" + }, + "Vanuatu": { + "id": "option.countries.Vanuatu", + "defaultMessage": "Vanuatu" + }, + "Venezuela": { + "id": "option.countries.Venezuela", + "defaultMessage": "Venezuela" + }, + "Viet Nam": { + "id": "option.countries.Viet Nam", + "defaultMessage": "Viet Nam" + }, + "VG": { + "id": "option.countries.VG", + "defaultMessage": "Virgin Islands, British" + }, + "Virgin Islands": { + "id": "option.countries.Virgin Islands", + "defaultMessage": "Virgin Islands" + }, + "WF": { + "id": "option.countries.WF", + "defaultMessage": "Wallis and Futuna" + }, + "EH": { + "id": "option.countries.EH", + "defaultMessage": "Western Sahara" + }, + "Western Samoa": { + "id": "option.countries.Western Samoa", + "defaultMessage": "Western Samoa" + }, + "YE": { + "id": "option.countries.YE", + "defaultMessage": "Yemen" + }, + "ZM": { + "id": "option.countries.ZM", + "defaultMessage": "Zambia" + }, + "Zhonghua": { + "id": "option.countries.Zhonghua", + "defaultMessage": "Zhonghua" + }, + "ZW": { + "id": "option.countries.ZW", + "defaultMessage": "Zimbabwe" + } + } + }, + "higherGeographies": { + "values": [ + "pacificocean", + "North America" + ], + "messages": { + "pacificocean": { + "id": "option.geographies.pacificocean", + "defaultMessage": "Pacific Ocean" + }, + "North America": { + "id": "option.geographies.North America", + "defaultMessage": "North America" + } + } + }, + "coordUncertaintyUnits": { + "values": [ + "unknown", + "feet", + "kilometers", + "meters", + "miles" + ], + "messages": { + "unknown": { + "id": "option.coordUncertaintyUnits.unknown", + "defaultMessage": "unknown" + }, + "feet": { + "id": "option.coordUncertaintyUnits.feet", + "defaultMessage": "feet" + }, + "kilometers": { + "id": "option.coordUncertaintyUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.coordUncertaintyUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.coordUncertaintyUnits.miles", + "defaultMessage": "miles" + } + } + }, + "depthUnits": { + "values": [ + "uncertain", + "centimeters", + "inches", + "fathoms", + "feet", + "furlongs", + "kilometers", + "meters", + "miles", + "rods" + ], + "messages": { + "uncertain": { + "id": "option.depthUnits.uncertain", + "defaultMessage": "uncertain" + }, + "centimeters": { + "id": "option.depthUnits.centimeters", + "defaultMessage": "centimeters" + }, + "inches": { + "id": "option.depthUnits.inches", + "defaultMessage": "inches" + }, + "fathoms": { + "id": "option.depthUnits.fathoms", + "defaultMessage": "fathoms" + }, + "feet": { + "id": "option.depthUnits.feet", + "defaultMessage": "feet" + }, + "furlongs": { + "id": "option.depthUnits.furlongs", + "defaultMessage": "furlongs" + }, + "kilometers": { + "id": "option.depthUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.depthUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.depthUnits.miles", + "defaultMessage": "miles" + }, + "rods": { + "id": "option.depthUnits.rods", + "defaultMessage": "rods" + } + } + }, + "elevationUnits": { + "values": [ + "uncertain", + "feet", + "meters" + ], + "messages": { + "uncertain": { + "id": "option.elevationUnits.uncertain", + "defaultMessage": "uncertain" + }, + "feet": { + "id": "option.elevationUnits.feet", + "defaultMessage": "feet" + }, + "meters": { + "id": "option.elevationUnits.meters", + "defaultMessage": "meters" + } + } + }, + "distanceAboveSurfaceUnits": { + "values": [ + "uncertain", + "centimeters", + "inches", + "fathoms", + "feet", + "furlongs", + "kilometers", + "meters", + "miles", + "rods" + ], + "messages": { + "uncertain": { + "id": "option.distanceAboveSurfaceUnits.uncertain", + "defaultMessage": "uncertain" + }, + "centimeters": { + "id": "option.distanceAboveSurfaceUnits.centimeters", + "defaultMessage": "centimeters" + }, + "inches": { + "id": "option.distanceAboveSurfaceUnits.inches", + "defaultMessage": "inches" + }, + "fathoms": { + "id": "option.distanceAboveSurfaceUnits.fathoms", + "defaultMessage": "fathoms" + }, + "feet": { + "id": "option.distanceAboveSurfaceUnits.feet", + "defaultMessage": "feet" + }, + "furlongs": { + "id": "option.distanceAboveSurfaceUnits.furlongs", + "defaultMessage": "furlongs" + }, + "kilometers": { + "id": "option.distanceAboveSurfaceUnits.kilometers", + "defaultMessage": "kilometers" + }, + "meters": { + "id": "option.distanceAboveSurfaceUnits.meters", + "defaultMessage": "meters" + }, + "miles": { + "id": "option.distanceAboveSurfaceUnits.miles", + "defaultMessage": "miles" + }, + "rods": { + "id": "option.distanceAboveSurfaceUnits.rods", + "defaultMessage": "rods" + } + } + }, + "georefProtocols": { + "values": [ + "chapman-wieczorek-2006-guide-best-practices-georeferencing", + "manis-herpnet-ornis-georeferencing-guidelines", + "georeferencing-dummies", + "biogeomancer" + ], + "messages": { + "chapman-wieczorek-2006-guide-best-practices-georeferencing": { + "id": "option.georefProtocols.chapman-wieczorek-2006-guide-best-practices-georeferencing", + "defaultMessage": "Chapman, Wieczorek 2006, Guide to Best Practices for Georeferencing" + }, + "manis-herpnet-ornis-georeferencing-guidelines": { + "id": "option.georefProtocols.manis-herpnet-ornis-georeferencing-guidelines", + "defaultMessage": "MaNIS/HerpNet/ORNIS Georeferencing Guidelines" + }, + "georeferencing-dummies": { + "id": "option.georefProtocols.georeferencing-dummies", + "defaultMessage": "Georeferencing For Dummies" + }, + "biogeomancer": { + "id": "option.georefProtocols.biogeomancer", + "defaultMessage": "BioGeomancer" + } + } + }, + "georefVerificationStatuses": { + "values": [ + "unverified", + "verified-data-custodian", + "verified-contributor" + ], + "messages": { + "unverified": { + "id": "option.georefVerificationStatuses.unverified", + "defaultMessage": "unverified" + }, + "verified-data-custodian": { + "id": "option.georefVerificationStatuses.verified-data-custodian", + "defaultMessage": "verified by data custodian" + }, + "verified-contributor": { + "id": "option.georefVerificationStatuses.verified-contributor", + "defaultMessage": "verified by contributor" + } + } + }, + "sexDeterminations": { + "values": [ + "Female", + "Probably female", + "Possibly female", + "Male", + "Probably male", + "Possibly male", + "Indeterminate", + "Unknown" + ], + "messages": { + "Female": { + "id": "option.sexDeterminations.Female", + "defaultMessage": "female" + }, + "Probably female": { + "id": "option.sexDeterminations.Probably female", + "defaultMessage": "probably female" + }, + "Possibly female": { + "id": "option.sexDeterminations.Possibly female", + "defaultMessage": "possibly female" + }, + "Male": { + "id": "option.sexDeterminations.Male", + "defaultMessage": "male" + }, + "Probably male": { + "id": "option.sexDeterminations.Probably male", + "defaultMessage": "probably male" + }, + "Possibly male": { + "id": "option.sexDeterminations.Possibly male", + "defaultMessage": "possibly male" + }, + "Indeterminate": { + "id": "option.sexDeterminations.Indeterminate", + "defaultMessage": "indeterminate" + }, + "Unknown": { + "id": "option.sexDeterminations.Unknown", + "defaultMessage": "unknown" + } + } + }, + "osteoLevels": { + "values": [ + "0", + "3", + "2b", + "2a", + "1", + "C" + ], + "messages": { + "0": { + "id": "option.osteoLevels.0", + "defaultMessage": "absent" + }, + "1": { + "id": "option.osteoLevels.1", + "defaultMessage": ">75% present" + }, + "3": { + "id": "option.osteoLevels.3", + "defaultMessage": "<25% present" + }, + "2b": { + "id": "option.osteoLevels.2b", + "defaultMessage": "25-50% present" + }, + "2a": { + "id": "option.osteoLevels.2a", + "defaultMessage": "50-75% present" + }, + "C": { + "id": "option.osteoLevels.C", + "defaultMessage": "complete" + } + } + }, + "osteoAbsoluteLevels": { + "values": [ + "0", + "C" + ], + "messages": { + "0": { + "id": "option.osteoAbsoluteLevels.0", + "defaultMessage": "absent" + }, + "C": { + "id": "option.osteoAbsoluteLevels.C", + "defaultMessage": "complete" + } + } + }, + "osteoCompleteStates": { + "values": [ + "C" + ], + "messages": { + "C": { + "id": "option.osteoCompleteStates.C", + "defaultMessage": "yes" + } + } + }, + "taxonTermTypes": { + "values": [ + "descriptor", + "alternate descriptor", + "used for term" + ], + "messages": { + "descriptor": { + "id": "option.taxonTermTypes.descriptor", + "defaultMessage": "descriptor" + }, + "alternate descriptor": { + "id": "option.taxonTermTypes.alternate descriptor", + "defaultMessage": "alternate descriptor" + }, + "used for term": { + "id": "option.taxonTermTypes.used for term", + "defaultMessage": "used for term" + } + } + }, + "taxonTermStatuses": { + "values": [ + "provisional", + "under review", + "accepted", + "rejected" + ], + "messages": { + "provisional": { + "id": "option.taxonTermStatuses.provisional", + "defaultMessage": "provisional" + }, + "under review": { + "id": "option.taxonTermStatuses.under review", + "defaultMessage": "under review" + }, + "accepted": { + "id": "option.taxonTermStatuses.accepted", + "defaultMessage": "accepted" + }, + "rejected": { + "id": "option.taxonTermStatuses.rejected", + "defaultMessage": "rejected" + } + } + }, + "taxonomicStatuses": { + "values": [ + "valid", + "invalid", + "accepted", + "misapplied name" + ], + "messages": { + "valid": { + "id": "option.taxonomicStatuses.valid", + "defaultMessage": "valid" + }, + "invalid": { + "id": "option.taxonomicStatuses.invalid", + "defaultMessage": "invalid" + }, + "accepted": { + "id": "option.taxonomicStatuses.accepted", + "defaultMessage": "accepted" + }, + "misapplied name": { + "id": "option.taxonomicStatuses.misapplied name", + "defaultMessage": "misapplied name" + } + } + }, + "taxonRanks": { + "values": [ + "domain", + "kingdom", + "phylum", + "division", + "family", + "class", + "order", + "genus", + "species" + ], + "messages": { + "domain": { + "id": "option.taxonRanks.domain", + "defaultMessage": "domain" + }, + "kingdom": { + "id": "option.taxonRanks.kingdom", + "defaultMessage": "kingdom" + }, + "phylum": { + "id": "option.taxonRanks.phylum", + "defaultMessage": "phylum" + }, + "division": { + "id": "option.taxonRanks.division", + "defaultMessage": "division" + }, + "family": { + "id": "option.taxonRanks.family", + "defaultMessage": "family" + }, + "class": { + "id": "option.taxonRanks.class", + "defaultMessage": "class" + }, + "order": { + "id": "option.taxonRanks.order", + "defaultMessage": "order" + }, + "genus": { + "id": "option.taxonRanks.genus", + "defaultMessage": "genus" + }, + "species": { + "id": "option.taxonRanks.species", + "defaultMessage": "species" + } + } + }, + "taxonCurrencies": { + "values": [ + "current", + "obsolete", + "archaic" + ], + "messages": { + "current": { + "id": "option.taxonCurrencies.current", + "defaultMessage": "current" + }, + "obsolete": { + "id": "option.taxonCurrencies.obsolete", + "defaultMessage": "obsolete" + }, + "archaic": { + "id": "option.taxonCurrencies.archaic", + "defaultMessage": "archaic" + } + } + }, + "taxonAuthorTypes": { + "values": [ + "ascribed", + "parenthetical" + ], + "messages": { + "ascribed": { + "id": "option.taxonAuthorTypes.ascribed", + "defaultMessage": "ascribed" + }, + "parenthetical": { + "id": "option.taxonAuthorTypes.parenthetical", + "defaultMessage": "parenthetical" + } + } + }, + "nagpraNoticeDateTypes": { + "values": [ + "begin", + "end" + ], + "messages": { + "begin": { + "id": "option.nagpraNoticeDateTypes.begin", + "defaultMessage": "period begins" + }, + "end": { + "id": "option.nagpraNoticeDateTypes.end", + "defaultMessage": "period ends" + } + } + }, + "ohcNameLevels": { + "values": [ + "primary", + "secondary" + ], + "messages": { + "group": { + "id": "option.nameLevels.primary", + "defaultMessage": "primary" + }, + "subgroup": { + "id": "option.nameLevels.secondary", + "defaultMessage": "secondary" + } + } + } + }, + "invocables": { + "batch": { + "org.collectionspace.services.batch.nuxeo.MergeAuthorityItemsBatchJob": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "target": { + "[config]": { + "messages": { + "name": { + "id": "field.batch.Merge Authority Items.targetCSID.name", + "defaultMessage": "Target record" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "disableAltTerms": true, + "source": "citation/local,citation/worldcat,concept/activity,concept/associated,concept/material,organization/local,organization/ulan,person/local,person/ulan,place/local,place/tgn,location/local,location/offsite,work/local", + "showQuickAdd": false + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "target" + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "org.collectionspace.services.batch.nuxeo.MergeAuthorityItemsBatchJob" + }, + "org.collectionspace.services.batch.nuxeo.UpdateInventoryStatusBatchJob": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.batch.UpdateInventoryStatusBatchJob.inventoryStatus.name", + "defaultMessage": "New inventory status" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "inventorystatus" + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "org.collectionspace.services.batch.nuxeo.UpdateInventoryStatusBatchJob" + } + }, + "report": { + "systematicInventory": { + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "startLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.report.systematicInventory.startLocation.name", + "defaultMessage": "From location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "showQuickAdd": false, + "source": "location/local,location/offsite" + } + } + } + }, + "endLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.report.systematicInventory.endLocation.name", + "defaultMessage": "To location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "showQuickAdd": false, + "source": "location/local,location/offsite" + } + } + } + } + } + }, + "forms": { + "default": { + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "startLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "endLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "systematicInventory" + } + } + }, + "listTypes": { + "account": { + "listNodeName": "ns2:accounts-common-list", + "itemNodeName": "account-list-item", + "messages": { + "resultCount": { + "id": "list.account.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No users} one {1 user} other {{startNum, number}–{endNum, number} of {totalItems, number} users}} found" + }, + "searching": { + "id": "list.account.searching", + "defaultMessage": "Finding users..." + } + } + }, + "audit": { + "listNodeName": "ns3:audit_common_list", + "itemNodeName": "audit-list-item", + "messages": { + "resultCount": { + "id": "list.audit.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No records} one {1 record} other {{startNum, number}–{endNum, number} of {totalItems, number} records}} found" + }, + "searching": { + "id": "list.audit.searching", + "defaultMessage": "Finding audit records..." + } + } + }, + "authRef": { + "listNodeName": "ns3:authority-ref-list", + "itemNodeName": "authority-ref-item", + "messages": { + "resultCount": { + "id": "list.authRef.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No terms} one {1 term} other {{startNum, number}–{endNum, number} of {totalItems, number} terms}} found" + }, + "searching": { + "id": "list.authRef.searching", + "defaultMessage": "Finding terms..." + } + } + }, + "common": { + "listNodeName": "ns2:abstract-common-list", + "itemNodeName": "list-item", + "messages": { + "resultCount": { + "id": "list.common.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No records} one {1 record} other {{startNum, number}–{endNum, number} of {totalItems, number} records}} found" + }, + "searching": { + "id": "list.common.searching", + "defaultMessage": "Finding records..." + } + } + }, + "refDoc": { + "listNodeName": "ns3:authority-ref-doc-list", + "itemNodeName": "authority-ref-doc-item", + "messages": { + "resultCount": { + "id": "list.refDoc.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No uses} one {1 use} other {{startNum, number}–{endNum, number} of {totalItems, number} uses}} found" + }, + "searching": { + "id": "list.refDoc.searching", + "defaultMessage": "Finding uses..." + } + } + }, + "role": { + "listNodeName": "ns2:roles_list", + "itemNodeName": "role", + "messages": { + "resultCount": { + "id": "list.role.resultCount", + "defaultMessage": "{totalItems, plural, =0 {No roles} one {1 role} other {{startNum, number}–{endNum, number} of {totalItems, number} roles}} found" + }, + "searching": { + "id": "list.role.searching", + "defaultMessage": "Finding roles..." + } + } + } + }, + "recordTypes": { + "account": { + "messages": { + "record": { + "name": { + "id": "record.account.name", + "defaultMessage": "User" + }, + "collectionName": { + "id": "record.account.collectionName", + "defaultMessage": "Users" + } + } + }, + "serviceConfig": { + "servicePath": "accounts", + "serviceType": "security" + }, + "columns": { + "default": { + "screenName": { + "messages": { + "label": { + "id": "column.account.default.screenName", + "defaultMessage": "Full Name" + } + }, + "order": 10, + "width": 250 + }, + "status": { + "messages": { + "label": { + "id": "column.account.default.status", + "defaultMessage": "Status" + } + }, + "order": 20, + "width": 50 + } + } + }, + "deletePermType": "hard", + "fields": { + "ns2:accounts_common": { + "[config]": { + "messages": { + "errorNotConfirmed": { + "id": "field.accounts_common.errorNotConfirmed", + "defaultMessage": "Password and confirm password must be identical." + } + }, + "service": { + "ns": "http://collectionspace.org/services/account" + }, + "view": { + "type": "CompoundInput" + } + }, + "@csid": { + "[config]": { + "cloneable": false + } + }, + "createdAt": { + "[config]": { + "cloneable": false + } + }, + "updatedAt": { + "[config]": { + "cloneable": false + } + }, + "metadataProtection": { + "[config]": { + "cloneable": false + } + }, + "rolesProtection": { + "[config]": { + "cloneable": false + } + }, + "screenName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.screenName.name", + "defaultMessage": "Full name" + } + }, + "required": true, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "email": { + "[config]": { + "cloneable": false, + "messages": { + "errorInvalidEmail": { + "id": "field.accounts_common.email.errorInvalidEmail", + "defaultMessage": "Email is not a valid address. Correct the value {value}." + }, + "name": { + "id": "field.accounts_common.email.name", + "defaultMessage": "Email address" + } + }, + "required": true, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-email" + } + } + } + }, + "password": { + "[config]": { + "cloneable": false, + "messages": { + "errorInvalidPassword": { + "id": "field.accounts_common.password.errorInvalidPassword", + "defaultMessage": "Password must be between 8 and 24 characters." + }, + "name": { + "id": "field.accounts_common.password.name", + "defaultMessage": "Password" + } + }, + "view": { + "type": "PasswordInput", + "props": { + "autoComplete": "new-password" + } + } + } + }, + "confirmPassword": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.passwordConfirmation.name", + "defaultMessage": "Confirm password" + } + }, + "view": { + "type": "PasswordInput", + "props": { + "autoComplete": "new-password" + } + } + } + }, + "status": { + "[config]": { + "defaultValue": "active", + "messages": { + "name": { + "id": "field.accounts_common.status.name", + "defaultMessage": "Status" + } + }, + "required": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "accountStatuses" + } + } + } + }, + "userId": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.accounts_common.userId.name", + "defaultMessage": "User ID" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "roleList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "role": { + "[config]": { + "defaultValue": [ + + ], + "messages": { + "name": { + "id": "field.account.role.name", + "defaultMessage": "Roles" + } + }, + "view": { + "type": "RolesInput", + "props": { + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.account.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "ns3:accounts_common", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "email" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "screenName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "password" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "confirmPassword" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "status" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userId" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "roleList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "role" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "account" + }, + "acquisition": { + "messages": { + "record": { + "name": { + "id": "record.aquisition.name", + "defaultMessage": "Acquisition" + }, + "collectionName": { + "id": "record.acquisition.collectionName", + "defaultMessage": "Acquisitions" + } + }, + "panel": { + "info": { + "id": "panel.acquisition.info", + "defaultMessage": "Acquisition Information" + }, + "objectCollectionInformation": { + "id": "panel.acquisition.objectCollectionInformation", + "defaultMessage": "Object Collection Information" + }, + "priceInformation": { + "id": "panel.acquisition.priceInformation", + "defaultMessage": "Price Information" + } + }, + "inputTable": { + "acquisitionAuthorizer": { + "id": "inputTable.acquisition.acquisitionAuthorizer", + "defaultMessage": "Authorization" + }, + "groupPurchasePrice": { + "id": "inputTable.acquisition.groupPurchasePrice", + "defaultMessage": "Group purchase price" + }, + "objectOfferPrice": { + "id": "inputTable.acquisition.objectOfferPrice", + "defaultMessage": "Object offer price" + }, + "objectPurchaseOfferPrice": { + "id": "inputTable.acquisition.objectPurchaseOfferPrice", + "defaultMessage": "Object purchaser offer price" + }, + "objectPurchasePrice": { + "id": "inputTable.acquisition.objectPurchasePrice", + "defaultMessage": "Object purchase price" + }, + "originalObjectPurchasePrice": { + "id": "inputTable.acquisition.originalObjectPurchasePrice", + "defaultMessage": "Original object purchase price" + } + } + }, + "serviceConfig": { + "serviceName": "Acquisition", + "servicePath": "acquisitions", + "serviceType": "procedure", + "objectName": "Acquisition", + "documentName": "acquisitions" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:acquisitions_common/acquisitionReferenceNumber" + }, + { + "op": "range", + "path": "ns2:acquisitions_common/accessionDateGroup" + }, + { + "op": "range", + "path": "ns2:acquisitions_common/acquisitionDateGroupList/acquisitionDateGroup" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionMethod" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionSources/acquisitionSource" + }, + { + "op": "eq", + "path": "ns2:acquisitions_common/acquisitionFundingList/acquisitionFunding/acquisitionFundingSource" + }, + { + "op": "cont", + "path": "ns2:acquisitions_common/creditLine" + }, + { + "op": "cont", + "path": "ns2:acquisitions_common/fieldCollectionEventNames/fieldCollectionEventName" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "acquisitionReferenceNumber": { + "messages": { + "label": { + "id": "column.acquisition.default.acquisitionReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "acquisitions_common:acquisitionReferenceNumber", + "width": 250 + }, + "acquisitionSource": { + "messages": { + "label": { + "id": "column.acquisition.default.acquisitionSource", + "defaultMessage": "Acquisition source" + } + }, + "order": 20, + "sortBy": "acquisitions_common:acquisitionSources/0", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.acquisition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:acquisitions_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:acquisitions_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:acquisitions_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/acquisition" + } + }, + "acquisitionReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.acquisitions_common.acquisitionReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.acquisitions_common.acquisitionReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "accession,archives,library" + } + } + } + }, + "accessionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.accessionDateGroup.name", + "defaultMessage": "Accession date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "acquisitionAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "acquisitionAuthorizerDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionAuthorizerDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.acquisitions_common.acquisitionAuthorizerDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "acquisitionDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionDateGroup.name", + "defaultMessage": "Acquisition date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "acquisitionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionMethod.name", + "defaultMessage": "Acquisition method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "acquisitionMethods" + } + } + } + }, + "acquisitionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionSource": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionSource.name", + "defaultMessage": "Acquisition source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "owners": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.owner.name", + "defaultMessage": "Owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "transferOfTitleNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.transferOfTitleNumber.name", + "defaultMessage": "Transfer of title number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "approvalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.approvalGroup.name", + "defaultMessage": "Approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalGroup.approvalGroup.fullName", + "defaultMessage": "Approval group" + }, + "name": { + "id": "field.acquisitions_common.approvalGroup.approvalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "approvalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalIndividual.fullName", + "defaultMessage": "Approval individual" + }, + "name": { + "id": "field.acquisitions_common.approvalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "approvalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalStatus.fullName", + "defaultMessage": "Approval status" + }, + "name": { + "id": "field.acquisitions_common.approvalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "approvalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.acquisitions_common.approvalDate.fullName", + "defaultMessage": "Approval status date" + }, + "name": { + "id": "field.acquisitions_common.approvalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "approvalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.approvalNote.name", + "defaultMessage": "Note" + }, + "fullName": { + "id": "field.acquisitions_common.approvalNote.fullName", + "defaultMessage": "Approval note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "groupPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.groupPurchasePriceCurrency.fullName", + "defaultMessage": "Group purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.groupPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "groupPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.groupPurchasePriceValue.fullName", + "defaultMessage": "Group purchase price value" + }, + "name": { + "id": "field.acquisitions_common.groupPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectOfferPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectOfferPriceCurrency.fullName", + "defaultMessage": "Object offer price currency" + }, + "name": { + "id": "field.acquisitions_common.objectOfferPriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectOfferPriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectOfferPriceValue.fullName", + "defaultMessage": "Object offer price value" + }, + "name": { + "id": "field.acquisitions_common.objectOfferPriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectPurchaseOfferPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceCurrency.fullName", + "defaultMessage": "Object purchaser offer price currency" + }, + "name": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectPurchaseOfferPriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceValue.fullName", + "defaultMessage": "Object purchaser offer price value" + }, + "name": { + "id": "field.acquisitions_common.objectPurchaseOfferPriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchasePriceCurrency.fullName", + "defaultMessage": "Object purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.objectPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "objectPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.objectPurchasePriceValue.fullName", + "defaultMessage": "Object purchase price value" + }, + "name": { + "id": "field.acquisitions_common.objectPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "originalObjectPurchasePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.originalObjectPurchasePriceCurrency.fullName", + "defaultMessage": "Original object purchase price currency" + }, + "name": { + "id": "field.acquisitions_common.originalObjectPurchasePriceCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "originalObjectPurchasePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.originalObjectPurchasePriceValue.fullName", + "defaultMessage": "Original object purchase price value" + }, + "name": { + "id": "field.acquisitions_common.originalObjectPurchasePriceValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "acquisitionReason": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionReason.name", + "defaultMessage": "Acquisition reason" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionProvisos": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionProvisos.name", + "defaultMessage": "Provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "acquisitionFundingList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "acquisitionFunding": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.acquisitionFunding.name", + "defaultMessage": "Funding" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "acquisitionFundingCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingCurrency.fullName", + "defaultMessage": "Funding currency" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "acquisitionFundingValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingValue.fullName", + "defaultMessage": "Funding value" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "acquisitionFundingSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingSource.fullName", + "defaultMessage": "Funding source" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "acquisitionFundingSourceProvisos": { + "[config]": { + "messages": { + "fullName": { + "id": "field.acquisitions_common.acquisitionFundingSourceProvisos.fullName", + "defaultMessage": "Funding source provisos" + }, + "name": { + "id": "field.acquisitions_common.acquisitionFundingSourceProvisos.name", + "defaultMessage": "Source provisos" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldCollectionEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.acquisitions_common.fieldCollectionEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.acquisition.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "priceInformation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectOfferPriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchaseOfferPriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalObjectPurchasePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionProvisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFunding", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "acquisitionFundingSourceProvisos" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectCollectionInformation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventName" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "acquisition" + }, + "all": { + "messages": { + "record": { + "name": { + "id": "record.all.name", + "defaultMessage": "Record" + }, + "collectionName": { + "id": "record.all.collectionName", + "defaultMessage": "All Records" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/common/items", + "serviceType": "utility", + "objectName": "ServiceGroup/All" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "docNumber": { + "messages": { + "label": { + "id": "column.all.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 20, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.all.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 30, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.all.default.docType", + "defaultMessage": "Type" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.all.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "all" + }, + "audit": { + "messages": { + "record": { + "name": { + "id": "record.audit.name", + "defaultMessage": "Audit" + }, + "collectionName": { + "id": "record.audit.collectionName", + "defaultMessage": "Audits" + } + }, + "panel": { + "info": { + "id": "panel.audit.info", + "defaultMessage": "Audit Information" + }, + "change": { + "id": "panel.audit.change", + "defaultMessage": "Record Change Information" + } + } + }, + "serviceConfig": { + "serviceName": "Audits", + "servicePath": "audit", + "serviceType": "audit", + "objectName": "Audit", + "documentName": "audits" + }, + "fields": { + "ns3:audit_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/audit" + }, + "view": { + "type": "CompoundInput" + } + }, + "csid": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.csid.name", + "defaultMessage": "Audit record identifier" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "idNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.audit_common.idNumber.fullName", + "defaultMessage": "Audit record id" + }, + "name": { + "id": "field.audit_common.idNumber.name", + "defaultMessage": "Id" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "resourceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.audit_common.resourceType.fullName", + "defaultMessage": "Related record type" + }, + "name": { + "id": "field.audit_common.resourceType.name", + "defaultMessage": "Record type" + } + }, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + }, + "resourceCSID": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.resourceCSID.name", + "defaultMessage": "Audited record identifier" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "saveMessage": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.saveMessage.name", + "defaultMessage": "Save message" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventComment": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.eventComment.name", + "defaultMessage": "Event comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventType": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.eventType.name", + "defaultMessage": "Audit event type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "eventTypes", + "readOnly": true + } + } + } + }, + "principal": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.principal.name", + "defaultMessage": "Updated by" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "eventDate": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.audit_common.eventDate.name", + "defaultMessage": "Updated at" + } + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "fieldChangedGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldChangedGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "key": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.key.name", + "defaultMessage": "Key" + } + }, + "view": { + "type": "FieldTextInput", + "props": { + "readOnly": true + } + } + } + }, + "fieldName": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.fieldName.name", + "defaultMessage": "Field" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "originalValue": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.originalValue.name", + "defaultMessage": "Original value" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true, + "readOnly": true + } + } + } + }, + "newValue": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.newValue.name", + "defaultMessage": "New value" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true, + "readOnly": true + } + } + } + }, + "changeReason": { + "[config]": { + "messages": { + "name": { + "id": "field.audit_common.changeReason.name", + "defaultMessage": "Change reason" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.audit.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "csid" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "resourceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "resourceCSID" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "principal" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "eventDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "eventType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "change", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldChangedGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldChangedGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "key" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "originalValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "newValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "columns": { + "default": { + "principal": { + "messages": { + "label": { + "id": "column.audit.default.updatedBy", + "defaultMessage": "By" + } + }, + "order": 10, + "width": 450 + }, + "eventDate": { + "messages": { + "label": { + "id": "column.audit.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "width": 150 + } + } + }, + "name": "audit" + }, + "authority": { + "messages": { + "record": { + "name": { + "id": "record.authority.name", + "defaultMessage": "Authority Item" + }, + "collectionName": { + "id": "record.authority.collectionName", + "defaultMessage": "Authority Items" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/authority/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Authority" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "docName": { + "messages": { + "label": { + "id": "column.authority.default.docName", + "defaultMessage": "Item" + } + }, + "order": 10, + "width": 200 + }, + "docType": { + "messages": { + "label": { + "id": "column.authority.default.docType", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.authority.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.authority.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "authority" + }, + "authrole": { + "messages": { + "record": { + "name": { + "id": "record.authrole.name", + "defaultMessage": "Role" + }, + "collectionName": { + "id": "record.authrole.collectionName", + "defaultMessage": "Roles" + } + } + }, + "serviceConfig": { + "servicePath": "authorization/roles", + "serviceType": "security" + }, + "columns": { + "default": { + "displayName": { + "messages": { + "label": { + "id": "column.authRole.default.displayName", + "defaultMessage": "Name" + } + }, + "order": 10, + "width": 250 + } + } + }, + "deletePermType": "hard", + "fields": { + "ns2:role": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/authorization" + }, + "view": { + "type": "CompoundInput" + } + }, + "@csid": { + "[config]": { + "cloneable": false + } + }, + "createdAt": { + "[config]": { + "cloneable": false + } + }, + "updatedAt": { + "[config]": { + "cloneable": false + } + }, + "metadataProtection": { + "[config]": { + "cloneable": false + } + }, + "permsProtection": { + "[config]": { + "cloneable": false + } + }, + "displayName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.authrole.displayName.name", + "defaultMessage": "Name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.authrole.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "roleName": { + "[config]": { + } + }, + "permission": { + "[config]": { + "messages": { + "name": { + "id": "field.authrole.permission.name", + "defaultMessage": "Permissions" + } + }, + "view": { + "type": "PermissionsInput" + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.authrole.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "ns2:role", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "displayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "description" + }, + "_owner": null + }, + { + "type": "input", + "key": null, + "ref": null, + "props": { + "type": "text", + "style": { + "display": "none" + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "permission" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "authrole" + }, + "batch": { + "messages": { + "record": { + "name": { + "id": "record.batch.name", + "defaultMessage": "Data Update" + }, + "collectionName": { + "id": "record.batch.collectionName", + "defaultMessage": "Data Updates" + }, + "invokeUnsaved": { + "id": "record.batch.invokeUnsaved", + "defaultMessage": "This record has changes that have not been saved. The data update will not include any unsaved data." + }, + "singleTargetMissing": { + "id": "record.batch.singleTargetMissing", + "defaultMessage": "Select a record on which to run this data update." + }, + "listTargetMissing": { + "id": "record.batch.listTargetMissing", + "defaultMessage": "Select one or more records on which to run this data update." + }, + "groupTargetMissing": { + "id": "record.batch.groupTargetMissing", + "defaultMessage": "Select a group on which to run this data update." + } + }, + "panel": { + "mode": { + "id": "panel.batch.mode", + "defaultMessage": "Runs on" + } + } + }, + "serviceConfig": { + "servicePath": "batch", + "serviceType": "utility" + }, + "columns": { + "default": { + "name": { + "messages": { + "label": { + "id": "column.batch.default.name", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "batch_common:name", + "width": 400 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:batch_common" + } + } + }, + "ns2:batch_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/batch" + }, + "view": { + "type": "CompoundInput" + } + }, + "name": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "className": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.className.name", + "defaultMessage": "Java class" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "notes": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.notes.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "supportsNoContext": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsNoContext.name", + "defaultMessage": "All records" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsGroup": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsDocList": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsDocList.name", + "defaultMessage": "Record list" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsSingleDoc": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.supportsSingleDoc.name", + "defaultMessage": "Single record" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "forDocTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "forDocType": { + "[config]": { + "messages": { + "name": { + "id": "field.batch_common.forDocType.name", + "defaultMessage": "For record type" + } + }, + "repeating": true, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + } + }, + "createsNewFocus": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.batch_common.createsNewFocus.name", + "defaultMessage": "Navigate to new record when complete" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.batch.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "className" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mode", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "supportsNoContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsDocList" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsSingleDoc" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "createsNewFocus" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "batch" + }, + "batchinvocation": { + "messages": { + "record": { + "name": { + "id": "record.batchinvocation.name", + "defaultMessage": "Data Update Invocation" + }, + "collectionName": { + "id": "record.batchinvocation.collectionName", + "defaultMessage": "Data Update Invocations" + } + } + }, + "serviceConfig": { + "servicePath": "batch/invoke", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "batchinvocation" + }, + "blob": { + "content": { + "popup": { + "subresource": "original" + }, + "preview": { + "subresource": "derivativeThumbnail" + }, + "snapshot": { + "subresource": "derivativeMedium" + }, + "thumbnail": { + "subresource": "derivativeThumbnail" + } + }, + "messages": { + "record": { + "name": { + "id": "record.blob.name", + "defaultMessage": "Blob" + }, + "collectionName": { + "id": "record.blob.collectionName", + "defaultMessage": "Blobs" + } + } + }, + "serviceConfig": { + "serviceName": "Blobs", + "servicePath": "blobs", + "serviceType": "utility", + "objectName": "Blob", + "documentName": "blobs" + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:blobs_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:blobs_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:blobs_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/blob" + } + }, + "file": { + "[config]": { + "view": { + "type": "UploadInput" + } + } + }, + "name": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "length": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.length.name", + "defaultMessage": "Size" + }, + "value": { + "id": "field.blobs_common.length.value", + "defaultMessage": "{value, number} bytes" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "mimeType": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.blobs_common.mimeType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.blob.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0 + }, + "upload": { + "messages": { + "name": { + "id": "form.blob.upload.name", + "defaultMessage": "Upload Template" + } + }, + "sortOrder": 2, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "file" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "view": { + "messages": { + "name": { + "id": "form.blob.view.name", + "defaultMessage": "View Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mimeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "length" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "createdAt", + "subpath": "ns2:collectionspace_core" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "updatedAt", + "subpath": "ns2:collectionspace_core" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "blob" + }, + "citation": { + "messages": { + "record": { + "name": { + "id": "record.citation.name", + "defaultMessage": "Citation" + }, + "collectionName": { + "id": "record.citation.collectionName", + "defaultMessage": "Citations" + } + }, + "panel": { + "info": { + "id": "panel.citation.info", + "defaultMessage": "Citation Information" + }, + "hierarchy": { + "id": "panel.citation.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.citation.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Citations", + "servicePath": "citationauthorities", + "serviceType": "authority", + "objectName": "Citation", + "documentName": "citations" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.citation.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.citation.all.collectionName", + "defaultMessage": "All Citations" + }, + "itemName": { + "id": "vocab.citation.all.itemName", + "defaultMessage": "Citation" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.citation.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.citation.local.collectionName", + "defaultMessage": "Local Citations" + }, + "itemName": { + "id": "vocab.citation.local.itemName", + "defaultMessage": "Local Citation" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(citation)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "worldcat": { + "messages": { + "name": { + "id": "vocab.citation.worldcat.name", + "defaultMessage": "WorldCat" + }, + "collectionName": { + "id": "vocab.citation.worldcat.collectionName", + "defaultMessage": "WorldCat Citations" + }, + "itemName": { + "id": "vocab.citation.worldcat.itemName", + "defaultMessage": "WorldCat Citation" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(worldcat)" + }, + "name": "worldcat", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termType" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termLanguage" + }, + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termFullCitation" + }, + { + "op": "cont", + "path": "ns2:citations_common/citationTermGroupList/citationTermGroup/termTitle" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.citation.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "citations_common:citationTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.citation.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "citations_common:citationTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.citation.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.citation.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:citations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.citation.parent", + "defaultMessage": "Broader citation" + }, + "children": { + "id": "hierarchyInput.citation.children", + "defaultMessage": "Narrower citations" + }, + "siblings": { + "id": "hierarchyInput.citation.siblings", + "defaultMessage": "Adjacent citations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:citations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:citations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/citation" + } + } + } + }, + "citationTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.citations_common.citationTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "citationTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.citations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.citations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.citations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermtype" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.citations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.citations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "citationTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.citations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.citations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.citations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.citations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termFullCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termFullCitation.fullName", + "defaultMessage": "Term full citation" + }, + "name": { + "id": "field.citations_common.termFullCitation.name", + "defaultMessage": "Full citation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termTitle.fullName", + "defaultMessage": "Term title" + }, + "name": { + "id": "field.citations_common.termTitle.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSubTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSubTitle.fullName", + "defaultMessage": "Term subtitle" + }, + "name": { + "id": "field.citations_common.termSubTitle.name", + "defaultMessage": "Subtitle" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSectionTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSectionTitle.fullName", + "defaultMessage": "Term section title" + }, + "name": { + "id": "field.citations_common.termSectionTitle.name", + "defaultMessage": "Section title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termVolume": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termVolume.fullName", + "defaultMessage": "Term volume" + }, + "name": { + "id": "field.citations_common.termVolume.name", + "defaultMessage": "Volume" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termIssue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termIssue.fullName", + "defaultMessage": "Term issue" + }, + "name": { + "id": "field.citations_common.termIssue.name", + "defaultMessage": "Issue" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.citations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.citations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.citations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.citations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.citations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.citations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.citations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.citations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationRecordType.name", + "defaultMessage": "Citation type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "citationtermtype" + } + } + } + } + }, + "citationPublicationInfoGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationPublicationInfoGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationPublicationInfoGroup.name", + "defaultMessage": "Publication" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "publisher": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.publisher.name", + "defaultMessage": "Publisher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "publicationPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.publicationPlace.fullName", + "defaultMessage": "Publication place" + }, + "name": { + "id": "field.citations_common.publicationPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "publicationDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.publicationDate.fullName", + "defaultMessage": "Publication date" + }, + "name": { + "id": "field.citations_common.publicationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "edition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.edition.fullName", + "defaultMessage": "Publication edition" + }, + "name": { + "id": "field.citations_common.edition.name", + "defaultMessage": "Edition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pages": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.pages.fullName", + "defaultMessage": "Publication page(s)" + }, + "name": { + "id": "field.citations_common.pages.name", + "defaultMessage": "Page(s)" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationAgentInfoGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationAgentInfoGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationAgentInfoGroup.name", + "defaultMessage": "Agent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "agent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.agent.fullName", + "defaultMessage": "Agent name" + }, + "name": { + "id": "field.citations_common.agent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/ulan,organization/local" + } + } + } + }, + "role": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.role.fullName", + "defaultMessage": "Agent role" + }, + "name": { + "id": "field.citations_common.role.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agentinfotype" + } + } + } + }, + "note": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.note.fullName", + "defaultMessage": "Agent note" + }, + "name": { + "id": "field.citations_common.note.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "citationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "citationResourceIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationResourceIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationResourceIdentGroup.name", + "defaultMessage": "Resource identifier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "resourceIdent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.resourceIdent.fullName", + "defaultMessage": "Resource identifier" + }, + "name": { + "id": "field.citations_common.resourceIdent.name", + "defaultMessage": "Identifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "type": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.type.fullName", + "defaultMessage": "Resource identifier type" + }, + "name": { + "id": "field.citations_common.type.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "resourceidtype" + } + } + } + }, + "captureDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.citations_common.captureDate.fullName", + "defaultMessage": "Resource identifier capture date" + }, + "name": { + "id": "field.citations_common.captureDate.name", + "defaultMessage": "Capture date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + } + }, + "citationRelatedTermsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationRelatedTermsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.citations_common.citationRelatedTermsGroup.name", + "defaultMessage": "Related term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "relatedTerm": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.relatedTerm.fullName", + "defaultMessage": "Related term" + }, + "name": { + "id": "field.citations_common.relatedTerm.name", + "defaultMessage": "Term" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated,concept/activity,concept/material" + } + } + } + }, + "relationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.citations_common.relationType.fullName", + "defaultMessage": "Related term type" + }, + "name": { + "id": "field.citations_common.relationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "relationtypetype" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.citation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "citationTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFullCitation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSubTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSectionTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termVolume" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termIssue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationPublicationInfoGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationPublicationInfoGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publicationPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publicationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "edition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "pages" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationAgentInfoGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationAgentInfoGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "agent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "role" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "note" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationResourceIdentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationResourceIdentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "resourceIdent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "captureDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationRelatedTermsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationRelatedTermsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relatedTerm" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "relationType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.citation.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFullCitation", + "subpath": [ + "ns2:citations_common", + "citationTermGroupList", + "citationTermGroup", + 0 + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termTitle", + "subpath": [ + "ns2:citations_common", + "citationTermGroupList", + "citationTermGroup", + 0 + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "citation" + }, + "chronology": { + "messages": { + "record": { + "name": { + "id": "record.chronology.name", + "defaultMessage": "Chronology" + }, + "collectionName": { + "id": "record.chronology.collectionName", + "defaultMessage": "Chronologies" + } + }, + "panel": { + "info": { + "id": "panel.chronology.info", + "defaultMessage": "Chronology Information" + }, + "altdate": { + "id": "panel.chronology.altdate", + "defaultMessage": "Alternative Date Information" + }, + "hierarchy": { + "id": "panel.chronology.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.chronology.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Chronologies", + "servicePath": "chronologyauthorities", + "serviceType": "authority", + "objectName": "Chronology", + "documentName": "chronologies" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.chronology.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.chronology.all.collectionName", + "defaultMessage": "All Chronologies" + }, + "itemName": { + "id": "vocab.chronology.all.itemName", + "defaultMessage": "Chronology" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "era": { + "messages": { + "name": { + "id": "vocab.chronology.era.name", + "defaultMessage": "Era" + }, + "collectionName": { + "id": "vocab.chronology.era.collectionName", + "defaultMessage": "Era Chronologies" + }, + "itemName": { + "id": "vocab.chronology.era.itemName", + "defaultMessage": "Era Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(era)" + }, + "sortOrder": 0, + "name": "era", + "disableAltTerms": false + }, + "event": { + "messages": { + "name": { + "id": "vocab.chronology.event.name", + "defaultMessage": "Event" + }, + "collectionName": { + "id": "vocab.chronology.event.collectionName", + "defaultMessage": "Event Chronologies" + }, + "itemName": { + "id": "vocab.chronology.event.itemName", + "defaultMessage": "Event Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(event)" + }, + "name": "event", + "disableAltTerms": false + }, + "fieldcollection": { + "messages": { + "name": { + "id": "vocab.chronology.fieldcollection.name", + "defaultMessage": "Field Collection" + }, + "collectionName": { + "id": "vocab.chronology.fieldcollection.collectionName", + "defaultMessage": "Field Collection Chronologies" + }, + "itemName": { + "id": "vocab.chronology.fieldcollection.itemName", + "defaultMessage": "Field Collection Chronology" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(field_collection)" + }, + "name": "fieldcollection", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termType" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:chronologies_common/chronologyTermGroupList/chronologyTermGroup/termLanguage" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.chronology.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "chronologies_common:citationTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.chronology.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "chronologies_common:citationTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.chronology.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.chronology.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:chronologies_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.chronology.parent", + "defaultMessage": "Broader chronology" + }, + "children": { + "id": "hierarchyInput.chronology.children", + "defaultMessage": "Narrower chronologies" + }, + "siblings": { + "id": "hierarchyInput.chronology.siblings", + "defaultMessage": "Adjacent chronologies" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:chronologies_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:chronologies_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/chronology" + } + } + } + }, + "chronologyTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.chronologies_common.chronologyTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "chronologyTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.chronologies_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.chronologies_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.chronologies_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermtype" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.chronologies_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.chronologies_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytermstatus" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.chronologies_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologyhistoricalstatus" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.chronologies_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.chronologies_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.chronologies_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.chronologies_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.chronologies_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.chronologies_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.chronologies_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.chronologies_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.chronologies_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.chronologies_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.chronologies_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.chronologies_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "primaryDateRangeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.chronologies_common.primaryDateRangeStructuredDateGroup.name", + "defaultMessage": "Primary date range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "spatialCoverages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "spatialCoverage": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.spatialCoverage.name", + "defaultMessage": "Spatial coverage" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + } + }, + "chronologyType": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyType.name", + "defaultMessage": "Chronology type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chronologytypes" + } + } + } + }, + "chronologyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyNote.name", + "defaultMessage": "Chronology note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "chronologyDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.chronologyDescription.name", + "defaultMessage": "Chronology description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "identifierGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "identifierGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.identifierGroup.name", + "defaultMessage": "Resource identifier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "identifierValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierValue.fullName", + "defaultMessage": "Resource identifier value" + }, + "name": { + "id": "field.chronologies_common.identifierValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "identifierCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierCitation.fullName", + "defaultMessage": "Resource identifier citation" + }, + "name": { + "id": "field.chronologies_common.identifierCitation.name", + "defaultMessage": "Citation" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "identifierDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.identifierDate.fullName", + "defaultMessage": "Resource identifier date" + }, + "name": { + "id": "field.chronologies_common.identifierDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "altDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.chronologies_common.altDateGroup.name", + "defaultMessage": "Alternative date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "altDateRangeStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.fullName", + "defaultMessage": "Alternative date range" + }, + "name": { + "id": "field.chronologies_common.altDateRangeStructuredDateGroup.name", + "defaultMessage": "Range" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "altDateSpatialCoverages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateSpatialCoverage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateSpatialCoverage.fullName", + "defaultMessage": "Alternative date spatial coverage" + }, + "name": { + "id": "field.chronologies_common.altDateSpatialCoverage.name", + "defaultMessage": "Spatial coverage" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + } + }, + "altDateCitations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "altDateCitation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateCitation.fullName", + "defaultMessage": "Alternative date citation" + }, + "name": { + "id": "field.chronologies_common.altDateCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + } + }, + "altDateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.chronologies_common.altDateNote.fullName", + "defaultMessage": "Alternative date note" + }, + "name": { + "id": "field.chronologies_common.altDateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.chronology.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronologyTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "chronologyTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "primaryDateRangeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "spatialCoverages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "spatialCoverage" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "chronologyDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chronologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "identifierGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identifierValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierCitation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identifierDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altdate", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "altDateRangeStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altDateSpatialCoverages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateSpatialCoverage" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "altDateCitations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "altDateCitation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.chronology.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "chronology" + }, + "collectionobject": { + "messages": { + "record": { + "name": { + "id": "record.collectionobject.name", + "defaultMessage": "Object" + }, + "collectionName": { + "id": "record.collectionobject.collectionName", + "defaultMessage": "Objects" + } + }, + "panel": { + "id": { + "id": "panel.collectionobject.id", + "defaultMessage": "Object Identification Information" + }, + "desc": { + "id": "panel.collectionobject.desc", + "defaultMessage": "Object Description Information" + }, + "content": { + "id": "panel.collectionobject.content", + "defaultMessage": "Content" + }, + "textInscript": { + "id": "panel.collectionobject.textInscript", + "defaultMessage": "Textual Inscription" + }, + "nonTextInscript": { + "id": "panel.collectionobject.nonTextInscript", + "defaultMessage": "Non-Textual Inscription" + }, + "prod": { + "id": "panel.collectionobject.prod", + "defaultMessage": "Object Production Information" + }, + "hist": { + "id": "panel.collectionobject.hist", + "defaultMessage": "Object History and Association Information" + }, + "assoc": { + "id": "panel.collectionobject.assoc", + "defaultMessage": "Associations" + }, + "owner": { + "id": "panel.collectionobject.owner", + "defaultMessage": "Object Owner's Contribution Information" + }, + "viewer": { + "id": "panel.collectionobject.viewer", + "defaultMessage": "Object Viewer's Contribution Information" + }, + "reference": { + "id": "panel.collectionobject.reference", + "defaultMessage": "Reference Information" + }, + "collect": { + "id": "panel.collectionobject.collect", + "defaultMessage": "Object Collection Information" + }, + "hierarchy": { + "id": "panel.collectionobject.hierarchy", + "defaultMessage": "Hierarchy" + }, + "software": { + "id": "panel.collectionobject.software", + "defaultMessage": "Technical Specifications: Software/Web" + }, + "avTechSpecs": { + "id": "panel.collectionobject.avTechSpecs", + "defaultMessage": "Technical Specifications: Audio/Video/Still" + }, + "rights": { + "id": "panel.collectionobject.rights", + "defaultMessage": "Rights Management Information" + }, + "rightsin": { + "id": "panel.collectionobject.rightsin", + "defaultMessage": "Rights In Management Information" + }, + "bio": { + "id": "panel.collectionobject.bio", + "defaultMessage": "Biological Information" + }, + "commingledRemains": { + "id": "panel.collectionobject.commingledRemains", + "defaultMessage": "Commingled Remains" + }, + "locality": { + "id": "panel.collectionobject.locality", + "defaultMessage": "Locality Information" + }, + "culturalCare": { + "id": "panel.collectionobject.culturalCare", + "defaultMessage": "Cultural Care Information" + }, + "georefDetail": { + "id": "panel.ext.locality.georefDetail", + "defaultMessage": "Georeference Detail" + }, + "nagpraCompliance": { + "id": "panel.ext.nagpra.nagpraCompliance", + "defaultMessage": "Repatriation and NAGPRA Compliance Information" + } + }, + "inputTable": { + "age": { + "id": "inputTable.collectionobject.age", + "defaultMessage": "Age" + }, + "assocEvent": { + "id": "inputTable.collectionobject.assocEvent", + "defaultMessage": "Associated event" + }, + "ownershipExchange": { + "id": "inputTable.collectionobject.ownershipExchange", + "defaultMessage": "Ownership exchange" + }, + "behrensmeyer": { + "id": "inputTable.collectionobject.behrensmeyer", + "defaultMessage": "Behrensmeyer stage" + }, + "depth": { + "id": "inputTable.ext.locality.depth", + "defaultMessage": "Depth" + }, + "elevation": { + "id": "inputTable.ext.locality.elevation", + "defaultMessage": "Elevation" + }, + "distanceAboveSurface": { + "id": "inputTable.ext.locality.distanceAboveSurface", + "defaultMessage": "Distance above surface" + }, + "nagpraReportFiled": { + "id": "panel.ext.nagpra.nagpraReportFiled", + "defaultMessage": "Reported to National NAGPRA" + }, + "taxonName": { + "id": "inputTable.collectionobject.taxonName", + "defaultMessage": "Taxonomic identification" + }, + "taxonIdent": { + "id": "inputTable.collectionobject.taxonIdent", + "defaultMessage": "Identification by" + }, + "taxonReference": { + "id": "inputTable.collectionobject.taxonReference", + "defaultMessage": "Reference" + } + } + }, + "serviceConfig": { + "serviceName": "CollectionObjects", + "servicePath": "collectionobjects", + "serviceType": "object", + "objectName": "CollectionObject", + "documentName": "collectionobjects" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionobjects_common/objectNumber" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/otherNumberList/otherNumber/numberType" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/responsibleDepartments/responsibleDepartment" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/collection" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/recordStatus" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_ohc/descriptionLevel" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectNameList/objectNameGroup/objectName" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_ohc/categoryGroupList/categoryGroup/category" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_ohc/categoryGroupList/categoryGroup/subCategory" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/materialGroupList/materialGroup/material" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/titleGroupList/titleGroup/title" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/fieldColEventNames/fieldColEventName" + }, + { + "op": "range", + "path": "ns2:collectionobjects_common/objectProductionDateGroupList/objectProductionDateGroup" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/techniqueGroupList/techniqueGroup/technique" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionPlaceGroupList/objectProductionPlaceGroup/objectProductionPlace" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionPeopleGroupList/objectProductionPeopleGroup/objectProductionPeople" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionPersonGroupList/objectProductionPersonGroup/objectProductionPerson" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectProductionOrganizationGroupList/objectProductionOrganizationGroup/objectProductionOrganization" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/forms/form" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/editionNumber" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/styles/style" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/objectComponentGroupList/objectComponentGroup/objectComponentName" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/sex" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/phase" + }, + { + "op": "eq", + "path": "ns2:collectionobjects_common/nonTextualInscriptionGroupList/nonTextualInscriptionGroup/inscriptionDescriptionInscriber" + }, + { + "op": "cont", + "path": "ns2:collectionobjects_common/nonTextualInscriptionGroupList/nonTextualInscriptionGroup/inscriptionDescriptionMethod" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "objectNumber": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectNumber", + "defaultMessage": "Identification number" + } + }, + "order": 10, + "sortBy": "collectionobjects_common:objectNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.collectionobject.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:titleGroupList/0/title", + "width": 450, + "disabled": true + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.collectionobject.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + }, + "objectName": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectName", + "defaultMessage": "Object name" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:objectNameList/0/objectName", + "width": 450 + }, + "objectNameControlled": { + "messages": { + "label": { + "id": "column.collectionobject.default.objectNameControlled", + "defaultMessage": "Controlled object name" + } + }, + "order": 25, + "sortBy": "collectionobjects_common:objectNameList/0/objectNameControlled", + "width": 450 + } + }, + "narrow": { + "objectNumber": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.objectNumber", + "defaultMessage": "ID" + } + }, + "order": 10, + "sortBy": "collectionobjects_common:objectNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "width": 450, + "disabled": true + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + }, + "objectName": { + "messages": { + "label": { + "id": "column.collectionobject.narrow.objectName", + "defaultMessage": "Object name" + } + }, + "order": 20, + "sortBy": "collectionobjects_common:objectNameList/0/objectName", + "width": 450 + } + } + }, + "defaultForSearch": true, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:collectionobjects_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:collectionobjects_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "parentTypeOptionListName": "objectParentTypes", + "childTypeOptionListName": "objectChildTypes", + "messages": { + "parent": { + "id": "hierarchyInput.collectionobject.parent", + "defaultMessage": "Broader object" + }, + "parentName": { + "id": "hierarchyInput.collectionobject.parentName", + "defaultMessage": "Object" + }, + "parentType": { + "id": "hierarchyInput.collectionobject.parentType", + "defaultMessage": "Type" + }, + "children": { + "id": "hierarchyInput.collectionobject.children", + "defaultMessage": "Component objects" + }, + "childName": { + "id": "hierarchyInput.collectionobject.childName", + "defaultMessage": "Object" + }, + "childType": { + "id": "hierarchyInput.collectionobject.childType", + "defaultMessage": "Type" + }, + "siblings": { + "id": "hierarchyInput.collectionobject.siblings", + "defaultMessage": "Adjacent objects" + } + } + } + } + } + } + }, + "ns2:collectionobjects_annotation": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/annotation" + } + }, + "annotationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "annotationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_annotation.annotationGroup.name", + "defaultMessage": "Annotation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "annotationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationType.fullName", + "defaultMessage": "Annotation type" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "annotationtype" + } + } + } + }, + "annotationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationNote.fullName", + "defaultMessage": "Annotation note" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "annotationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationDate.fullName", + "defaultMessage": "Annotation date" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "annotationAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_annotation.annotationAuthor.fullName", + "defaultMessage": "Annotation author" + }, + "name": { + "id": "field.collectionobjects_annotation.annotationAuthor.name", + "defaultMessage": "Author" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + } + } + }, + "ns2:collectionobjects_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject" + } + }, + "objectNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.collectionobjects_common.objectNumber.inUse", + "defaultMessage": "The identification number {value} is in use by another record." + }, + "name": { + "id": "field.collectionobjects_common.objectNumber.name", + "defaultMessage": "Identification number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "accession,intake,loanin" + } + } + } + }, + "numberOfObjects": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.collectionobjects_common.numberOfObjects.name", + "defaultMessage": "Number of objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "otherNumberList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.otherNumber.name", + "defaultMessage": "Other number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "numberValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberValue.fullName", + "defaultMessage": "Other number value" + }, + "name": { + "id": "field.collectionobjects_common.numberValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "numberType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberType.fullName", + "defaultMessage": "Other number type" + }, + "name": { + "id": "field.collectionobjects_common.numberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "numberTypes" + } + } + } + } + } + }, + "responsibleDepartments": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "responsibleDepartment": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.responsibleDepartment.name", + "defaultMessage": "Responsible department" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "departments" + } + } + } + } + }, + "collection": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.collection.name", + "defaultMessage": "Collection" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "collections" + } + } + } + }, + "namedCollections": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "namedCollection": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.namedCollection.name", + "defaultMessage": "Named collection" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "work/local" + } + } + } + } + }, + "recordStatus": { + "[config]": { + "defaultValue": "new", + "messages": { + "name": { + "id": "field.collectionobjects_common.recordStatus.name", + "defaultMessage": "Record status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "recordStatuses" + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "defaultValue": "urn:cspace:core.collectionspace.org:vocabularies:name(publishto):item:name(none)'None'", + "messages": { + "name": { + "id": "field.collectionobjects_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "inventoryStatusList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryStatus": { + "[config]": { + "defaultValue": "urn:cspace:core.collectionspace.org:vocabularies:name(inventorystatus):item:name(unknown)'unknown'", + "messages": { + "name": { + "id": "field.collectionobjects_common.inventoryStatus.name", + "defaultMessage": "Inventory status" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "inventorystatus" + } + } + } + } + }, + "briefDescriptions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "briefDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.briefDescription.name", + "defaultMessage": "Brief description" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "distinguishingFeatures": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.distinguishingFeatures.name", + "defaultMessage": "Distinguishing features" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "comments": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "comment": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.comment.name", + "defaultMessage": "Comment" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "computedCurrentLocation": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.collectionobjects_common.computedCurrentLocation.name", + "defaultMessage": "Computed current location" + } + }, + "searchView": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared", + "readOnly": true + } + } + } + }, + "titleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "titleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.titleGroup.name", + "defaultMessage": "Title" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "titleLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleLanguage.fullName", + "defaultMessage": "Title language" + }, + "name": { + "id": "field.collectionobjects_common.titleLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "titleTranslationSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "titleTranslationSubGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslationSubGroup.fullName", + "defaultMessage": "Title translation" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslationSubGroup.name", + "defaultMessage": "Translation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "titleTranslation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslation.fullName", + "defaultMessage": "Title translation" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslation.name", + "defaultMessage": "Translation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "titleTranslationLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleTranslationLanguage.fullName", + "defaultMessage": "Title translation language" + }, + "name": { + "id": "field.collectionobjects_common.titleTranslationLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + } + }, + "titleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.titleType.fullName", + "defaultMessage": "Title type" + }, + "name": { + "id": "field.collectionobjects_common.titleType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "titleTypes" + } + } + } + } + } + }, + "objectNameList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectNameGroup.name", + "defaultMessage": "Object name" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectName.fullName", + "defaultMessage": "Object name" + }, + "name": { + "id": "field.collectionobjects_common.objectName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/nomenclature" + } + } + } + }, + "objectNameControlled": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameControlled.fullName", + "defaultMessage": "Object name controlled" + }, + "name": { + "id": "field.collectionobjects_common.objectNameControlled.name", + "defaultMessage": "Controlled" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/nomenclature" + } + } + } + }, + "objectNameCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameCurrency.fullName", + "defaultMessage": "Object name currency" + }, + "name": { + "id": "field.collectionobjects_common.objectNameCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameCurrencies" + } + } + } + }, + "objectNameLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameLevel.fullName", + "defaultMessage": "Object name level" + }, + "name": { + "id": "field.collectionobjects_common.objectNameLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ohcNameLevels" + } + } + } + }, + "objectNameSystem": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameSystem.fullName", + "defaultMessage": "Object name system" + }, + "name": { + "id": "field.collectionobjects_common.objectNameSystem.name", + "defaultMessage": "System" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameSystems" + } + } + } + }, + "objectNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameType.fullName", + "defaultMessage": "Object name type" + }, + "name": { + "id": "field.collectionobjects_common.objectNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nameTypes" + } + } + } + }, + "objectNameLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameLanguage.fullName", + "defaultMessage": "Object name language" + }, + "name": { + "id": "field.collectionobjects_common.objectNameLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "objectNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectNameNote.fullName", + "defaultMessage": "Object name note" + }, + "name": { + "id": "field.collectionobjects_common.objectNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "copyNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.copyNumber.name", + "defaultMessage": "Copy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "objectStatusList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectStatus.name", + "defaultMessage": "Object status" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectStatuses" + } + } + } + } + }, + "sex": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.sex.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexes" + } + } + } + }, + "phase": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.phase.name", + "defaultMessage": "Phase" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "phases" + } + } + } + }, + "forms": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "form": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.form.name", + "defaultMessage": "Form" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "forms" + } + } + } + } + }, + "editionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.editionNumber.name", + "defaultMessage": "Edition number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "age": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.age.fullName", + "defaultMessage": "Age value" + }, + "name": { + "id": "field.collectionobjects_common.age.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "ageQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ageQualifier.fullName", + "defaultMessage": "Age qualifier" + }, + "name": { + "id": "field.collectionobjects_common.ageQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agequalifier" + } + } + } + }, + "ageUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ageUnit.fullName", + "defaultMessage": "Age unit" + }, + "name": { + "id": "field.collectionobjects_common.ageUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ageUnits" + } + } + } + }, + "styles": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "style": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.style.name", + "defaultMessage": "Style" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "colors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "color": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.color.name", + "defaultMessage": "Color" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "materialGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "materialGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.materialGroup.name", + "defaultMessage": "Material" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "material": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.material.name", + "defaultMessage": "Material" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/material" + } + } + } + }, + "materialComponent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialComponent.fullName", + "defaultMessage": "Material component" + }, + "name": { + "id": "field.collectionobjects_common.materialComponent.name", + "defaultMessage": "Component" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialComponentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialComponentNote.fullName", + "defaultMessage": "Material component note" + }, + "name": { + "id": "field.collectionobjects_common.materialComponentNote.name", + "defaultMessage": "Component note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialName.fullName", + "defaultMessage": "Material name" + }, + "name": { + "id": "field.collectionobjects_common.materialName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialSource.fullName", + "defaultMessage": "Material source" + }, + "name": { + "id": "field.collectionobjects_common.materialSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "materialControlled": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.materialControlled.fullName", + "defaultMessage": "Material controlled" + }, + "name": { + "id": "field.collectionobjects_common.materialControlled.name", + "defaultMessage": "Controlled" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/material" + } + } + } + } + } + }, + "physicalDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.physicalDescription.name", + "defaultMessage": "Physical description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectComponentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectComponentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectComponentGroup.name", + "defaultMessage": "Object component" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectComponentName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectComponentName.fullName", + "defaultMessage": "Object component name" + }, + "name": { + "id": "field.collectionobjects_common.objectComponentName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectComponentNames" + } + } + } + }, + "objectComponentInformation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectComponentInformation.fullName", + "defaultMessage": "Object component information" + }, + "name": { + "id": "field.collectionobjects_common.objectComponentInformation.name", + "defaultMessage": "Information" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "technicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "technicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.technicalAttributeGroup.name", + "defaultMessage": "Technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "technicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttribute.fullName", + "defaultMessage": "Technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttribute.name", + "defaultMessage": "Attribute" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributes" + } + } + } + }, + "technicalAttributeMeasurement": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttributeMeasurement.fullName", + "defaultMessage": "Technical attribute measurement" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttributeMeasurement.name", + "defaultMessage": "Measurement" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributeMeasurements" + } + } + } + }, + "technicalAttributeMeasurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technicalAttributeMeasurementUnit.fullName", + "defaultMessage": "Technical attribute measurement unit" + }, + "name": { + "id": "field.collectionobjects_common.technicalAttributeMeasurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "technicalAttributeMeasurementUnits" + } + } + } + } + } + }, + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject" + } + } + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDescription.fullName", + "defaultMessage": "Content description" + }, + "name": { + "id": "field.collectionobjects_common.contentDescription.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "contentLanguages": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentLanguage.fullName", + "defaultMessage": "Content language" + }, + "name": { + "id": "field.collectionobjects_common.contentLanguage.name", + "defaultMessage": "Language" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + }, + "contentActivities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentActivity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentActivity.fullName", + "defaultMessage": "Content activity" + }, + "name": { + "id": "field.collectionobjects_common.contentActivity.name", + "defaultMessage": "Activity" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentConcepts": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentConcept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentConcept.fullName", + "defaultMessage": "Content concept" + }, + "name": { + "id": "field.collectionobjects_common.contentConcept.name", + "defaultMessage": "Concept" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated" + } + } + } + } + }, + "contentDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentDateGroup.fullName", + "defaultMessage": "Content date" + }, + "name": { + "id": "field.collectionobjects_common.contentDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contentPositions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPosition.fullName", + "defaultMessage": "Content position" + }, + "name": { + "id": "field.collectionobjects_common.contentPosition.name", + "defaultMessage": "Position" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + } + }, + "contentObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentObjectGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObjectGroup.fullName", + "defaultMessage": "Content object" + }, + "name": { + "id": "field.collectionobjects_common.contentObjectGroup.name", + "defaultMessage": "Object" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentObject": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObject.fullName", + "defaultMessage": "Content object name" + }, + "name": { + "id": "field.collectionobjects_common.contentObject.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentObjectType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentObjectType.fullName", + "defaultMessage": "Content object type" + }, + "name": { + "id": "field.collectionobjects_common.contentObjectType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "contentObjectTypes" + } + } + } + } + } + }, + "contentPeoples": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPeople.fullName", + "defaultMessage": "Content people" + }, + "name": { + "id": "field.collectionobjects_common.contentPeople.name", + "defaultMessage": "People" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentPersons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPerson.fullName", + "defaultMessage": "Content person" + }, + "name": { + "id": "field.collectionobjects_common.contentPerson.name", + "defaultMessage": "Person" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + } + }, + "contentPlaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentPlace.fullName", + "defaultMessage": "Content place" + }, + "name": { + "id": "field.collectionobjects_common.contentPlace.name", + "defaultMessage": "Place" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "contentScripts": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentScript": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentScript.fullName", + "defaultMessage": "Content script" + }, + "name": { + "id": "field.collectionobjects_common.contentScript.name", + "defaultMessage": "Script" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "scripts" + } + } + } + } + }, + "contentOrganizations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOrganization.fullName", + "defaultMessage": "Content organization" + }, + "name": { + "id": "field.collectionobjects_common.contentOrganization.name", + "defaultMessage": "Organization" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "contentEventNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentEventNameGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventNameGroup.fullName", + "defaultMessage": "Content event" + }, + "name": { + "id": "field.collectionobjects_common.contentEventNameGroup.name", + "defaultMessage": "Event" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentEventName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventName.fullName", + "defaultMessage": "Content event name" + }, + "name": { + "id": "field.collectionobjects_common.contentEventName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentEventNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEventNameType.fullName", + "defaultMessage": "Content event type" + }, + "name": { + "id": "field.collectionobjects_common.contentEventNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentEvent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentEvent.fullName", + "defaultMessage": "Content controlled event or period/era" + }, + "name": { + "id": "field.collectionobjects_common.contentEvent.name", + "defaultMessage": "Event or period/era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/event,chronology/era" + } + } + } + } + }, + "contentOtherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contentOtherGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOtherGroup.fullName", + "defaultMessage": "Content other" + }, + "name": { + "id": "field.collectionobjects_common.contentOtherGroup.name", + "defaultMessage": "Other" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contentOther": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOther.fullName", + "defaultMessage": "Content other name" + }, + "name": { + "id": "field.collectionobjects_common.contentOther.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "contentOtherType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentOtherType.fullName", + "defaultMessage": "Content other type" + }, + "name": { + "id": "field.collectionobjects_common.contentOtherType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.contentNote.fullName", + "defaultMessage": "Content note" + }, + "name": { + "id": "field.collectionobjects_common.contentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "textualInscriptionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "textualInscriptionGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.textualInscriptionGroup.fullName", + "defaultMessage": "Textual inscription" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "inscriptionContent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContent.fullName", + "defaultMessage": "Textual inscription content" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContent.name", + "defaultMessage": "Inscription content" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionContentInscriber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentInscriber.fullName", + "defaultMessage": "Textual inscription inscriber" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentInscriber.name", + "defaultMessage": "Inscriber" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local,organization/shared" + } + } + } + }, + "inscriptionContentLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentLanguage.fullName", + "defaultMessage": "Textual inscription language" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "inscriptionContentDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.fullName", + "defaultMessage": "Textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "inscriptionContentPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentPosition.fullName", + "defaultMessage": "Textual inscription position" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentPosition.name", + "defaultMessage": "Position" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + }, + "inscriptionContentScript": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentScript.fullName", + "defaultMessage": "Textual inscription script" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentScript.name", + "defaultMessage": "Script" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "scripts" + } + } + } + }, + "inscriptionContentType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentType.fullName", + "defaultMessage": "Textual inscription type" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "inscriptionTypes" + } + } + } + }, + "inscriptionContentMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentMethod.fullName", + "defaultMessage": "Textual inscription method" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionContentInterpretation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentInterpretation.fullName", + "defaultMessage": "Textual inscription interpretation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentInterpretation.name", + "defaultMessage": "Interpretation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionContentTranslation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentTranslation.fullName", + "defaultMessage": "Textual inscription translation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentTranslation.name", + "defaultMessage": "Translation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionContentTransliteration": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionContentTransliteration.fullName", + "defaultMessage": "Textual inscription transliteration" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionContentTransliteration.name", + "defaultMessage": "Transliteration" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nonTextualInscriptionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nonTextualInscriptionGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.nonTextualInscriptionGroup.fullName", + "defaultMessage": "Non-textual inscription" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "inscriptionDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescription.fullName", + "defaultMessage": "Non-textual inscription description" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescription.name", + "defaultMessage": "Inscription description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inscriptionDescriptionInscriber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionInscriber.fullName", + "defaultMessage": "Non-textual inscription inscriber" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionInscriber.name", + "defaultMessage": "Inscriber" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "inscriptionDescriptionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.fullName", + "defaultMessage": "Non-textual inscription date" + }, + "groupName": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionDateGroup.name", + "defaultMessage": "Date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "inscriptionDescriptionPosition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionPosition.fullName", + "defaultMessage": "Non-textual inscription position" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionPosition.name", + "defaultMessage": "Position" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "positions" + } + } + } + }, + "inscriptionDescriptionType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionType.fullName", + "defaultMessage": "Non-textual inscription type" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "inscriptionTypes" + } + } + } + }, + "inscriptionDescriptionMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionMethod.fullName", + "defaultMessage": "Non-textual inscription method" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "inscriptionDescriptionInterpretation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.inscriptionDescriptionInterpretation.fullName", + "defaultMessage": "Non-textual inscription interpretation" + }, + "name": { + "id": "field.collectionobjects_common.inscriptionDescriptionInterpretation.name", + "defaultMessage": "Interpretation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "objectProductionDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionDateGroup.name", + "defaultMessage": "Production date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "objectProductionEras": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionEra": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionEra.name", + "defaultMessage": "Production era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/era" + } + } + } + } + }, + "techniqueGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "techniqueGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.techniqueGroup.name", + "defaultMessage": "Production technique" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "technique": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.technique.fullName", + "defaultMessage": "Production technique" + }, + "name": { + "id": "field.collectionobjects_common.technique.name", + "defaultMessage": "Technique" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "techniqueType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.techniqueType.fullName", + "defaultMessage": "Production technique type" + }, + "name": { + "id": "field.collectionobjects_common.techniqueType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodtechniquetype" + } + } + } + } + } + }, + "objectProductionPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPlaceGroup.name", + "defaultMessage": "Production place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPlace.fullName", + "defaultMessage": "Production place" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,place/tgn" + } + } + } + }, + "objectProductionPlaceRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPlaceRole.fullName", + "defaultMessage": "Production place role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPlaceRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodplacerole" + } + } + } + } + } + }, + "objectProductionReasons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionReason": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionReason.name", + "defaultMessage": "Production reason" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "objectProductionPeopleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPeopleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPeopleGroup.name", + "defaultMessage": "Production people" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPeople.fullName", + "defaultMessage": "Production people" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPeople.name", + "defaultMessage": "People" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/archculture,concept/ethculture" + } + } + } + }, + "objectProductionPeopleRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPeopleRole.fullName", + "defaultMessage": "Production people role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPeopleRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodpeoplerole" + } + } + } + } + } + }, + "objectProductionPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionPersonGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionPersonGroup.name", + "defaultMessage": "Production person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPerson.fullName", + "defaultMessage": "Production person" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPerson.name", + "defaultMessage": "Person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "objectProductionPersonRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionPersonRole.fullName", + "defaultMessage": "Production person role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionPersonRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodpersonrole" + } + } + } + } + } + }, + "objectProductionOrganizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectProductionOrganizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionOrganizationGroup.name", + "defaultMessage": "Production organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "objectProductionOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionOrganization.fullName", + "defaultMessage": "Production organization" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionOrganization.name", + "defaultMessage": "Organization" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "objectProductionOrganizationRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.objectProductionOrganizationRole.fullName", + "defaultMessage": "Production organization role" + }, + "name": { + "id": "field.collectionobjects_common.objectProductionOrganizationRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "prodorgrole" + } + } + } + } + } + }, + "objectProductionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectProductionNote.name", + "defaultMessage": "Production note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assocActivityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocActivityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocActivityGroup.name", + "defaultMessage": "Associated activity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocActivity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivity.fullName", + "defaultMessage": "Associated activity" + }, + "name": { + "id": "field.collectionobjects_common.assocActivity.name", + "defaultMessage": "Activity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocActivityType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivityType.fullName", + "defaultMessage": "Associated activity type" + }, + "name": { + "id": "field.collectionobjects_common.assocActivityType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocActivityNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocActivityNote.fullName", + "defaultMessage": "Associated activity note" + }, + "name": { + "id": "field.collectionobjects_common.assocActivityNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocObjectGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocObjectGroup.name", + "defaultMessage": "Associated object" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocObject": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObject.fullName", + "defaultMessage": "Associated object" + }, + "name": { + "id": "field.collectionobjects_common.assocObject.name", + "defaultMessage": "Object" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocObjectType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObjectType.fullName", + "defaultMessage": "Associated object type" + }, + "name": { + "id": "field.collectionobjects_common.assocObjectType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocObjectNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocObjectNote.fullName", + "defaultMessage": "Associated object note" + }, + "name": { + "id": "field.collectionobjects_common.assocObjectNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocConceptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocConceptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocConceptGroup.name", + "defaultMessage": "Associated concept" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocConcept": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConcept.fullName", + "defaultMessage": "Associated concept" + }, + "name": { + "id": "field.collectionobjects_common.assocConcept.name", + "defaultMessage": "Concept" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/associated" + } + } + } + }, + "assocConceptType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConceptType.fullName", + "defaultMessage": "Associated concept type" + }, + "name": { + "id": "field.collectionobjects_common.assocConceptType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocConceptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocConceptNote.fullName", + "defaultMessage": "Associated concept note" + }, + "name": { + "id": "field.collectionobjects_common.assocConceptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocCulturalContextGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocCulturalContextGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocCulturalContextGroup.name", + "defaultMessage": "Associated cultural affinity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocCulturalContext": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContext.fullName", + "defaultMessage": "Associated cultural affinity" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContext.name", + "defaultMessage": "Cultural affinity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocCulturalContextType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContextType.fullName", + "defaultMessage": "Associated cultural affinity type" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContextType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocCulturalContextNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocCulturalContextNote.fullName", + "defaultMessage": "Associated cultural affinity note" + }, + "name": { + "id": "field.collectionobjects_common.assocCulturalContextNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocOrganizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocOrganizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocOrganizationGroup.name", + "defaultMessage": "Associated organization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocOrganization": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganization.fullName", + "defaultMessage": "Associated organization" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganization.name", + "defaultMessage": "Organization" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "assocOrganizationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganizationType.fullName", + "defaultMessage": "Associated organization type" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganizationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocOrganizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocOrganizationNote.fullName", + "defaultMessage": "Associated organization note" + }, + "name": { + "id": "field.collectionobjects_common.assocOrganizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPeopleGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPeopleGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPeopleGroup.name", + "defaultMessage": "Associated people" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPeople": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeople.fullName", + "defaultMessage": "Associated people" + }, + "name": { + "id": "field.collectionobjects_common.assocPeople.name", + "defaultMessage": "People" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture" + } + } + } + }, + "assocPeopleType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeopleType.fullName", + "defaultMessage": "Associated people type" + }, + "name": { + "id": "field.collectionobjects_common.assocPeopleType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPeopleNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPeopleNote.fullName", + "defaultMessage": "Associated people note" + }, + "name": { + "id": "field.collectionobjects_common.assocPeopleNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPersonGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPersonGroup.name", + "defaultMessage": "Associated person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPerson.fullName", + "defaultMessage": "Associated person" + }, + "name": { + "id": "field.collectionobjects_common.assocPerson.name", + "defaultMessage": "Person" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "assocPersonType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPersonType.fullName", + "defaultMessage": "Associated person type" + }, + "name": { + "id": "field.collectionobjects_common.assocPersonType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPersonNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPersonNote.fullName", + "defaultMessage": "Associated person note" + }, + "name": { + "id": "field.collectionobjects_common.assocPersonNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocPlaceGroup.name", + "defaultMessage": "Associated place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlace.fullName", + "defaultMessage": "Associated place" + }, + "name": { + "id": "field.collectionobjects_common.assocPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPlaceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlaceType.fullName", + "defaultMessage": "Associated place type" + }, + "name": { + "id": "field.collectionobjects_common.assocPlaceType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocPlaceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocPlaceNote.fullName", + "defaultMessage": "Associated place note" + }, + "name": { + "id": "field.collectionobjects_common.assocPlaceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assocEventName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEventName.fullName", + "defaultMessage": "Associated event" + }, + "name": { + "id": "field.collectionobjects_common.assocEventName.name", + "defaultMessage": "Event" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocEventNameType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEventNameType.fullName", + "defaultMessage": "Associated event type" + }, + "name": { + "id": "field.collectionobjects_common.assocEventNameType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEvent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocEvent.fullName", + "defaultMessage": "Associated controlled event or period/era" + }, + "name": { + "id": "field.collectionobjects_common.assocEvent.name", + "defaultMessage": "Event or period/era" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/event,chronology/era" + } + } + } + } + }, + "assocEventOrganizations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventOrganization": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventOrganization.name", + "defaultMessage": "Associated event organization" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + }, + "assocEventPeoples": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPeople": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPeople.name", + "defaultMessage": "Associated event people" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "assocEventPersons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPerson": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPerson.name", + "defaultMessage": "Associated event person" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "assocEventPlaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocEventPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventPlace.name", + "defaultMessage": "Associated event place" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "assocEventNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocEventNote.name", + "defaultMessage": "Associated event note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assocDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.assocDateGroup.name", + "defaultMessage": "Associated date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assocStructuredDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.fullName", + "defaultMessage": "Associated date value" + }, + "groupName": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.groupName", + "defaultMessage": "Value" + }, + "name": { + "id": "field.collectionobjects_common.assocStructuredDateGroup.name", + "defaultMessage": "Value" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "assocDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocDateType.fullName", + "defaultMessage": "Associated date type" + }, + "name": { + "id": "field.collectionobjects_common.assocDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "assocDateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assocDateNote.fullName", + "defaultMessage": "Associated date note" + }, + "name": { + "id": "field.collectionobjects_common.assocDateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "objectHistoryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectHistoryNote.name", + "defaultMessage": "Object history note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "usageGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "usageGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.usageGroup.name", + "defaultMessage": "Usage" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "usage": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.usage.name", + "defaultMessage": "Usage" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "usageNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.usageNote.fullName", + "defaultMessage": "Usage note" + }, + "name": { + "id": "field.collectionobjects_common.usageNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "owners": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "searchDisabled": true + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.owner.name", + "defaultMessage": "Owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "ownershipDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "searchDisabled": true + }, + "ownershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipDateGroup.name", + "defaultMessage": "Ownership date" + } + }, + "repeating": true, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "ownershipAccess": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipAccess.name", + "defaultMessage": "Ownership access" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipAccessLevels" + } + }, + "searchDisabled": true + } + }, + "ownershipCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipCategory.name", + "defaultMessage": "Ownership category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipCategories" + } + }, + "searchDisabled": true + } + }, + "ownershipPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownershipPlace.name", + "defaultMessage": "Ownership place" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownershipExchangeMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangeMethod.fullName", + "defaultMessage": "Ownership exchange method" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangeMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipExchangeMethods" + } + }, + "searchDisabled": true + } + }, + "ownershipExchangeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangeNote.fullName", + "defaultMessage": "Ownership exchange note" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownershipExchangePriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangePriceCurrency.fullName", + "defaultMessage": "Ownership exchange price currency" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangePriceCurrency.name", + "defaultMessage": "Price currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + }, + "searchDisabled": true + } + }, + "ownershipExchangePriceValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ownershipExchangePriceValue.fullName", + "defaultMessage": "Ownership exchange price value" + }, + "name": { + "id": "field.collectionobjects_common.ownershipExchangePriceValue.name", + "defaultMessage": "Price value" + } + }, + "view": { + "type": "TextInput" + }, + "searchDisabled": true + } + }, + "ownersPersonalExperience": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersPersonalExperience.name", + "defaultMessage": "Owner's personal experience" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "ownersPersonalResponse": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersPersonalResponse.name", + "defaultMessage": "Owner's personal response" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "ownersReferences": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ownersReference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersReference.name", + "defaultMessage": "Owner's reference" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "ownersContributionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ownersContributionNote.name", + "defaultMessage": "Owner's contribution note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersRole": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersRole.name", + "defaultMessage": "Viewer's role" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "viewersPersonalExperience": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersPersonalExperience.name", + "defaultMessage": "Viewer's personal experience" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersPersonalResponse": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersPersonalResponse.name", + "defaultMessage": "Viewer's personal response" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "viewersReferences": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "viewersReference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersReference.name", + "defaultMessage": "Viewer's reference" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "viewersContributionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.viewersContributionNote.name", + "defaultMessage": "Viewer's contribution note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "referenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "referenceGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.referenceGroup.fullName", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reference": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.reference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "referenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.referenceNote.fullName", + "defaultMessage": "Reference note" + }, + "name": { + "id": "field.collectionobjects_common.referenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldCollectionSites": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSite": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionSite.name", + "defaultMessage": "Field collection site" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/archaeological" + } + } + } + } + }, + "fieldCollectionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionDateGroup.name", + "defaultMessage": "Field collection date" + } + }, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "fieldCollectionMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionMethod.name", + "defaultMessage": "Field collection method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "collectionmethod" + } + } + } + } + }, + "fieldCollectionFeature": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionFeature.name", + "defaultMessage": "Field collection feature" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionNote.name", + "defaultMessage": "Field collection note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionNumber.name", + "defaultMessage": "Field collection number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,place/tgn" + } + } + } + }, + "fieldCollectionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSource": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollectionSource.name", + "defaultMessage": "Field collection source" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "fieldCollectors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollector": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldCollector.name", + "defaultMessage": "Field collector" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "fieldColEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldColEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fieldColEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "objectSignificanceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "objectSignificanceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectSignificanceGroup.name", + "defaultMessage": "Object significance" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assignedSignificance": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.assignedSignificance.fullName", + "defaultMessage": "Object significance level" + }, + "name": { + "id": "field.collectionobjects_common.assignedSignificance.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assignedsignificance" + } + } + } + }, + "significanceAssignedBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedBy.fullName", + "defaultMessage": "Object significance assigned by" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedBy.name", + "defaultMessage": "Assigned by" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "significanceassignedby" + } + } + } + }, + "significanceAssignedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedDate.fullName", + "defaultMessage": "Object significance assigned date" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "significanceAssignedContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.significanceAssignedContact.fullName", + "defaultMessage": "Object significance assigned contact" + }, + "name": { + "id": "field.collectionobjects_common.significanceAssignedContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + } + } + }, + "objectSuppliedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.objectSuppliedBy.name", + "defaultMessage": "Supplied by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + }, + "variableMediaComponentStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.variableMediaComponentStatus.name", + "defaultMessage": "Variable media component status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vmcomponentstatus" + } + } + } + }, + "credentialGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "credentialGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.credentialGroup.name", + "defaultMessage": "Credential" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "credentialType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialType.fullName", + "defaultMessage": "Credential type" + }, + "name": { + "id": "field.collectionobjects_common.credentialType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "credentialtype" + } + } + } + }, + "credentialRequiredForUse": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialRequiredForUse.fullName", + "defaultMessage": "Credential required for use" + }, + "name": { + "id": "field.collectionobjects_common.credentialRequiredForUse.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "credentialLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.credentialLocation.fullName", + "defaultMessage": "Credential location" + }, + "name": { + "id": "field.collectionobjects_common.credentialLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "distributedLedgerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "distributedLedgerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.distributedLedgerGroup.name", + "defaultMessage": "Distributed ledger" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "distributedStorageLedger": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedStorageLedger.fullName", + "defaultMessage": "Distributed ledger type" + }, + "name": { + "id": "field.collectionobjects_common.distributedStorageLedger.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "distributedledgertype" + } + } + } + }, + "distributedLedgerParentIdentifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedLedgerParentIdentifier.fullName", + "defaultMessage": "Distributed ledger parent identifier" + }, + "name": { + "id": "field.collectionobjects_common.distributedLedgerParentIdentifier.name", + "defaultMessage": "Parent identifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distributedLedgerObjectIdentifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.distributedLedgerObjectIdentifier.fullName", + "defaultMessage": "Distributed ledger object identifier" + }, + "name": { + "id": "field.collectionobjects_common.distributedLedgerObjectIdentifier.name", + "defaultMessage": "Object identifier" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "ledgerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ledgerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.ledgerGroup.name", + "defaultMessage": "Ledger" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "ledger": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledger.fullName", + "defaultMessage": "Ledger type" + }, + "name": { + "id": "field.collectionobjects_common.ledger.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "ledgertype" + } + } + } + }, + "ledgerContractAddress": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledgerContractAddress.fullName", + "defaultMessage": "Ledger contract address" + }, + "name": { + "id": "field.collectionobjects_common.ledgerContractAddress.name", + "defaultMessage": "Contract address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "ledgerTokenID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.ledgerTokenID.fullName", + "defaultMessage": "Ledger token ID" + }, + "name": { + "id": "field.collectionobjects_common.ledgerTokenID.name", + "defaultMessage": "Token ID" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "intendedBehavior": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedBehavior.name", + "defaultMessage": "Intended behavior" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "programmingLanguageGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "programmingLanguageGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.programmingLanguageGroup.name", + "defaultMessage": "Programming language" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "programmingLanguageName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.programmingLanguageName.fullName", + "defaultMessage": "Programming language name" + }, + "name": { + "id": "field.collectionobjects_common.programmingLanguageName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "programminglanguage" + } + } + } + }, + "programmingLanguageVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.programmingLanguageVersion.fullName", + "defaultMessage": "Programming language version" + }, + "name": { + "id": "field.collectionobjects_common.programmingLanguageVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "utilizedSoftwareGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "utilizedSoftwareGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.utilizedSoftwareGroup.name", + "defaultMessage": "Utilized software" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "software": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.software.fullName", + "defaultMessage": "Utilized software name" + }, + "name": { + "id": "field.collectionobjects_common.software.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "utilizedsoftware" + } + } + } + }, + "softwareVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareVersion.fullName", + "defaultMessage": "Utilized software version" + }, + "name": { + "id": "field.collectionobjects_common.softwareVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "softwareLibraries": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "softwareLibrary": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.softwareLibrary.name", + "defaultMessage": "Library" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwarelibraries" + } + } + } + } + }, + "codeCompilers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "codeCompiler": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.codeCompiler.name", + "defaultMessage": "Compiler" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "compilers" + } + } + } + } + }, + "intendedOperatingSystemGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "intendedOperatingSystemGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystemGroup.name", + "defaultMessage": "Intended operating system" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "intendedOperatingSystem": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedOperatingSystem.fullName", + "defaultMessage": "Intended operating system name" + }, + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystem.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "operatingsystems" + } + } + } + }, + "intendedOperatingSystemVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedOperatingSystemVersion.fullName", + "defaultMessage": "Intended operating system version" + }, + "name": { + "id": "field.collectionobjects_common.intendedOperatingSystemVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "intendedBrowserGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "intendedBrowserGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.intendedBrowserGroup.name", + "defaultMessage": "Intended browser" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "intendedBrowser": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedBrowser.fullName", + "defaultMessage": "Itended browser name" + }, + "name": { + "id": "field.collectionobjects_common.intendedBrowser.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "webbrowsers" + } + } + } + }, + "intendedBrowserVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.intendedBrowserVersion.fullName", + "defaultMessage": "Itended browser version" + }, + "name": { + "id": "field.collectionobjects_common.intendedBrowserVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "networkConnectionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "networkConnectionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.networkConnectionGroup.name", + "defaultMessage": "Network connection" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "networkConnectionRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.networkConnectionRequired.fullName", + "defaultMessage": "Network connection required" + }, + "name": { + "id": "field.collectionobjects_common.networkConnectionRequired.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "networkConnectionType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.networkConnectionType.fullName", + "defaultMessage": "Network connection type" + }, + "name": { + "id": "field.collectionobjects_common.networkConnectionType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "connectiontype" + } + } + } + } + } + }, + "domainGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "domainGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.domainGroup.name", + "defaultMessage": "Domain" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "domainName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainName.fullName", + "defaultMessage": "Domain name" + }, + "name": { + "id": "field.collectionobjects_common.domainName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "domainHost": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainHost.fullName", + "defaultMessage": "Domain host" + }, + "name": { + "id": "field.collectionobjects_common.domainHost.name", + "defaultMessage": "Host" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "domainType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainType.fullName", + "defaultMessage": "Domain type" + }, + "name": { + "id": "field.collectionobjects_common.domainType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "domaintype" + } + } + } + }, + "domainVersion": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainVersion.fullName", + "defaultMessage": "Domain version" + }, + "name": { + "id": "field.collectionobjects_common.domainVersion.name", + "defaultMessage": "Version" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "domainOwner": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.domainOwner.fullName", + "defaultMessage": "Domain owner" + }, + "name": { + "id": "field.collectionobjects_common.domainOwner.name", + "defaultMessage": "Owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + } + }, + "applicationInteractionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "applicationInteractionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.applicationInteractionGroup.name", + "defaultMessage": "Interacting application" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "applicationInteractionRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationInteractionRequired.fullName", + "defaultMessage": "Interacting application required" + }, + "name": { + "id": "field.collectionobjects_common.applicationInteractionRequired.name", + "defaultMessage": "Required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "yesNoValues" + } + } + } + }, + "applicationRequired": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationRequired.fullName", + "defaultMessage": "Interacting application name" + }, + "name": { + "id": "field.collectionobjects_common.applicationRequired.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "interactingapplication" + } + } + } + }, + "applicationRequiredFor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.applicationRequiredFor.fullName", + "defaultMessage": "Interacting application required for" + }, + "name": { + "id": "field.collectionobjects_common.applicationRequiredFor.name", + "defaultMessage": "For" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "apiUrls": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "apiUrl": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.apiUrl.name", + "defaultMessage": "API URL" + } + }, + "repeating": true, + "view": { + "type": "URLInput" + } + } + } + }, + "avFormatGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avFormatGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avFormatGroup.name", + "defaultMessage": "Format" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "format": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.format.fullName", + "defaultMessage": "Format name" + }, + "name": { + "id": "field.collectionobjects_common.format.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formats" + } + } + } + }, + "formatType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.formatType.fullName", + "defaultMessage": "Format type" + }, + "name": { + "id": "field.collectionobjects_common.formatType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formattypenames" + } + } + } + } + } + }, + "avChannelGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avChannelGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avChannelGroup.name", + "defaultMessage": "AV channel" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "numberOfChannels": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.numberOfChannels.fullName", + "defaultMessage": "AV channel number of associated channels" + }, + "name": { + "id": "field.collectionobjects_common.numberOfChannels.name", + "defaultMessage": "Number of associated channels" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "channelType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.channelType.fullName", + "defaultMessage": "AV channel type" + }, + "name": { + "id": "field.collectionobjects_common.channelType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "formattypenames" + } + } + } + } + } + }, + "channelLayout": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.channelLayout.name", + "defaultMessage": "Channel layout" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fileCodecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fileCodecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.fileCodecGroup.name", + "defaultMessage": "File codec" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "fileCodec": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.fileCodec.fullName", + "defaultMessage": "File codec name" + }, + "name": { + "id": "field.collectionobjects_common.fileCodec.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "filecodecs" + } + } + } + }, + "compressionStandard": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.compressionstandard.fullName", + "defaultMessage": "File codec compression standard" + }, + "name": { + "id": "field.collectionobjects_common.compressionstandard.name", + "defaultMessage": "Compression standard" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "compressionstandards" + } + } + } + }, + "fileContainer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.fileContainer.fullName", + "defaultMessage": "File codec container" + }, + "name": { + "id": "field.collectionobjects_common.fileContainer.name", + "defaultMessage": "Container" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "filecontainers" + } + } + } + } + } + }, + "audioType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.audioType.name", + "defaultMessage": "Audio type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "audiotypes" + } + } + } + }, + "audioPreferences": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.audioPreferences.name", + "defaultMessage": "Audio preference" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "audiopreferences" + } + } + } + }, + "aspectRatioGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "aspectRatioGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.aspectRatioGroup.name", + "defaultMessage": "Aspect ratio" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "aspectRatio": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.aspectRatio.fullName", + "defaultMessage": "Aspect ratio width:height" + }, + "name": { + "id": "field.collectionobjects_common.aspectRatio.name", + "defaultMessage": "Width:height" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "aspectratios" + } + } + } + }, + "aspectRatioType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.aspectRatioType.fullName", + "defaultMessage": "Aspect ratio type" + }, + "name": { + "id": "field.collectionobjects_common.aspectRatioType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "aspectratiotypes" + } + } + } + } + } + }, + "colorSpaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "colorSpaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.colorSpaceGroup.name", + "defaultMessage": "Color space" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "colorSpace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.colorSpace.fullName", + "defaultMessage": "Color space name" + }, + "name": { + "id": "field.collectionobjects_common.colorSpace.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "colorspaces" + } + } + } + }, + "colorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.colorType.fullName", + "defaultMessage": "Color space type" + }, + "name": { + "id": "field.collectionobjects_common.colorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "colortypes" + } + } + } + } + } + }, + "avSpecificationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avSpecificationNote.name", + "defaultMessage": "Audio or video specification note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "softwareTechnicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "softwareTechnicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeGroup.name", + "defaultMessage": "Software technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "softwareTechnicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttribute.fullName", + "defaultMessage": "Software technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttribute.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwareattributes" + } + } + } + }, + "softwareTechnicalAttributeLowValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeLowValue.fullName", + "defaultMessage": "Software technical attribute low/single value" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeLowValue.name", + "defaultMessage": "Low/single value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "softwareTechnicalAttributeHighValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeHighValue.fullName", + "defaultMessage": "Software technical attribute high value" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeHighValue.name", + "defaultMessage": "High value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "softwareTechnicalAttributeUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeUnit.fullName", + "defaultMessage": "Software technical attribute unit" + }, + "name": { + "id": "field.collectionobjects_common.softwareTechnicalAttributeUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "softwareattributeunits" + } + } + } + } + } + }, + "chromaSubsampling": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.chromaSubsampling.name", + "defaultMessage": "Chroma subsampling" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "chromasubsampling" + } + } + } + }, + "avTechnicalAttributeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "avTechnicalAttributeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeGroup.name", + "defaultMessage": "AV technical attribute" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "avTechnicalAttribute": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttribute.fullName", + "defaultMessage": "AV technical attribute" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttribute.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "avattributes" + } + } + } + }, + "avTechnicalAttributeLowValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeLowValue.fullName", + "defaultMessage": "AV technical attribute low/single value" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeLowValue.name", + "defaultMessage": "Low/single value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "avTechnicalAttributeHighValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeHighValue.fullName", + "defaultMessage": "AV technical attribute high value" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeHighValue.name", + "defaultMessage": "High value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "avTechnicalAttributeUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.avTechnicalAttributeUnit.fullName", + "defaultMessage": "AV technical attribute unit" + }, + "name": { + "id": "field.collectionobjects_common.avTechnicalAttributeUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "avattributeunits" + } + } + } + } + } + }, + "checksumGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "checksumGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.checksumGroup.name", + "defaultMessage": "Checksum" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "checksumValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumValue.fullName", + "defaultMessage": "Checksum value" + }, + "name": { + "id": "field.collectionobjects_common.checksumValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "checksumType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumType.fullName", + "defaultMessage": "Checksum type" + }, + "name": { + "id": "field.collectionobjects_common.checksumType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "checksumtypes" + } + } + } + }, + "checksumDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.checksumDate.fullName", + "defaultMessage": "Checksum date" + }, + "name": { + "id": "field.collectionobjects_common.checksumDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "rightsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightsGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "rightType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightType.name", + "defaultMessage": "Right type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightstype" + } + } + } + }, + "rightHolderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightHolderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightHolderGroup.name", + "defaultMessage": "Right holder" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "rightHolder": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightHolder.fullName", + "defaultMessage": "Right holder name" + }, + "name": { + "id": "field.collectionobjects_common.rightHolder.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,person/local,person/shared" + } + } + } + }, + "rightHolderContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightHolderContact.fullName", + "defaultMessage": "Right holder contact" + }, + "name": { + "id": "field.collectionobjects_common.rightHolderContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,person/local,person/shared" + } + } + } + } + } + }, + "rightBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightBeginDate.name", + "defaultMessage": "Right begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightEndDate.name", + "defaultMessage": "Right end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightJurisdiction": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightJurisdiction.name", + "defaultMessage": "Right jurisdiction" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "addressCountries" + } + } + } + }, + "standardizedRightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.standardizedRightStatement.name", + "defaultMessage": "Standardized right statement" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "standardizedrightstatement" + } + } + } + }, + "rightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightStatement.name", + "defaultMessage": "Right statement" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "rightNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightNote.name", + "defaultMessage": "Right note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "rightsInGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightsInGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "rightInTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightInType": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInType.name", + "defaultMessage": "Right in type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightsin" + } + } + } + } + }, + "rightInBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInBeginDate.name", + "defaultMessage": "Right in begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightInEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInEndDate.name", + "defaultMessage": "Right in end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementSent": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementSent.fullName", + "defaultMessage": "Right in agreement sent" + }, + "name": { + "id": "field.collectionobjects_common.agreementSent.name", + "defaultMessage": "Agreement sent" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementReceived": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementReceived.fullName", + "defaultMessage": "Right in agreement received" + }, + "name": { + "id": "field.collectionobjects_common.agreementReceived.name", + "defaultMessage": "Agreement received" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "agreementSigned": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_common.agreementSigned.fullName", + "defaultMessage": "Right in agreement signed" + }, + "name": { + "id": "field.collectionobjects_common.agreementSigned.name", + "defaultMessage": "Agreement signed" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "rightInRestrictions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "rightInRestriction": { + "[config]": { + "repeating": true, + "messages": { + "fullName": { + "id": "field.collectionobjects_common.rightInRestriction.fullName", + "defaultMessage": "Right in restriction" + }, + "name": { + "id": "field.collectionobjects_common.rightInRestriction.name", + "defaultMessage": "Restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "rightsinrestriction" + } + } + } + } + }, + "rightReproductionStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightReproductionStatement.name", + "defaultMessage": "Right statement for reproduction" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "rightInNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.rightInNote.name", + "defaultMessage": "Right in note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "apparelSizes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "apparelSize": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.apparelSize.name", + "defaultMessage": "Apparel size" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "apparelsizes" + } + } + } + } + }, + "descriptionLevel": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_common.descriptionLevel.name", + "defaultMessage": "Description level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "descriptionlevel" + } + } + } + } + }, + "ns2:collectionobjects_anthro": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/anthro" + } + }, + "ethnoFileCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ethnoFileCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.ethnoFileCode.name", + "defaultMessage": "Ethnographic file code" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethfilecode" + } + } + } + } + }, + "anthroOwnershipGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "anthroOwnershipGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipGroup.name", + "defaultMessage": "Previous ownership" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "anthroOwner": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwner.fullName", + "defaultMessage": "Previous owner name" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwner.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "anthroOwnershipAccess": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipAccess.fullName", + "defaultMessage": "Previous ownership access" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipAccess.name", + "defaultMessage": "Access" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipAccessLevels" + } + } + } + }, + "anthroOwnershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.fullName", + "defaultMessage": "Previous ownership date" + }, + "groupName": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "anthroOwnershipCategory": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipCategory.fullName", + "defaultMessage": "Previous ownership category" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipCategory.name", + "defaultMessage": "Category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipCategories" + } + } + } + }, + "anthroOwnershipPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPlace.fullName", + "defaultMessage": "Previous ownership place" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPlace.name", + "defaultMessage": "Place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "anthroOwnershipMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipMethod.fullName", + "defaultMessage": "Previous ownership exchange method" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipMethod.name", + "defaultMessage": "Exch. meth." + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "ownershipExchangeMethods" + } + } + } + }, + "anthroOwnershipPriceCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceCurrency.fullName", + "defaultMessage": "Previous ownership exchange price currency" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceCurrency.name", + "defaultMessage": "Price currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "anthroOwnershipPriceAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceAmount.fullName", + "defaultMessage": "Previous ownership exchange price amount" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipPriceAmount.name", + "defaultMessage": "Price amount" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "anthroOwnershipNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.anthroOwnershipNote.fullName", + "defaultMessage": "Previous ownership note" + }, + "name": { + "id": "field.collectionobjects_anthro.anthroOwnershipNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.fieldLocVerbatim.name", + "defaultMessage": "Field collection place (verbatim)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "commingledRemainsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "commingledRemainsGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.commingledRemainsGroup.fullName", + "defaultMessage": "Commingled remains" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "minIndividuals": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.minIndividuals.fullName", + "defaultMessage": "Commingled remains min. number of individuals" + }, + "name": { + "id": "field.collectionobjects_anthro.minIndividuals.name", + "defaultMessage": "Min. number of individuals" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "bone": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.bone.fullName", + "defaultMessage": "Commingled remains bone" + }, + "name": { + "id": "field.collectionobjects_anthro.bone.name", + "defaultMessage": "Bone" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "side": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.side.fullName", + "defaultMessage": "Commingled remains side" + }, + "name": { + "id": "field.collectionobjects_anthro.side.name", + "defaultMessage": "Side" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "bodyside" + } + } + } + }, + "count": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.count.fullName", + "defaultMessage": "Commingled remains count" + }, + "name": { + "id": "field.collectionobjects_anthro.count.name", + "defaultMessage": "Count" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sex": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.sex.fullName", + "defaultMessage": "Commingled remains sex" + }, + "name": { + "id": "field.collectionobjects_anthro.sex.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexDeterminations" + } + } + } + }, + "ageRange": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.ageRange.fullName", + "defaultMessage": "Commingled remains age range represented" + }, + "name": { + "id": "field.collectionobjects_anthro.ageRange.name", + "defaultMessage": "Age range represented" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "agerange" + } + } + } + }, + "dentition": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.dentition.fullName", + "defaultMessage": "Commingled remains dentition present?" + }, + "name": { + "id": "field.collectionobjects_anthro.dentition.name", + "defaultMessage": "Dentition present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "mortuaryTreatmentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "mortuaryTreatmentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentGroup.name", + "defaultMessage": "Mortuary treatment" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "mortuaryTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.mortuaryTreatment.fullName", + "defaultMessage": "Mortuary treatment" + }, + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatment.name", + "defaultMessage": "Treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "mortuarytreatment" + } + } + } + }, + "mortuaryTreatmentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentNote.fullName", + "defaultMessage": "Mortuary treatment note" + }, + "name": { + "id": "field.collectionobjects_anthro.mortuaryTreatmentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "behrensmeyerSingleLower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.behrensmeyerSingleLower.fullName", + "defaultMessage": "Behrensmeyer stage - Single/lower" + }, + "name": { + "id": "field.collectionobjects_anthro.behrensmeyerSingleLower.name", + "defaultMessage": "Single/lower" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "behrensmeyerUpper": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.behrensmeyerUpper.fullName", + "defaultMessage": "Behrensmeyer stage - Upper" + }, + "name": { + "id": "field.collectionobjects_anthro.behrensmeyerUpper.name", + "defaultMessage": "Upper" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "commingledRemainsNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_anthro.commingledRemainsNote.fullName", + "defaultMessage": "Commingled remains note" + }, + "name": { + "id": "field.collectionobjects_anthro.commingledRemainsNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "fieldCollectionEvents": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEvent": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_anthro.fieldCollectionEvent.name", + "defaultMessage": "Field collection event" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "chronology/fieldcollection,chronology/event" + } + } + } + } + }, + "localityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "locality", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/anthro" + } + } + }, + "localityGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localityGroup.fullName", + "defaultMessage": "Locality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "fieldLocVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocVerbatim.name", + "defaultMessage": "Field collection location verbatim" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldLocPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + }, + "taxonomicRange": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.taxonomicRange.name", + "defaultMessage": "Geographic range of taxon" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldLocCounty": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCounty.name", + "defaultMessage": "County" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-county", + "source": "counties" + } + } + } + }, + "fieldLocState": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocState.name", + "defaultMessage": "State" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-state", + "source": "states" + } + } + } + }, + "fieldLocCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "countries" + } + } + } + }, + "fieldLocHigherGeography": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.fieldLocHigherGeography.name", + "defaultMessage": "Higher geography" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "higherGeographies" + } + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordinates.name", + "defaultMessage": "TRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vOtherCoords": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vOtherCoords.name", + "defaultMessage": "Other coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.vCoordSys.name", + "defaultMessage": "Other coords system" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vcoordsys" + } + } + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.ext.locality.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertainty": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertainty.fullName", + "defaultMessage": "Coord uncertainty" + }, + "name": { + "id": "field.ext.locality.coordUncertainty.name", + "defaultMessage": "Uncertainty" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordUncertaintyUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.coordUncertaintyUnit.fullName", + "defaultMessage": "Coord uncertainty unit" + }, + "name": { + "id": "field.ext.locality.coordUncertaintyUnit.name", + "defaultMessage": "Uncertainty unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordUncertaintyUnits" + } + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDepth.fullName", + "defaultMessage": "Depth verbatim" + }, + "name": { + "id": "field.ext.locality.vDepth.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDepth.fullName", + "defaultMessage": "Depth min" + }, + "name": { + "id": "field.ext.locality.minDepth.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepth": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDepth.fullName", + "defaultMessage": "Depth max" + }, + "name": { + "id": "field.ext.locality.maxDepth.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "depthUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.depthUnit.fullName", + "defaultMessage": "Depth unit" + }, + "name": { + "id": "field.ext.locality.depthUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "depthUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vElevation.fullName", + "defaultMessage": "Elevation verbatim" + }, + "name": { + "id": "field.ext.locality.vElevation.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minElevation.fullName", + "defaultMessage": "Elevation min" + }, + "name": { + "id": "field.ext.locality.minElevation.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevation": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxElevation.fullName", + "defaultMessage": "Elevation max" + }, + "name": { + "id": "field.ext.locality.maxElevation.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "elevationUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.elevationUnit.fullName", + "defaultMessage": "Elevation unit" + }, + "name": { + "id": "field.ext.locality.elevationUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "elevationUnits" + } + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.vDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface verbatim" + }, + "name": { + "id": "field.ext.locality.vDistanceAboveSurface.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.minDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface min" + }, + "name": { + "id": "field.ext.locality.minDistanceAboveSurface.name", + "defaultMessage": "Min" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurface": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.locality.maxDistanceAboveSurface.fullName", + "defaultMessage": "Distance above surface max" + }, + "name": { + "id": "field.ext.locality.maxDistanceAboveSurface.name", + "defaultMessage": "Max" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "distanceAboveSurfaceUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.fullName", + "defaultMessage": "Distance above surface unit" + }, + "name": { + "id": "field.ext.locality.distanceAboveSurfaceUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "distanceAboveSurfaceUnits" + } + } + } + }, + "localityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.localityNote.name", + "defaultMessage": "Locality note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "localitySource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySource.fullName", + "defaultMessage": "Locality source" + }, + "name": { + "id": "field.ext.locality.localitySource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "localitySourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.localitySourceDetail.fullName", + "defaultMessage": "Locality source detail" + }, + "name": { + "id": "field.ext.locality.localitySourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.pointRadiusSpatialFit.name", + "defaultMessage": "Pt. radius sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.footprintSpatialFit.name", + "defaultMessage": "Footprint sp. fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.coordPrecision.name", + "defaultMessage": "Coord precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefencedBy.name", + "defaultMessage": "Georeference by" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.ext.locality.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.ext.locality.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.ext.locality.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.ext.locality.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "georefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.locality.geoRefRemarks.fullName", + "defaultMessage": "Georeference note" + }, + "name": { + "id": "field.ext.locality.geoRefRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.geoRefPlaceName.name", + "defaultMessage": "Georeference place name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionLocationVerbatim": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionLocationVerbatim.name", + "defaultMessage": "Collection location verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "collectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.locality.collectionPlace.name", + "defaultMessage": "Collection place" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local" + } + } + } + } + } + } + }, + "ns2:collectionobjects_culturalcare": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/collectionobject" + } + }, + "culturalCareNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "culturalCareNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.culturalCareNote.name", + "defaultMessage": "Cultural care note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "accessLimitationsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "accessLimitationsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_culturalcare.accessLimitationsGroup.name", + "defaultMessage": "Access limitation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "limitationType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationType.fullName", + "defaultMessage": "Access limitation type" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationtype" + } + } + } + }, + "limitationLevel": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationLevel.fullName", + "defaultMessage": "Access limitation level" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationLevel.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "limitationlevel" + } + } + } + }, + "limitationDetails": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.limitationDetails.fullName", + "defaultMessage": "Access limitation detail" + }, + "name": { + "id": "field.collectionobjects_culturalcare.limitationDetails.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "requester": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requester.fullName", + "defaultMessage": "Access limitation requestor" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requester.name", + "defaultMessage": "Requestor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "requestOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.fullName", + "defaultMessage": "Access limitation requested on behalf of" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "requestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_culturalcare.requestDate.fullName", + "defaultMessage": "Access limitation request date" + }, + "name": { + "id": "field.collectionobjects_culturalcare.requestDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + }, + "ns2:collectionobjects_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/nagpra" + } + }, + "nagpraInventoryNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraInventoryName": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraInventoryName.name", + "defaultMessage": "NAGPRA inventory" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagprainventory" + } + } + } + } + }, + "nagpraCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCategory.name", + "defaultMessage": "Museum NAGPRA category determination" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpracategory" + } + } + } + } + }, + "graveAssocCodes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "graveAssocCode": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.graveAssocCode.name", + "defaultMessage": "Grave association code" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "graveassoccode" + } + } + } + } + }, + "nagpraCulturalDeterminations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraCulturalDetermination": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraCulturalDetermination.name", + "defaultMessage": "NAGPRA cultural determination note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraNote.name", + "defaultMessage": "NAGPRA note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraDetermGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraDetermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermGroup.name", + "defaultMessage": "Cultural determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraDetermCulture": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.fullName", + "defaultMessage": "Cultural determination culture" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermCulture.name", + "defaultMessage": "Culture" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraDetermType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.fullName", + "defaultMessage": "Cultural determination type" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpradetermtype" + } + } + } + }, + "nagpraDetermBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.fullName", + "defaultMessage": "Cultural determination by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermBy.name", + "defaultMessage": "By" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "nagpraDetermNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.fullName", + "defaultMessage": "Cultural determination note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraDetermNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "repatriationNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "repatriationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.repatriationNote.name", + "defaultMessage": "Repatriation note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraReportFiledGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraReportFiledGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledGroup.name", + "defaultMessage": "Reported to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraReportFiled": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.fullName", + "defaultMessage": "NAGPRA report filed" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiled.name", + "defaultMessage": "Report filed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nagpraReportFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.fullName", + "defaultMessage": "NAGPRA report filed by" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledWith": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.fullName", + "defaultMessage": "NAGPRA report filed with" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledWith.name", + "defaultMessage": "Filed with" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "nagpraReportFiledDate": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.fullName", + "defaultMessage": "NAGPRA report filed date" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraReportFiledNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.fullName", + "defaultMessage": "Reporting note" + }, + "name": { + "id": "field.collectionobjects_nagpra.nagpraReportFiledNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:collectionobjects_naturalhistory_extension": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/naturalhistory_extension" + } + }, + "taxonomicIdentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "taxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "qualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.qualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.qualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "identBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,organization/local" + } + } + } + }, + "identDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "institution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.institution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.institution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.institution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local" + } + } + } + }, + "identKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.identKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.identKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "reference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.reference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.reference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.reference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "refPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.refPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.refPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.refPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "notes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.notes.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.notes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "taxonomicIdentHybridParentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonomicIdentHybridParentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentGroup.name", + "defaultMessage": "Hybrid parent" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonomicIdentHybridParent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.fullName", + "defaultMessage": "Hybrid parent name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParent.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "taxonomicIdentHybridParentQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.fullName", + "defaultMessage": "Hybrid parent qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.taxonomicIdentHybridParentQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "hybridparentqualifier" + } + } + } + } + } + }, + "affinityTaxon": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.affinityTaxon.name", + "defaultMessage": "Affinity taxon" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "hybridFlag": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.hybridFlag.name", + "defaultMessage": "Hybrid flag" + } + }, + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "determinationHistoryGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "determinationHistoryGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.determinationHistoryGroup.name", + "defaultMessage": "Determination history" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "determinationTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.fullName", + "defaultMessage": "Taxonomic identification scientific name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationTaxon.name", + "defaultMessage": "Scientific name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "determinationQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.fullName", + "defaultMessage": "Taxonomic identification qualifier" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonqualifier" + } + } + } + }, + "determinationBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.fullName", + "defaultMessage": "Taxonomic identification by" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationBy.groupName", + "defaultMessage": "Identification by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationBy.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "determinationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.fullName", + "defaultMessage": "Taxonomic identification date" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.groupName", + "defaultMessage": "Identification date" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "determinationInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.fullName", + "defaultMessage": "Taxonomic identification institution" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.groupName", + "defaultMessage": "Identification institution" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + }, + "determinationKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationKind.fullName", + "defaultMessage": "Taxonomic identification kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxonkind" + } + } + } + }, + "determinationReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.fullName", + "defaultMessage": "Taxonomic identification reference source" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationReference.groupName", + "defaultMessage": "Reference source" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationReference.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.fullName", + "defaultMessage": "Taxonomic identification reference page" + }, + "groupName": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.groupName", + "defaultMessage": "Reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "determinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.determinationNote.fullName", + "defaultMessage": "Taxonomic identification note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.determinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "typeSpecimenGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "typeSpecimenGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenGroup.name", + "defaultMessage": "Type specimen" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "typeSpecimenKind": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.fullName", + "defaultMessage": "Type specimen kind" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenKind.name", + "defaultMessage": "Kind" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "typespecimenkind" + } + } + } + }, + "typeSpecimenAssertionBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.fullName", + "defaultMessage": "Type specimen asserted by" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenAssertionBy.name", + "defaultMessage": "Asserted by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "typeSpecimenReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.fullName", + "defaultMessage": "Type specimen reference" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenRefPage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.fullName", + "defaultMessage": "Type specimen reference page" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenRefPage.name", + "defaultMessage": "Page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeSpecimenBasionym": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.fullName", + "defaultMessage": "Type specimen verified basionym" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenBasionym.name", + "defaultMessage": "Verified basionym" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "typeSpecimenNotes": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.fullName", + "defaultMessage": "Type specimen note" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.typeSpecimenNotes.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "vegetationType": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.vegetationType.name", + "defaultMessage": "Vegetation type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "vegetationtype" + } + } + } + }, + "associatedTaxaGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "associatedTaxaGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxaGroup.name", + "defaultMessage": "Associated taxa" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "associatedTaxon": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.fullName", + "defaultMessage": "Associated taxon name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.associatedTaxon.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "taxon/local" + } + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.commonName.fullName", + "defaultMessage": "Associated taxon common name" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.commonName.name", + "defaultMessage": "Common name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "interaction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_naturalhistory.interaction.fullName", + "defaultMessage": "Associated taxon interaction" + }, + "name": { + "id": "field.collectionobjects_naturalhistory.interaction.name", + "defaultMessage": "Interaction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "assoctaxoninteraction" + } + } + } + } + } + } + }, + "ns2:collectionobjects_ohc": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/collectionobject/domain/ohc" + } + }, + "descriptionLevel": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.descriptionLevel.name", + "defaultMessage": "Description level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "descriptionlevel" + } + } + } + }, + "majorTaxon": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.majorTaxon.name", + "defaultMessage": "Major taxon" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "majortaxon" + } + } + } + }, + "categoryGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "categoryGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.categoryGroup.name", + "defaultMessage": "Category and subcategory" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "category": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.category.name", + "defaultMessage": "Category" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/nomenclature" + } + } + } + }, + "subCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.subCategory.name", + "defaultMessage": "Subcategory" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/nomenclature" + } + } + } + } + } + }, + "apparelSizes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "apparelSize": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.apparelSize.name", + "defaultMessage": "Apparel size" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "apparelsizes" + } + } + } + } + }, + "namedTimePeriods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "namedTimePeriod": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.namedTimePeriod.name", + "defaultMessage": "Named time period" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "namedtimeperiods" + } + } + } + } + }, + "oaiSiteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "oaiSiteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.collectionobjects_ohc.oaiSiteGroup.name", + "defaultMessage": "OAI site" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "oaiCollectionPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_ohc.oaiCollectionPlace.fullName", + "defaultMessage": "OAI site" + }, + "name": { + "id": "field.collectionobjects_ohc.oaiCollectionPlace.name", + "defaultMessage": "Site" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,place/tgn" + } + } + } + }, + "oaiLocVerbatim": { + "[config]": { + "messages": { + "fullName": { + "id": "field.collectionobjects_ohc.oaiLocVerbatim.fullName", + "defaultMessage": "OAI collection site (verbatim)" + }, + "name": { + "id": "field.collectionobjects_ohc.oaiLocVerbatim.name", + "defaultMessage": "Collection site (verbatim)" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.collectionobject.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ethnoFileCodes", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ethnoFileCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroupList", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "oaiCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "oaiLocVerbatim" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim", + "subpath": "ns2:collectionobjects_anthro" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionFeature" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriods", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReason" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "forms", + "children": { + "key": null, + "ref": null, + "props": { + "name": "form" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "styles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "style" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "apparelSizes", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "apparelSize" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distinguishingFeatures" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "phase" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "majorTaxon", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "age", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ageQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "age" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commingledRemains", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minIndividuals" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bone" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "side" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "count" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentition" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyer", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerSingleLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerUpper" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commingledRemainsNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "textInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentScript" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInterpretation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTransliteration" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nonTextInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInterpretation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assoc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocConcept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEvent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPriceAmount" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "viewersRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locality", + "collapsible": true, + "collapsed": true, + "children": { + "type": "CompoundInput", + "key": null, + "ref": null, + "props": { + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "tabular": false + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rights", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightHolderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightHolderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightHolder" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightHolderContact" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightJurisdiction" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "standardizedRightStatement" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightStatement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightsin", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsInGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightsInGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightInTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "rightInBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightInEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "agreementSent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "agreementReceived" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "agreementSigned" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInRestrictions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightInRestriction" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "rightReproductionStatement" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightInNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "inventory": { + "messages": { + "name": { + "id": "form.collectionobject.inventory.name", + "defaultMessage": "Inventory Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + "disabled": true + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.collectionobject.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:collectionobjects_common", + "briefDescriptions", + "briefDescription" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "photo": { + "messages": { + "name": { + "id": "form.collectionobject.photo.name", + "defaultMessage": "Photograph Template" + } + }, + "sortOrder": 2, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distinguishingFeatures" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurementUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + "disabled": true + }, + "public": { + "messages": { + "name": { + "id": "form.collectionobject.public.name", + "defaultMessage": "Public Browser Template" + } + }, + "sortOrder": 3, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonReference", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "refPage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "timebased": { + "messages": { + "name": { + "id": "form.collectionobject.timebased.name", + "defaultMessage": "Time-Based Media Template" + } + }, + "sortOrder": 3, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectSignificanceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectSignificanceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assignedSignificance" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "significanceAssignedContact" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectSuppliedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "variableMediaComponentStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "credentialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "credentialType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialRequiredForUse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "credentialLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "distributedStorageLedger" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerParentIdentifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distributedLedgerObjectIdentifier" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ledgerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ledger" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerContractAddress" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ledgerTokenID" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "checksumGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "checksumValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "copyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "editionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "styles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "style" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBehavior" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectComponentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectComponentInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurement" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "technicalAttributeMeasurementUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentLanguages", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentLanguage" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentActivities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentActivity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPositions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPosition" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentObjectType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentScripts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentScript" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentOtherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentOther" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentOtherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "textInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "textualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentScript" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentInterpretation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionContentTransliteration" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nonTextInscript", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nonTextualInscriptionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInscriber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionPosition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inscriptionDescriptionInterpretation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techniqueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "technique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techniqueType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReason" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechSpecs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avFormatGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avFormatGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "formatType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "format" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avChannelGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avChannelGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberOfChannels" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "channelType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "channelLayout" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fileCodecGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fileCodecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fileCodec" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "compressionStandard" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fileContainer" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "audioType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "audioPreferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "chromaSubsampling" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "aspectRatio" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "aspectRatioType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "colorSpaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "colorSpaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "colorSpace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "colorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeLowValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeHighValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avTechnicalAttributeUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "avSpecificationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "software", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "programmingLanguageVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "utilizedSoftwareGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "utilizedSoftwareGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "software" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystem" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedOperatingSystemVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareLibraries", + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareLibrary" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "codeCompilers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "codeCompiler" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "networkConnectionType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowser" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "intendedBrowserVersion" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "domainGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "domainName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainHost" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainVersion" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "domainOwner" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "applicationInteractionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "applicationRequiredFor" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttribute" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeLowValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeHighValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "softwareTechnicalAttributeUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "apiUrls", + "children": { + "key": null, + "ref": null, + "props": { + "name": "apiUrl" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assoc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocActivityGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocActivity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocActivityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocObject" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocConceptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocConcept" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocConceptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocCulturalContextNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocOrganizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPersonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPlaceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEvent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocEventName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNameType" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganizations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventOrganization" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeoples", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPeople" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPersons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPerson" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocEventPlace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocEventNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocStructuredDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocDateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "owners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroup" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownershipAccess" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipCategory" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchange", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangeMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangePriceCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipExchangePriceValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ownersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewer", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "viewersRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalExperience" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersPersonalResponse" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersReferences", + "children": { + "key": null, + "ref": null, + "props": { + "name": "viewersReference" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "viewersContributionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + "disabled": true + }, + "archeology-parent": { + "messages": { + "name": { + "id": "form.collectionobject.archeology.name", + "defaultMessage": "Archaeology Parent Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroupList", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "oaiCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "oaiLocVerbatim" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim", + "subpath": "ns2:collectionobjects_anthro" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionFeature" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriods", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locality", + "collapsible": true, + "collapsed": true, + "children": { + "type": "CompoundInput", + "key": null, + "ref": null, + "props": { + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "tabular": false + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "archeology-child": { + "messages": { + "name": { + "id": "form.collectionobject.archeology.name", + "defaultMessage": "Archaeology Child Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assocPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assocPeopleNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroupList", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "oaiSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "oaiCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "oaiLocVerbatim" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim", + "subpath": "ns2:collectionobjects_anthro" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionFeature" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriods", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedTimePeriod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCompliance", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryNames", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraInventoryName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategories", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCategory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCodes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "graveAssocCode" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "repatriationNotes", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "repatriationNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDeterminations", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraCulturalDetermination" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermCulture" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraDetermNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroupList", + "subpath": "ns2:collectionobjects_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiled" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledWith" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraReportFiledNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "culturalCare", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNotes", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "culturalCareNote" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroupList", + "subpath": "ns2:collectionobjects_culturalcare", + "children": { + "key": null, + "ref": null, + "props": { + "name": "accessLimitationsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "limitationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "limitationDetails" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requester" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "requestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "phase" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "majorTaxon", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "age", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ageQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "age" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locality", + "collapsible": true, + "collapsed": true, + "children": { + "type": "CompoundInput", + "key": null, + "ref": null, + "props": { + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "tabular": false + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "prog-archeology": { + "messages": { + "name": { + "id": "form.collectionobject.archeology.name", + "defaultMessage": "Archaeology Programming Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "history": { + "messages": { + "name": { + "id": "form.collectionobject.history.name", + "defaultMessage": "History Core Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionReason" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "colors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "color" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "apparelSizes", + "subpath": "ns2:collectionobjects_ohc", + "children": { + "key": null, + "ref": null, + "props": { + "name": "apparelSize" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "physicalDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcepts", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentConcept" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "prog-history": { + "messages": { + "name": { + "id": "form.collectionobject.history.name", + "defaultMessage": "History Programming Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLevel" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "material" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialComponentNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "materialSource" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "titleTranslationLanguage" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPlaceRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeople" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPeopleRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hist", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectHistoryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "anthroOwnershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "naturalhistory": { + "messages": { + "name": { + "id": "form.collectionobject.naturalhistory.name", + "defaultMessage": "Natural History Core Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forms", + "children": { + "key": null, + "ref": null, + "props": { + "name": "form" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "phase" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "majorTaxon", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "age", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ageQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "age" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "content", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "contentDateGroup" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "namedCollections", + "children": { + "key": null, + "ref": null, + "props": { + "name": "namedCollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "comments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "comment" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim", + "subpath": "ns2:collectionobjects_anthro" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldColEventName" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionFeature" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "prod", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganization" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectProductionOrganizationRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locality", + "collapsible": true, + "collapsed": true, + "children": { + "type": "CompoundInput", + "key": null, + "ref": null, + "props": { + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicRange" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCounty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocState" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldLocHigherGeography" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vOtherCoords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depth", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depthUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "elevationUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurface", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "distanceAboveSurfaceUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "localitySource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localitySourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "georefDetail", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + "tabular": false + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reference", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "referenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "referenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "prog-naturalhistory": { + "messages": { + "name": { + "id": "form.collectionobject.naturalhistory.name", + "defaultMessage": "Natural History Programming Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "desc", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forms", + "children": { + "key": null, + "ref": null, + "props": { + "name": "form" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bio", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sex" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "phase" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "majorTaxon", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "age", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "ageQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "age" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ageUnit" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroupList", + "subpath": "ns2:collectionobjects_naturalhistory_extension", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonomicIdentGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonName", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxon" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "qualifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIdent", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "identDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "institution" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "identKind" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "id", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherNumberList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherNumber", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "numberValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartments", + "children": { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "descriptionLevel", + "subpath": "ns2:collectionobjects_ohc" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "recordStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "briefDescriptions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "briefDescription" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "computedCurrentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatusList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryStatus" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroupList", + "subpath": "ns2:collectionobjects_annotation", + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationGroup", + "tabular": false, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "annotationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "annotationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "annotationNote", + "multiline": true + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "usageGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "usage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "usageNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "collect", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroupList", + "subpath": "ns2:collectionobjects_anthro", + "children": { + "key": null, + "ref": null, + "props": { + "name": "localityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocVerbatim" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldLocPlace" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "collectionobject" + }, + "concept": { + "messages": { + "record": { + "name": { + "id": "record.concept.name", + "defaultMessage": "Concept" + }, + "collectionName": { + "id": "record.concept.collectionName", + "defaultMessage": "Concepts" + } + }, + "panel": { + "info": { + "id": "panel.concept.info", + "defaultMessage": "Concept Information" + }, + "hierarchy": { + "id": "panel.concept.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.concept.termSource", + "defaultMessage": "Source" + }, + "scopeNote": { + "id": "inputTable.concept.scopeNote", + "defaultMessage": "Scope note" + } + } + }, + "serviceConfig": { + "serviceName": "Concepts", + "servicePath": "conceptauthorities", + "serviceType": "authority", + "objectName": "Conceptitem", + "documentName": "concepts" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.concept.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.concept.all.collectionName", + "defaultMessage": "All Concepts" + }, + "itemName": { + "id": "vocab.concept.all.itemName", + "defaultMessage": "Concept" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "associated": { + "messages": { + "name": { + "id": "vocab.concept.associated.name", + "defaultMessage": "Associated" + }, + "collectionName": { + "id": "vocab.concept.associated.collectionName", + "defaultMessage": "Associated Concepts" + }, + "itemName": { + "id": "vocab.concept.associated.itemName", + "defaultMessage": "Associated Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(concept)" + }, + "name": "associated", + "disableAltTerms": false + }, + "activity": { + "messages": { + "name": { + "id": "vocab.concept.activity.name", + "defaultMessage": "Activity" + }, + "collectionName": { + "id": "vocab.concept.activity.collectionName", + "defaultMessage": "Activity Concepts" + }, + "itemName": { + "id": "vocab.concept.activity.itemName", + "defaultMessage": "Activity Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(activity)" + }, + "name": "activity", + "disableAltTerms": false + }, + "material": { + "messages": { + "name": { + "id": "vocab.concept.material.name", + "defaultMessage": "Material" + }, + "collectionName": { + "id": "vocab.concept.material.collectionName", + "defaultMessage": "Material Concepts" + }, + "itemName": { + "id": "vocab.concept.material.itemName", + "defaultMessage": "Material Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(material_ca)" + }, + "name": "material", + "disableAltTerms": false + }, + "nomenclature": { + "messages": { + "name": { + "id": "vocab.concept.nomenclature.name", + "defaultMessage": "Nomenclature" + }, + "collectionName": { + "id": "vocab.concept.nomenclature.collectionName", + "defaultMessage": "Nomenclature Concepts" + }, + "itemName": { + "id": "vocab.concept.nomenclature.itemName", + "defaultMessage": "Nomenclature" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(nomenclature)" + }, + "name": "nomenclature", + "disableAltTerms": false + }, + "occasion": { + "messages": { + "name": { + "id": "vocab.concept.occasion.name", + "defaultMessage": "Occasion" + }, + "collectionName": { + "id": "vocab.concept.occasion.collectionName", + "defaultMessage": "Occasion Concepts" + }, + "itemName": { + "id": "vocab.concept.occasion.itemName", + "defaultMessage": "Occasion Concept" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(occasion)" + }, + "name": "occasion", + "disableAltTerms": false + }, + "archculture": { + "messages": { + "name": { + "id": "vocab.concept.archculture.name", + "defaultMessage": "Archaeological Culture" + }, + "collectionName": { + "id": "vocab.concept.archculture.collectionName", + "defaultMessage": "Archaeological Cultures" + }, + "itemName": { + "id": "vocab.concept.archculture.itemName", + "defaultMessage": "Archaeological Culture" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(archculture)" + }, + "name": "archculture", + "disableAltTerms": false + }, + "ethculture": { + "messages": { + "name": { + "id": "vocab.concept.ethculture.name", + "defaultMessage": "Ethnographic Culture" + }, + "collectionName": { + "id": "vocab.concept.ethculture.collectionName", + "defaultMessage": "Ethnographic Cultures" + }, + "itemName": { + "id": "vocab.concept.ethculture.itemName", + "defaultMessage": "Ethnographic Culture" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ethculture)" + }, + "name": "ethculture", + "disableAltTerms": false + }, + "ethfilecode": { + "messages": { + "name": { + "id": "vocab.concept.ethfilecode.name", + "defaultMessage": "Ethnographic File Code" + }, + "collectionName": { + "id": "vocab.concept.ethfilecode.collectionName", + "defaultMessage": "Ethnographic File Codes" + }, + "itemName": { + "id": "vocab.concept.ethfilecode.itemName", + "defaultMessage": "Ethnographic File Code" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ethfilecode)" + }, + "name": "ethfilecode", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptTermGroupList/conceptTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:concepts_common/conceptRecordTypes/conceptRecordType" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.concept.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "concepts_common:conceptTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.concept.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "concepts_common:conceptTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.concept.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.concept.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:concepts_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.concept.parent", + "defaultMessage": "Broader concept" + }, + "children": { + "id": "hierarchyInput.concept.children", + "defaultMessage": "Narrower concepts" + }, + "siblings": { + "id": "hierarchyInput.concept.siblings", + "defaultMessage": "Adjacent concepts" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:concepts_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:concepts_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/concept" + } + } + } + }, + "conceptTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.concepts_common.conceptTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "conceptTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.conceptTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.concepts_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.concepts_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.concepts_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.concepts_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "concepttermflag" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.concepts_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptHistoricalStatuses" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.concepts_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conceptTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.concepts_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.concepts_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.concepts_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.concepts_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.concepts_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.concepts_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.concepts_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.concepts_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.concepts_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.concepts_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.concepts_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.concepts_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conceptRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conceptRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.conceptRecordType.name", + "defaultMessage": "Concept type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "concepttype" + } + } + } + } + }, + "scopeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNote.fullName", + "defaultMessage": "Scope note" + }, + "name": { + "id": "field.concepts_common.scopeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "scopeNoteSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNoteSource.fullName", + "defaultMessage": "Scope note source" + }, + "name": { + "id": "field.concepts_common.scopeNoteSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "scopeNoteSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.scopeNoteSourceDetail.fullName", + "defaultMessage": "Scope note source detail" + }, + "name": { + "id": "field.concepts_common.scopeNoteSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "citationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "citationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.citationGroup.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "citationSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.citationSource.fullName", + "defaultMessage": "Citation source" + }, + "name": { + "id": "field.concepts_common.citationSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "citationSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.citationSourceDetail.fullName", + "defaultMessage": "Citation source detail" + }, + "name": { + "id": "field.concepts_common.citationSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "additionalSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "additionalSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.concepts_common.additionalSourceGroup.name", + "defaultMessage": "Additional source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "additionalSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSource.fullName", + "defaultMessage": "Additional source" + }, + "name": { + "id": "field.concepts_common.additionalSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceDetail.fullName", + "defaultMessage": "Additional source detail" + }, + "name": { + "id": "field.concepts_common.additionalSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceID.fullName", + "defaultMessage": "Additional source ID" + }, + "name": { + "id": "field.concepts_common.additionalSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionalSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.concepts_common.additionalSourceNote.fullName", + "defaultMessage": "Additional source note" + }, + "name": { + "id": "field.concepts_common.additionalSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.concept.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conceptTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conceptRecordType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNoteSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNoteSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "citationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "citationSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "citationSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "additionalSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.concept.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:concepts_common", + "conceptRecordTypes", + "conceptRecordType" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "concept" + }, + "conditioncheck": { + "messages": { + "record": { + "name": { + "id": "record.conditioncheck.name", + "defaultMessage": "Condition Check" + }, + "collectionName": { + "id": "record.conditioncheck.collectionName", + "defaultMessage": "Condition Checks" + } + }, + "panel": { + "conditionCheckAndTechAssessmentInfo": { + "id": "panel.conditioncheck.conditionCheckAndTechAssessmentInfo", + "defaultMessage": "Condition Check/Technical Assessment Information" + }, + "objectConditionAndTechAssessmentInfo": { + "id": "panel.conditioncheck.objectConditionAndTechAssessmentInfo", + "defaultMessage": "Object Condition Information" + }, + "objectRequirementInfo": { + "id": "panel.conditioncheck.objectRequirementInfo", + "defaultMessage": "Object Recommendation/Requirement Information" + } + } + }, + "serviceConfig": { + "serviceName": "Conditionchecks", + "servicePath": "conditionchecks", + "serviceType": "procedure", + "objectName": "Conditioncheck", + "documentName": "conditionchecks" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:conditionchecks_common/conditionCheckRefNumber" + }, + { + "op": "range", + "path": "ns2:conditionchecks_common/conditionCheckAssessmentDate" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/objectAuditCategory" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/conservationTreatmentPriority" + }, + { + "op": "range", + "path": "ns2:conditionchecks_common/nextConditionCheckDate" + }, + { + "op": "eq", + "path": "ns2:conditionchecks_common/conditionCheckGroupList/conditionCheckGroup/condition" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "conditionCheckRefNumber": { + "messages": { + "label": { + "id": "column.conditioncheck.default.conditionCheckRefNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "conditionchecks_common:conditionCheckRefNumber", + "width": 200 + }, + "condition": { + "messages": { + "label": { + "id": "column.conditioncheck.default.condition", + "defaultMessage": "Condition" + } + }, + "order": 20, + "sortBy": "conditionchecks_common:conditionCheckGroupList/0/condition", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.conditioncheck.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conditionchecks_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conditionchecks_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:conditionchecks_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/conditioncheck" + } + }, + "objectAuditCategory": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.objectAuditCategory.name", + "defaultMessage": "Object audit category" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "objectAuditCategories" + } + } + } + }, + "completenessGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "completenessGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.completenessGroup.name", + "defaultMessage": "Completeness" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "completeness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completeness.fullName", + "defaultMessage": "Completeness description" + }, + "name": { + "id": "field.conditionchecks_common.completeness.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "completenessLevels" + } + } + } + }, + "completenessDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completenessDate.fullName", + "defaultMessage": "Completeness date" + }, + "name": { + "id": "field.conditionchecks_common.completenessDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "completenessNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.completenessNote.fullName", + "defaultMessage": "Completeness note" + }, + "name": { + "id": "field.conditionchecks_common.completenessNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conditionCheckGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckGroup.name", + "defaultMessage": "Condition" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "condition": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.condition.fullName", + "defaultMessage": "Condition description" + }, + "name": { + "id": "field.conditionchecks_common.condition.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditions" + } + } + } + }, + "conditionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.conditionDate.fullName", + "defaultMessage": "Condition date" + }, + "name": { + "id": "field.conditionchecks_common.conditionDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.conditionNote.fullName", + "defaultMessage": "Condition note" + }, + "name": { + "id": "field.conditionchecks_common.conditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conservationTreatmentPriority": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conservationTreatmentPriority.name", + "defaultMessage": "Conservation treatment priority" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conservationTreatmentPriorities" + } + } + } + }, + "envConditionNoteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "envConditionNoteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.envConditionNoteGroup.name", + "defaultMessage": "Environmental condition" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "envConditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.envConditionNote.fullName", + "defaultMessage": "Environmental condition note" + }, + "name": { + "id": "field.conditionchecks_common.envConditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "envConditionNoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.envConditionNoteDate.fullName", + "defaultMessage": "Environmental condition date" + }, + "name": { + "id": "field.conditionchecks_common.envConditionNoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "nextConditionCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conditionchecks_common.nextConditionCheckDate.name", + "defaultMessage": "Next check/assessment date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "techAssessmentGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "techAssessmentGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.techAssessmentGroup.name", + "defaultMessage": "Technical assessment" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "techAssessment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.techAssessment.fullName", + "defaultMessage": "Technical assessment description" + }, + "name": { + "id": "field.conditionchecks_common.techAssessment.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "techAssessmentDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.techAssessmentDate.fullName", + "defaultMessage": "Technical assessment date" + }, + "name": { + "id": "field.conditionchecks_common.techAssessmentDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "hazardGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "hazardGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.hazardGroup.name", + "defaultMessage": "Hazard" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "hazard": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazard.fullName", + "defaultMessage": "Hazard description" + }, + "name": { + "id": "field.conditionchecks_common.hazard.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "hazards" + } + } + } + }, + "hazardDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazardDate.fullName", + "defaultMessage": "Hazard date" + }, + "name": { + "id": "field.conditionchecks_common.hazardDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "hazardNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.hazardNote.fullName", + "defaultMessage": "Hazard note" + }, + "name": { + "id": "field.conditionchecks_common.hazardNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "conditionCheckAssessmentDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckAssessmentDate.name", + "defaultMessage": "Check/assessment date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionCheckMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditionCheckMethods" + } + } + } + }, + "conditionCheckNote": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionCheckReason": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionCheckReason.name", + "defaultMessage": "Reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "conditionCheckReasons" + } + } + } + }, + "conditionCheckRefNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.conditionchecks_common.conditionCheckRefNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.conditionchecks_common.conditionCheckRefNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "conditioncheck" + } + } + } + }, + "conditionChecker": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.conditionChecker.name", + "defaultMessage": "Checker/assessor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "displayRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.displayRecommendations.name", + "defaultMessage": "Display recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "envRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.envRecommendations.name", + "defaultMessage": "Environmental recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "handlingRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.handlingRecommendations.name", + "defaultMessage": "Handling recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.packingRecommendations.name", + "defaultMessage": "Packing recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "securityRecommendations": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.securityRecommendations.name", + "defaultMessage": "Security recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "specialRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.specialRequirements.name", + "defaultMessage": "Special requirement" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "storageRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.storageRequirements.name", + "defaultMessage": "Storage recommendation" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "legalRequirements": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.legalRequirements.name", + "defaultMessage": "Legal requirement" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "salvagePriorityCodeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "salvagePriorityCodeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.salvagePriorityCodeGroup.name", + "defaultMessage": "Salvage priority" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "salvagePriorityCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.salvagePriorityCode.fullName", + "defaultMessage": "Salvage priority code" + }, + "name": { + "id": "field.conditionchecks_common.salvagePriorityCode.name", + "defaultMessage": "Code" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "salvagePriorityCodes" + } + } + } + }, + "salvagePriorityCodeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.salvagePriorityCodeDate.fullName", + "defaultMessage": "Salvage priority date" + }, + "name": { + "id": "field.conditionchecks_common.salvagePriorityCodeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "legalReqsHeldGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "legalReqsHeldGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conditionchecks_common.legalReqsHeldGroup.name", + "defaultMessage": "Legal/license requirement held" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "legalReqsHeld": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeld.fullName", + "defaultMessage": "Legal/license requirement held description" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeld.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "legalReqsHeldBeginDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldBeginDate.fullName", + "defaultMessage": "Legal/license requirement held begin date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldBeginDate.name", + "defaultMessage": "Begin date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "legalReqsHeldEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldEndDate.fullName", + "defaultMessage": "Legal/license requirement held end date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldEndDate.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "legalReqsHeldNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldNumber.fullName", + "defaultMessage": "Legal/license requirement held number" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "legalReqsHeldRenewDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conditionchecks_common.legalReqsHeldRenewDate.fullName", + "defaultMessage": "Legal/license requirement held renewal date" + }, + "name": { + "id": "field.conditionchecks_common.legalReqsHeldRenewDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.conditioncheck.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckAndTechAssessmentInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckRefNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckAssessmentDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionChecker" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectConditionAndTechAssessmentInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectAuditCategory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conservationTreatmentPriority" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nextConditionCheckDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "completenessGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "completeness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "hazardGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "hazard" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hazardNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "techAssessment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "techAssessmentDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "condition" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "envConditionNoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectRequirementInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "displayRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "handlingRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "securityRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "storageRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "envRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingRecommendations" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "specialRequirements" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeld" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldBeginDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldEndDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "legalReqsHeldRenewDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCode" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "salvagePriorityCodeDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "conditioncheck" + }, + "conservation": { + "messages": { + "record": { + "name": { + "id": "record.conservation.name", + "defaultMessage": "Conservation" + }, + "collectionName": { + "id": "record.conservation.collectionName", + "defaultMessage": "Conservation Treatments" + } + }, + "panel": { + "info": { + "id": "panel.conservation.info", + "defaultMessage": "Conservation Treatment Information" + }, + "objectAnalysisInfo": { + "id": "panel.conservation.objectAnalysisInfo", + "defaultMessage": "Object Analysis Information" + } + } + }, + "serviceConfig": { + "serviceName": "Conservation", + "servicePath": "conservation", + "serviceType": "procedure", + "objectName": "Conservation", + "documentName": "conservation" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:conservation_common/conservationNumber" + }, + { + "op": "eq", + "path": "ns2:conservation_common/conservationStatusGroupList/conservationStatusGroup/status" + }, + { + "op": "eq", + "path": "ns2:conservation_common/treatmentPurpose" + }, + { + "op": "eq", + "path": "ns2:conservation_common/conservators/conservator" + }, + { + "op": "eq", + "path": "ns2:conservation_common/approvedBy" + }, + { + "op": "range", + "path": "ns2:conservation_common/approvedDate" + }, + { + "op": "range", + "path": "ns2:conservation_common/treatmentStartDate" + }, + { + "op": "range", + "path": "ns2:conservation_common/treatmentEndDate" + }, + { + "op": "eq", + "path": "ns2:conservation_common/researcher" + }, + { + "op": "range", + "path": "ns2:conservation_common/proposedAnalysisDate" + }, + { + "op": "eq", + "path": "ns2:conservation_common/destAnalysisGroupList/destAnalysisGroup/sampleBy" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "conservationNumber": { + "messages": { + "label": { + "id": "column.conservation.default.conservationNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "conservation_common:conservationNumber", + "width": 250 + }, + "status": { + "messages": { + "label": { + "id": "column.conservation.default.status", + "defaultMessage": "Status" + } + }, + "order": 20, + "sortBy": "conservation_common:conservationStatusGroupList/0/status", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.conservation.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conservation_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:conservation_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:conservation_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/conservation" + } + }, + "conservationNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.conservation_common.conservationNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.conservation_common.conservationNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "conservation" + } + } + } + }, + "conservationStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conservationStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.conservationStatusGroup.name", + "defaultMessage": "Procedural status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "status": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.status.fullName", + "defaultMessage": "Procedural status" + }, + "name": { + "id": "field.conservation_common.status.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conservationstatus" + } + } + } + }, + "statusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.statusDate.fullName", + "defaultMessage": "Procedural status date" + }, + "name": { + "id": "field.conservation_common.statusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "treatmentPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.treatmentPurpose.name", + "defaultMessage": "Treatment purpose" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "treatmentpurpose" + } + } + } + }, + "conservators": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conservator": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.conservation_common.conservator.name", + "defaultMessage": "Conservator" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "otherPartyGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherPartyGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.otherPartyGroup.name", + "defaultMessage": "Other treatment party" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "otherParty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherParty.fullName", + "defaultMessage": "Other treatment party name" + }, + "name": { + "id": "field.conservation_common.otherParty.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "otherPartyRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherPartyRole.fullName", + "defaultMessage": "Other treatment party role" + }, + "name": { + "id": "field.conservation_common.otherPartyRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "otherpartyrole" + } + } + } + }, + "otherPartyNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.otherPartyNote.fullName", + "defaultMessage": "Other treatment party note" + }, + "name": { + "id": "field.conservation_common.otherPartyNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "examinationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "examinationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.examinationGroup.name", + "defaultMessage": "Examination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "examinationStaff": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationStaff.fullName", + "defaultMessage": "Examination staff" + }, + "name": { + "id": "field.conservation_common.examinationStaff.name", + "defaultMessage": "Staff" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "examinationPhase": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationPhase.fullName", + "defaultMessage": "Examination phase of treatment" + }, + "name": { + "id": "field.conservation_common.examinationPhase.name", + "defaultMessage": "Phase of treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "examinationphase" + } + } + } + }, + "examinationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.examinationDate.fullName", + "defaultMessage": "Examination date" + }, + "name": { + "id": "field.conservation_common.examinationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "examinationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.examinationNote.fullName", + "defaultMessage": "Examination note" + }, + "name": { + "id": "field.conservation_common.examinationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "fabricationNote": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.fabricationNote.name", + "defaultMessage": "Fabrication note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "proposedTreatment": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.proposedTreatment.name", + "defaultMessage": "Proposed treatment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "approvedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.approvedBy.name", + "defaultMessage": "Approved by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "approvedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.approvedDate.name", + "defaultMessage": "Approval date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentStartDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.treatmentStartDate.name", + "defaultMessage": "Treatment start date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentEndDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.conservation_common.treatmentEndDate.name", + "defaultMessage": "Treatment end date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "treatmentSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.treatmentSummary.name", + "defaultMessage": "Treatment summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "researcher": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.researcher.fullName", + "defaultMessage": "Analysis researcher" + }, + "name": { + "id": "field.conservation_common.researcher.name", + "defaultMessage": "Researcher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "proposedAnalysis": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.proposedAnalysis.name", + "defaultMessage": "Proposed analysis" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "proposedAnalysisDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.proposedAnalysisDate.fullName", + "defaultMessage": "Analysis proposal date" + }, + "name": { + "id": "field.conservation_common.proposedAnalysisDate.name", + "defaultMessage": "Proposal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "destAnalysisGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "destAnalysisGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.destAnalysisGroup.name", + "defaultMessage": "Destructive analysis" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "destAnalysisApprovedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.destAnalysisApprovedDate.fullName", + "defaultMessage": "Destructive analysis approval date" + }, + "name": { + "id": "field.conservation_common.destAnalysisApprovedDate.name", + "defaultMessage": "Approval date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "destAnalysisApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.destAnalysisApprovalNote.fullName", + "defaultMessage": "Destructive analysis approval note" + }, + "name": { + "id": "field.conservation_common.destAnalysisApprovalNote.name", + "defaultMessage": "Approval note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sampleBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleBy.fullName", + "defaultMessage": "Destructive analysis sample taken by" + }, + "name": { + "id": "field.conservation_common.sampleBy.name", + "defaultMessage": "Sample taken by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "sampleDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.conservation_common.sampleDate.fullName", + "defaultMessage": "Destructive analysis sample date" + }, + "name": { + "id": "field.conservation_common.sampleDate.name", + "defaultMessage": "Sample date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "sampleDescription": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleDescription.fullName", + "defaultMessage": "Destructive analysis sample description" + }, + "name": { + "id": "field.conservation_common.sampleDescription.name", + "defaultMessage": "Sample description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "sampleReturned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.conservation_common.sampleReturned.fullName", + "defaultMessage": "Destructive analysis sample returned" + }, + "name": { + "id": "field.conservation_common.sampleReturned.nadme", + "defaultMessage": "Sample returned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "sampleReturnedLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.conservation_common.sampleReturnedLocation.fullName", + "defaultMessage": "Destructive analysis sample returned location" + }, + "name": { + "id": "field.conservation_common.sampleReturnedLocation.name", + "defaultMessage": "Sample returned location" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "analysisMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.analysisMethod.name", + "defaultMessage": "Analytical methodology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "analysisResults": { + "[config]": { + "messages": { + "name": { + "id": "field.conservation_common.analysisResults.name", + "defaultMessage": "Analytical result" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.conservation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conservationNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conservationStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conservationStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "status" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "statusDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conservators", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conservator" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherPartyGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "otherParty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherPartyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "examinationGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "examinationStaff" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationPhase" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "examinationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fabricationNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "proposedTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentStartDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentEndDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "treatmentSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectAnalysisInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "proposedAnalysis" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "researcher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "proposedAnalysisDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisApprovedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "destAnalysisApprovalNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sampleReturned" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sampleReturnedLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "analysisMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "analysisResults" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "conservation" + }, + "contact": { + "messages": { + "record": { + "name": { + "id": "record.contact.name", + "defaultMessage": "Contact" + }, + "collectionName": { + "id": "record.contact.collectionName", + "defaultMessage": "Contacts" + } + }, + "panel": { + "info": { + "id": "panel.contact.info", + "defaultMessage": "Contact Information" + } + } + }, + "serviceConfig": { + "serviceName": "Contacts", + "servicePath": "contacts", + "serviceType": "utility", + "objectName": "Contact", + "documentName": "contacts" + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:contacts_common" + } + } + }, + "ns2:contacts_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/contact" + } + }, + "emailGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "emailGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.emailGroup.name", + "defaultMessage": "Email" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "email": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.email.name", + "defaultMessage": "Address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "emailType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.emailType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "emailTypes" + } + } + } + } + } + }, + "telephoneNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "telephoneNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumberGroup.name", + "defaultMessage": "Phone" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "telephoneNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "telephoneNumberType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.telephoneNumberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "telephoneNumberTypes" + } + } + } + } + } + }, + "faxNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "faxNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumberGroup.name", + "defaultMessage": "Fax" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "faxNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "faxNumberType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.faxNumberType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "faxNumberTypes" + } + } + } + } + } + }, + "webAddressGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "webAddressGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddressGroup.name", + "defaultMessage": "Web site" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "webAddress": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddress.name", + "defaultMessage": "URL" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "webAddressType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.webAddressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "webAddressTypes" + } + } + } + } + } + }, + "addressGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "addressGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "addressTypes" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressStateOrProvince.name", + "defaultMessage": "State/province" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-state" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "name": { + "id": "field.contacts_common.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "autoComplete": "cspace-country", + "source": "addressCountries" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.contact.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "emailGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "emailGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "email" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "emailType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "telephoneNumberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "faxNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "faxNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "faxNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "faxNumberType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "webAddressGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "webAddressGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "webAddress" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "webAddressType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "contact" + }, + "exhibition": { + "messages": { + "record": { + "name": { + "id": "record.exhibition.name", + "defaultMessage": "Exhibition" + }, + "collectionName": { + "id": "record.exhibition.collectionName", + "defaultMessage": "Exhibitions" + } + }, + "panel": { + "info": { + "id": "panel.exhibition.info", + "defaultMessage": "Exhibition Information" + }, + "planningInfo": { + "id": "panel.exhibition.planningInfo", + "defaultMessage": "Exhibition Planning Information" + }, + "exhibitedObjectInformation": { + "id": "panel.exhibition.exhibitedObjectInformation", + "defaultMessage": "Exhibited Object Information" + } + } + }, + "serviceConfig": { + "serviceName": "Exhibition", + "servicePath": "exhibitions", + "serviceType": "procedure", + "objectName": "Exhibition", + "documentName": "exhibitions" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:exhibitions_common/exhibitionNumber" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/type" + }, + { + "op": "cont", + "path": "ns2:exhibitions_common/title" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/sponsors/sponsor" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/organizers/organizer" + }, + { + "op": "eq", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venue" + }, + { + "op": "range", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venueOpeningDate" + }, + { + "op": "range", + "path": "ns2:exhibitions_common/venueGroupList/venueGroup/venueClosingDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "exhibitionNumber": { + "messages": { + "label": { + "id": "column.exhibition.default.exhibitionNumber", + "defaultMessage": "Exhibition number" + } + }, + "order": 10, + "sortBy": "exhibitions_common:exhibitionNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.exhibition.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "exhibitions_common:title", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.exhibition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:exhibitions_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:exhibitions_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:exhibitions_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/exhibition" + } + }, + "exhibitionNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.exhibitions_common.exhibitionNumber.inUse", + "defaultMessage": "The exhibition number {value} is in use by another record." + }, + "name": { + "id": "field.exhibitions_common.exhibitionNumber.name", + "defaultMessage": "Exhibition number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "exhibition" + } + } + } + }, + "type": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.type.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitiontype" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sponsors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sponsor": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.sponsor.name", + "defaultMessage": "Sponsor" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "organizers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizer": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.organizer.name", + "defaultMessage": "Organizer" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + } + }, + "venueGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "venueGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.venueGroup.name", + "defaultMessage": "Venue" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "venue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venue.fullName", + "defaultMessage": "Venue name" + }, + "name": { + "id": "field.exhibitions_common.venue.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,organization/ulan,location/local,location/offsite,place/local,place/shared,place/tgn" + } + } + } + }, + "venueOpeningDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueOpeningDate.fullName", + "defaultMessage": "Venue opening date" + }, + "name": { + "id": "field.exhibitions_common.venueOpeningDate.name", + "defaultMessage": "Opening date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "venueClosingDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueClosingDate.fullName", + "defaultMessage": "Venue closing date" + }, + "name": { + "id": "field.exhibitions_common.venueClosingDate.name", + "defaultMessage": "Closing date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "venueAttendance": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueAttendance.fullName", + "defaultMessage": "Venue attendance" + }, + "name": { + "id": "field.exhibitions_common.venueAttendance.name", + "defaultMessage": "Attendance" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "venueUrl": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.venueUrl.fullName", + "defaultMessage": "Venue web address" + }, + "name": { + "id": "field.exhibitions_common.venueUrl.name", + "defaultMessage": "Web address" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "workingGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "workingGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.workingGroup.name", + "defaultMessage": "Working group" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "workingGroupTitle": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.workingGroupTitle.fullName", + "defaultMessage": "Working group title" + }, + "name": { + "id": "field.exhibitions_common.workingGroupTitle.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "workingGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.workingGroupNote.fullName", + "defaultMessage": "Working group note" + }, + "name": { + "id": "field.exhibitions_common.workingGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionPersonGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionPersonGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPersonGroup.fullName", + "defaultMessage": "Working group member" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPersonGroup.name", + "defaultMessage": "Member" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionPerson": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPerson.fullName", + "defaultMessage": "Working group member name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPerson.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "exhibitionPersonRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionPersonRole.fullName", + "defaultMessage": "Working group member role" + }, + "name": { + "id": "field.exhibitions_common.exhibitionPersonRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionpersonrole" + } + } + } + } + } + } + } + }, + "planningNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.planningNote.name", + "defaultMessage": "Planning note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "curatorialNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.curatorialNote.name", + "defaultMessage": "Curatorial note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "generalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.generalNote.name", + "defaultMessage": "General note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "boilerplateText": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.boilerplateText.name", + "defaultMessage": "Boilerplate text" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "galleryRotationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "galleryRotationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.galleryRotationGroup.name", + "defaultMessage": "Gallery rotation" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "galleryRotationName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationName.fullName", + "defaultMessage": "Gallery rotation name" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "galleryRotationStartDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.fullName", + "defaultMessage": "Gallery rotation start date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationStartDateGroup.name", + "defaultMessage": "Start date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "galleryRotationEndDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.fullName", + "defaultMessage": "Gallery rotation end date" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "galleryRotationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.galleryRotationNote.fullName", + "defaultMessage": "Gallery rotation note" + }, + "name": { + "id": "field.exhibitions_common.galleryRotationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "exhibitionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionReferenceGroup.name", + "defaultMessage": "Bibliographic reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReference.fullName", + "defaultMessage": "Bibliographic reference" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReference.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "exhibitionReferenceType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReferenceType.fullName", + "defaultMessage": "Bibliographic reference type" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReferenceType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionreferencetype" + } + } + } + }, + "exhibitionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionReferenceNote.fullName", + "defaultMessage": "Bibliographic reference note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionSectionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionSectionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionSectionGroup.name", + "defaultMessage": "Exhibition section" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionSectionName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionName.fullName", + "defaultMessage": "Exhibition section name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionLocation.fullName", + "defaultMessage": "Exhibition section location" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionObjects": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionObjects.fullName", + "defaultMessage": "Exhibition section objects" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionObjects.name", + "defaultMessage": "Objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionSectionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionSectionNote.fullName", + "defaultMessage": "Exhibition section note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionSectionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionStatusGroup.name", + "defaultMessage": "Exhibition status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatus.fullName", + "defaultMessage": "Exhibition status" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "exhibitionstatus" + } + } + } + }, + "exhibitionStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatusDate.fullName", + "defaultMessage": "Exhibition status date" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "exhibitionStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionStatusNote.fullName", + "defaultMessage": "Exhibition status note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "exhibitionObjectGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exhibitionObjectGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.exhibitions_common.exhibitionObjectGroup.name", + "defaultMessage": "Object checklist" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "exhibitionObjectNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectNumber.fullName", + "defaultMessage": "Object number" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectName.fullName", + "defaultMessage": "Object name" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectConsCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectConsCheckDate.fullName", + "defaultMessage": "Object cons. check" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectConsCheckDate.name", + "defaultMessage": "Cons. check" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "exhibitionObjectConsTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectConsTreatment.fullName", + "defaultMessage": "Object cons. treatment" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectConsTreatment.name", + "defaultMessage": "Cons. treatment" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exhibitionConsTreatmentStatuses" + } + } + } + }, + "exhibitionObjectMount": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectMount.fullName", + "defaultMessage": "Object mount" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectMount.name", + "defaultMessage": "Mount" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exhibitionMountStatuses" + } + } + } + }, + "exhibitionObjectSection": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectSection.fullName", + "defaultMessage": "Object section" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectSection.name", + "defaultMessage": "Section" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectCase": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectCase.fullName", + "defaultMessage": "Object case" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectCase.name", + "defaultMessage": "Case" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectSeqNum": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectSeqNum.fullName", + "defaultMessage": "Object seq. #" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectSeqNum.name", + "defaultMessage": "Seq. #" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectRotation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectRotation.fullName", + "defaultMessage": "Object rotation" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectRotation.name", + "defaultMessage": "Rotation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "exhibitionObjectNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.exhibitions_common.exhibitionObjectNote.fullName", + "defaultMessage": "Object note" + }, + "name": { + "id": "field.exhibitions_common.exhibitionObjectNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.exhibition.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sponsors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sponsor" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "organizers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizer" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "venueGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "venueGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "venue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueOpeningDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueClosingDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueAttendance" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "venueUrl" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workingGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupTitle" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPerson" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionPersonRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "planningNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "curatorialNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "generalNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "boilerplateText" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationStartDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationEndDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "galleryRotationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "planningInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionObjects" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionSectionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitedObjectInformation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectConsCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectConsTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectMount" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectSection" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectCase" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectSeqNum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectRotation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exhibitionObjectNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "exhibition" + }, + "export": { + "messages": { + "record": { + "name": { + "id": "record.export.name", + "defaultMessage": "Export" + }, + "collectionName": { + "id": "record.export.collectionName", + "defaultMessage": "Exports" + } + } + }, + "serviceConfig": { + "servicePath": "exports", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "export" + }, + "group": { + "messages": { + "record": { + "name": { + "id": "record.group.name", + "defaultMessage": "Group" + }, + "collectionName": { + "id": "record.group.collectionName", + "defaultMessage": "Groups" + } + }, + "panel": { + "info": { + "id": "panel.group.info", + "defaultMessage": "Group Information" + } + } + }, + "serviceConfig": { + "serviceName": "Groups", + "servicePath": "groups", + "serviceType": "procedure", + "objectName": "Group", + "documentName": "groups" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:groups_common/title" + }, + { + "op": "eq", + "path": "ns2:groups_common/responsibleDepartment" + }, + { + "op": "eq", + "path": "ns2:groups_common/owner" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "title": { + "messages": { + "label": { + "id": "column.group.default.title", + "defaultMessage": "Title" + } + }, + "order": 10, + "sortBy": "groups_common:title", + "width": 250 + }, + "owner": { + "messages": { + "label": { + "id": "column.group.default.owner", + "defaultMessage": "Owner" + } + }, + "order": 20, + "sortBy": "groups_common:owner", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.group.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:groups_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:groups_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:groups_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/group" + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.title.name", + "defaultMessage": "Title" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "responsibleDepartment": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.responsibleDepartment.name", + "defaultMessage": "Responsible department" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "departments" + } + } + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.owner.name", + "defaultMessage": "Group owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "groupEarliestSingleDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.groups_common.groupEarliestSingleDate.name", + "defaultMessage": "Earliest/single date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "groupLatestDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.groups_common.groupLatestDate.name", + "defaultMessage": "Latest date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "scopeNote": { + "[config]": { + "messages": { + "name": { + "id": "field.groups_common.scopeNote.name", + "defaultMessage": "Scope note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.group.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "responsibleDepartment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupEarliestSingleDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupLatestDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "scopeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "group" + }, + "idgenerator": { + "messages": { + "record": { + "name": { + "id": "record.idgenerator.name", + "defaultMessage": "ID Generator" + }, + "collectionName": { + "id": "record.idgenerator.collectionName", + "defaultMessage": "ID Generators" + } + } + }, + "serviceConfig": { + "servicePath": "idgenerators", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "idgenerator" + }, + "insurance": { + "messages": { + "record": { + "name": { + "id": "record.insurance.name", + "defaultMessage": "Insurance/Indemnity" + }, + "collectionName": { + "id": "record.insurance.collectionName", + "defaultMessage": "Insurance/Indemnities" + } + }, + "inputTable": { + "insurancePurchasePrice": { + "id": "inputTable.insurance.insurancePurchasePrice", + "defaultMessage": "Insurance/indemnity price" + }, + "minimumLiabilityPrice": { + "id": "inputTable.insurance.minimumLiabilityPrice", + "defaultMessage": "Minimum liability price" + }, + "authorization": { + "id": "inputTable.insurance.authorization", + "defaultMessage": "Authorization" + } + }, + "panel": { + "info": { + "id": "panel.insurance.info", + "defaultMessage": "Insurance and Indemnity Information" + } + } + }, + "serviceConfig": { + "serviceName": "Insurance", + "servicePath": "insurances", + "serviceType": "procedure", + "objectName": "Insurance", + "documentName": "insurances" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:insurances_common/insuranceIndemnityReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityType" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insurerIndemnifier" + }, + { + "op": "cont", + "path": "ns2:insurances_common/insuranceIndemnityPolicyNumber" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityAuthorizer" + }, + { + "op": "eq", + "path": "ns2:insurances_common/insuranceIndemnityStatusGroupList/insuranceIndemnityStatusGroup/insuranceIndemnityStatus" + }, + { + "op": "range", + "path": "ns2:insurances_common/insuranceIndemnityStatusGroupList/insuranceIndemnityStatusGroup/insuranceIndemnityStatusDate" + }, + { + "op": "eq", + "path": "ns2:insurances_common/quoteProviderGroupList/quoteProviderGroup/insuranceIndemnityQuoteProvider" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "insuranceIndemnityReferenceNumber": { + "messages": { + "label": { + "id": "column.insurance.default.insuranceIndemnityReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "insurances_common:insuranceIndemnityReferenceNumber", + "width": 200 + }, + "insurerIndemnifier": { + "messages": { + "label": { + "id": "column.insurance.default.insurerIndemnifier", + "defaultMessage": "Insurer/indemnifier" + } + }, + "order": 20, + "sortBy": "insurances_common:insurerIndemnifier", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.insurance.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:insurances_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:insurances_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:insurances_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/insurance" + } + }, + "insuranceIndemnityReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.insurances_common.insuranceIndemnityReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "insurance,indemnity" + } + } + } + }, + "insuranceIndemnityType": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "insurancetype" + } + } + } + }, + "insurerIndemnifier": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insurerIndemnifier.name", + "defaultMessage": "Insurer/indemnifier" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "insuranceIndemnityPolicyNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityPolicyNumber.name", + "defaultMessage": "Policy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityCurrency.fullName", + "defaultMessage": "Insurance/indemnity price currency" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "insuranceIndemnityValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityValue.fullName", + "defaultMessage": "Insurance/indemnity price value" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minimumLiabilityCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.minimumLiabilityCurrency.fullName", + "defaultMessage": "Minimum liability price currency" + }, + "name": { + "id": "field.insurances_common.minimumLiabilityCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "minimumLiabilityValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.minimumLiabilityValue.fullName", + "defaultMessage": "Minimum liability price value" + }, + "name": { + "id": "field.insurances_common.minimumLiabilityValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan" + } + } + } + }, + "insuranceIndemnityAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityAuthorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityAuthorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "insuranceIndemnityStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "insuranceIndemnityStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusGroup.name", + "defaultMessage": "Status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "insuranceIndemnityStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatus.fullName", + "defaultMessage": "Status type" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatus.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "insurancestatus" + } + } + } + }, + "insuranceIndemnityStatusDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatusDate.fullName", + "defaultMessage": "Status date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusDate.name", + "defaultMessage": "Date" + } + }, + "dataType": "DATA_TYPE_DATE", + "view": { + "type": "DateInput" + } + } + }, + "insuranceIndemnityStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityStatusNote.fullName", + "defaultMessage": "Status note" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "insuranceIndemnityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.insuranceIndemnityNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "quoteProviderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "quoteProviderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.insurances_common.quoteProviderGroup.name", + "defaultMessage": "Quote" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "insuranceIndemnityQuoteProvider": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteProvider.fullName", + "defaultMessage": "Quote provider" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteProvider.name", + "defaultMessage": "Provider" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "insuranceIndemnityQuoteCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteCurrency.fullName", + "defaultMessage": "Quote currency" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "insuranceIndemnityQuoteValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteValue.fullName", + "defaultMessage": "Quote value" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceIndemnityQuoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.insurances_common.insuranceIndemnityQuoteDate.fullName", + "defaultMessage": "Quote date" + }, + "name": { + "id": "field.insurances_common.insuranceIndemnityQuoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.insurance.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurerIndemnifier" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityPolicyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurancePurchasePrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityPrice", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "minimumLiabilityValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorization", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "quoteProviderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "quoteProviderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteProvider" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceIndemnityQuoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "insurance" + }, + "intake": { + "messages": { + "record": { + "name": { + "id": "record.intake.name", + "defaultMessage": "Intake" + }, + "collectionName": { + "id": "record.intake.collectionName", + "defaultMessage": "Intakes" + } + }, + "panel": { + "objectEntryInfo": { + "id": "panel.intake.objectEntryInfo", + "defaultMessage": "Object Entry Information" + }, + "objectCollectionInfo": { + "id": "panel.intake.objectCollectionInfo", + "defaultMessage": "Object Collection Information" + }, + "valuation": { + "id": "panel.intake.valuation", + "defaultMessage": "Valuation Information" + }, + "insurance": { + "id": "panel.intake.insurance", + "defaultMessage": "Insurance Information" + }, + "location": { + "id": "panel.intake.location", + "defaultMessage": "Location Information" + }, + "condition": { + "id": "panel.intake.condition", + "defaultMessage": "Condition Check Information" + } + } + }, + "serviceConfig": { + "serviceName": "Intake", + "servicePath": "intakes", + "serviceType": "procedure", + "objectName": "Intake", + "documentName": "intakes" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:intakes_common/entryNumber" + }, + { + "op": "range", + "path": "ns2:intakes_common/entryDate" + }, + { + "op": "eq", + "path": "ns2:intakes_common/entryReason" + }, + { + "op": "eq", + "path": "ns2:intakes_common/entryMethods/entryMethod" + }, + { + "op": "range", + "path": "ns2:intakes_common/returnDate" + }, + { + "op": "eq", + "path": "ns2:intakes_common/currentOwners/currentOwner" + }, + { + "op": "eq", + "path": "ns2:intakes_common/depositorGroupList/depositorGroup/depositor" + }, + { + "op": "cont", + "path": "ns2:intakes_common/fieldCollectionEventNames/fieldCollectionEventName" + }, + { + "op": "eq", + "path": "ns2:intakes_common/currentLocationGroupList/currentLocationGroup/currentLocation" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "entryNumber": { + "messages": { + "label": { + "id": "column.intake.default.entryNumber", + "defaultMessage": "Entry number" + } + }, + "order": 10, + "sortBy": "intakes_common:entryNumber", + "width": 200 + }, + "currentOwner": { + "messages": { + "label": { + "id": "column.intake.default.currentOwner", + "defaultMessage": "Current owner" + } + }, + "order": 20, + "sortBy": "intakes_common:currentOwners/0", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.intake.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:intakes_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:intakes_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:intakes_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/intake" + } + }, + "entryNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.intakes_common.entryNumber.inUse", + "defaultMessage": "The entry number {value} is in use by another record." + }, + "name": { + "id": "field.intakes_common.entryNumber.name", + "defaultMessage": "Entry number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "intake,study,evaluation" + } + } + } + }, + "entryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.entryDate.name", + "defaultMessage": "Entry date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "entryReason": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryReason.name", + "defaultMessage": "Entry reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "entryReasons" + } + } + } + }, + "entryMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "entryMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryMethod.name", + "defaultMessage": "Entry method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "entrymethod" + } + } + } + } + }, + "returnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.returnDate.name", + "defaultMessage": "Return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "currentOwners": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "currentOwner": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.currentOwner.name", + "defaultMessage": "Current owner" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "depositorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "depositorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.depositorGroup.name", + "defaultMessage": "Depositor" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "depositor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.depositor.fullName", + "defaultMessage": "Depositor name" + }, + "name": { + "id": "field.intakes_common.depositor.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "depositorsRequirements": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.depositorsRequirements.fullName", + "defaultMessage": "Depositor requirements" + }, + "name": { + "id": "field.intakes_common.depositorsRequirements.name", + "defaultMessage": "Requirements" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "approvalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.approvalGroup.name", + "defaultMessage": "Approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "approvalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalGroup.approvalGroup.fullName", + "defaultMessage": "Approval group" + }, + "name": { + "id": "field.intakes_common.approvalGroup.approvalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "approvalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalIndividual.fullName", + "defaultMessage": "Approval individual" + }, + "name": { + "id": "field.intakes_common.approvalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "approvalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalStatus.fullName", + "defaultMessage": "Approval status" + }, + "name": { + "id": "field.intakes_common.approvalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "approvalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.approvalDate.fullName", + "defaultMessage": "Approval status date" + }, + "name": { + "id": "field.intakes_common.approvalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "approvalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.approvalNote.fullName", + "defaultMessage": "Approval note" + }, + "name": { + "id": "field.intakes_common.approvalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "entryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.entryNote.name", + "defaultMessage": "Entry note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.packingNote.name", + "defaultMessage": "Packing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionDate.name", + "defaultMessage": "Field collection date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "fieldCollectionMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionMethod.name", + "defaultMessage": "Field collection method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "collectionmethod" + } + } + } + } + }, + "fieldCollectionNote": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionNote.name", + "defaultMessage": "Field collection note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "fieldCollectionNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionNumber.name", + "defaultMessage": "Field collection number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionPlace.name", + "defaultMessage": "Field collection place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "fieldCollectionSources": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionSource": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionSource.name", + "defaultMessage": "Field collection source" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,concept/ethculture" + } + } + } + } + }, + "fieldCollectors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollector": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollector.name", + "defaultMessage": "Field collector" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "fieldCollectionEventNames": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "fieldCollectionEventName": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.fieldCollectionEventName.name", + "defaultMessage": "Field collection event name" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "valuer": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.valuer.name", + "defaultMessage": "Valuer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "valuationReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.valuationReferenceNumber.fullName", + "defaultMessage": "Valuation reference number" + }, + "name": { + "id": "field.intakes_common.valuationReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insurers": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "insurer": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.insurer.name", + "defaultMessage": "Insurer" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "insurancePolicyNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insurancePolicyNumber.fullName", + "defaultMessage": "Insurance policy number" + }, + "name": { + "id": "field.intakes_common.insurancePolicyNumber.name", + "defaultMessage": "Policy number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceRenewalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceRenewalDate.fullName", + "defaultMessage": "Insurance renewal date" + }, + "name": { + "id": "field.intakes_common.insuranceRenewalDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "insuranceReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceReferenceNumber.fullName", + "defaultMessage": "Insurance reference number" + }, + "name": { + "id": "field.intakes_common.insuranceReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "insuranceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.insuranceNote.fullName", + "defaultMessage": "Insurance note" + }, + "name": { + "id": "field.intakes_common.insuranceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "currentLocationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "currentLocationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.currentLocationGroup.name", + "defaultMessage": "Current location" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "currentLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocation.fullName", + "defaultMessage": "Current location" + }, + "name": { + "id": "field.intakes_common.currentLocation.name", + "defaultMessage": "Location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared,place/local" + } + } + } + }, + "currentLocationFitness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocationFitness.fullName", + "defaultMessage": "Current location fitness" + }, + "name": { + "id": "field.intakes_common.currentLocationFitness.name", + "defaultMessage": "Fitness" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditionfitness" + } + } + } + }, + "currentLocationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.currentLocationNote.fullName", + "defaultMessage": "Current location note" + }, + "name": { + "id": "field.intakes_common.currentLocationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "locationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.intakes_common.locationDate.name", + "defaultMessage": "Location date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "normalLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.intakes_common.normalLocation.name", + "defaultMessage": "Normal location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared,place/local" + } + } + } + }, + "conditionCheckMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckMethod.fullName", + "defaultMessage": "Condition check method" + }, + "name": { + "id": "field.intakes_common.conditionCheckMethod.name", + "defaultMessage": "Method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditioncheckmethod" + } + } + } + } + }, + "conditionCheckReasons": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckReason": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckReason.fullName", + "defaultMessage": "Condition check reason" + }, + "name": { + "id": "field.intakes_common.conditionCheckReason.name", + "defaultMessage": "Reason" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "conditioncheckreason" + } + } + } + } + }, + "conditionCheckersOrAssessors": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionCheckerOrAssessor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckerOrAssessor.fullName", + "defaultMessage": "Condition check assessor" + }, + "name": { + "id": "field.intakes_common.conditionCheckerOrAssessor.name", + "defaultMessage": "Assessor" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + } + }, + "conditionCheckNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckNote.fullName", + "defaultMessage": "Condition check note" + }, + "name": { + "id": "field.intakes_common.conditionCheckNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionCheckDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckDate.fullName", + "defaultMessage": "Condition check date" + }, + "name": { + "id": "field.intakes_common.conditionCheckDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "conditionCheckReferenceNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.intakes_common.conditionCheckReferenceNumber.fullName", + "defaultMessage": "Condition check reference number" + }, + "name": { + "id": "field.intakes_common.conditionCheckReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.intake.default.name", + "defaultMessage": "Standard Template" + } + }, + "sortOrder": 0, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "returnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentOwners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentOwner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "depositorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depositor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorsRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectCollectionInfo", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventName" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valuation", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valuer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valuationReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurance", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insurers", + "children": { + "key": null, + "ref": null, + "props": { + "name": "insurer" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insurancePolicyNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceRenewalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "insuranceReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "condition", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckersOrAssessors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckerOrAssessor" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "doorstep": { + "messages": { + "name": { + "id": "form.intake.doorstep.name", + "defaultMessage": "Doorstep Donation Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "condition", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReasons", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReason" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckersOrAssessors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckerOrAssessor" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckReferenceNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionCheckNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + "disabled": true + }, + "archeology": { + "messages": { + "name": { + "id": "form.intake.archeology.name", + "defaultMessage": "Archaeology Template" + } + }, + "sortOrder": 1, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "returnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentOwners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentOwner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "depositorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depositor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorsRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectCollectionInfo", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSources", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionSource" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectors", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollector" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventNames", + "children": { + "key": null, + "ref": null, + "props": { + "name": "fieldCollectionEventName" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "history": { + "messages": { + "name": { + "id": "form.intake.history.name", + "defaultMessage": "History Template" + } + }, + "sortOrder": 2, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectEntryInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "entryNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryReason" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "entryMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "returnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentOwners", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentOwner" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "depositorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "depositor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "depositorsRequirements" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "approvalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "approvalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "entryNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "currentLocationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "intake" + }, + "loanin": { + "messages": { + "record": { + "name": { + "id": "record.loanin.name", + "defaultMessage": "Loan In" + }, + "collectionName": { + "id": "record.loanin.collectionName", + "defaultMessage": "Loans In" + } + }, + "panel": { + "info": { + "id": "panel.loanin.info", + "defaultMessage": "Loan In Information" + } + }, + "inputTable": { + "borrower": { + "id": "inputTable.loanin.borrower", + "defaultMessage": "Borrower" + } + } + }, + "serviceConfig": { + "serviceName": "Loanin", + "servicePath": "loansin", + "serviceType": "procedure", + "objectName": "Loanin", + "documentName": "loansin" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:loansin_common/loanInNumber" + }, + { + "op": "eq", + "path": "ns2:loansin_common/loanPurpose" + }, + { + "op": "eq", + "path": "ns2:loansin_common/loanStatusGroupList/loanStatusGroup/loanStatus" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lender" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lendersContact" + }, + { + "op": "eq", + "path": "ns2:loansin_common/lenderGroupList/lenderGroup/lendersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansin_common/borrowersContact" + }, + { + "op": "eq", + "path": "ns2:loansin_common/borrowersAuthorizer" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanInDate" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanReturnDate" + }, + { + "op": "range", + "path": "ns2:loansin_common/loanRenewalApplicationDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "loanInNumber": { + "messages": { + "label": { + "id": "column.loanin.default.loanInNumber", + "defaultMessage": "Loan in number" + } + }, + "order": 10, + "sortBy": "loansin_common:loanInNumber", + "width": 250 + }, + "lender": { + "messages": { + "label": { + "id": "column.loanin.default.lender", + "defaultMessage": "Lender" + } + }, + "order": 20, + "sortBy": "loansin_common:lenderGroupList/0/lender", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.loanin.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansin_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansin_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:loansin_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanin" + } + }, + "loanInNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.loansin_common.loanInNumber.inUse", + "defaultMessage": "The loan in number {value} is in use by another record." + }, + "name": { + "id": "field.loansin_common.loanInNumber.name", + "defaultMessage": "Loan in number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "loanin" + } + } + } + }, + "loanPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanPurpose.name", + "defaultMessage": "Loan purpose" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "loanPurposes" + } + } + } + }, + "loanStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "loanStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanStatusGroup.name", + "defaultMessage": "Loan status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "loanGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanGroup.fullName", + "defaultMessage": "Loan status group" + }, + "name": { + "id": "field.loansin_common.loanGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "loanIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanIndividual.fullName", + "defaultMessage": "Loan status individual" + }, + "name": { + "id": "field.loansin_common.loanIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "loanStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatus.fullName", + "defaultMessage": "Loan status" + }, + "name": { + "id": "field.loansin_common.loanStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "loanoutstatus" + } + } + } + }, + "loanStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatusDate.fullName", + "defaultMessage": "Loan status date" + }, + "name": { + "id": "field.loansin_common.loanStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.loanStatusNote.fullName", + "defaultMessage": "Loan status note" + }, + "name": { + "id": "field.loansin_common.loanStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "lenderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "lenderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.lenderGroup.name", + "defaultMessage": "Lender" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "lender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lender.fullName", + "defaultMessage": "Lender name" + }, + "name": { + "id": "field.loansin_common.lender.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "lendersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lendersContact.fullName", + "defaultMessage": "Lender contact" + }, + "name": { + "id": "field.loansin_common.lendersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.lendersAuthorizer.fullName", + "defaultMessage": "Lender authorizer" + }, + "name": { + "id": "field.loansin_common.lendersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.lendersAuthorizationDate.fullName", + "defaultMessage": "Lender authorization date" + }, + "name": { + "id": "field.loansin_common.lendersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + }, + "borrowersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersContact.fullName", + "defaultMessage": "Borrower contact" + }, + "name": { + "id": "field.loansin_common.borrowersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersAuthorizer.fullName", + "defaultMessage": "Borrower authorizer" + }, + "name": { + "id": "field.loansin_common.borrowersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansin_common.borrowersAuthorizationDate.fullName", + "defaultMessage": "Borrower authorization date" + }, + "name": { + "id": "field.loansin_common.borrowersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanInConditions": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanInConditions.name", + "defaultMessage": "Conditions of loan" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanInNote": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.loanInNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanInDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanInDate.name", + "defaultMessage": "Loan in date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanReturnDate.name", + "defaultMessage": "Loan return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanRenewalApplicationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansin_common.loanRenewalApplicationDate.name", + "defaultMessage": "Loan renewal application date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.loansin_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.loanin.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lenderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "lenderGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "lender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrower", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "borrowersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInConditions" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanInNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanInDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanReturnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanRenewalApplicationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "loanin" + }, + "loanout": { + "messages": { + "record": { + "name": { + "id": "record.loanout.name", + "defaultMessage": "Loan Out" + }, + "collectionName": { + "id": "record.loanout.collectionName", + "defaultMessage": "Loans Out" + } + }, + "panel": { + "info": { + "id": "panel.loanout.info", + "defaultMessage": "Loan Out Information" + } + }, + "inputTable": { + "borrower": { + "id": "inputTable.loanout.borrower", + "defaultMessage": "Borrower" + }, + "lender": { + "id": "inputTable.loanout.lender", + "defaultMessage": "Lender" + } + } + }, + "serviceConfig": { + "serviceName": "Loanout", + "servicePath": "loansout", + "serviceType": "procedure", + "objectName": "Loanout", + "documentName": "loansout" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:loansout_common/loanOutNumber" + }, + { + "op": "eq", + "path": "ns2:loansout_common/loanPurpose" + }, + { + "op": "eq", + "path": "ns2:loansout_common/lendersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansout_common/lendersContact" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrower" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrowersContact" + }, + { + "op": "eq", + "path": "ns2:loansout_common/borrowersAuthorizer" + }, + { + "op": "eq", + "path": "ns2:loansout_common/loanStatusGroupList/loanStatusGroup/loanStatus" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanOutDate" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanReturnDate" + }, + { + "op": "range", + "path": "ns2:loansout_common/loanRenewalApplicationDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "loanOutNumber": { + "messages": { + "label": { + "id": "column.loanout.default.loanOutNumber", + "defaultMessage": "Loan out number" + } + }, + "order": 10, + "sortBy": "loansout_common:loanOutNumber", + "width": 250 + }, + "borrower": { + "messages": { + "label": { + "id": "column.loanout.default.borrower", + "defaultMessage": "Borrower" + } + }, + "order": 20, + "sortBy": "loansout_common:borrower", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.loanout.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansout_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:loansout_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:loansout_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/loanout" + } + }, + "loanOutNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.loansout_common.loanOutNumber.inUse", + "defaultMessage": "The loan out number {value} is in use by another record." + }, + "name": { + "id": "field.loansout_common.loanOutNumber.name", + "defaultMessage": "Loan out number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "loanout" + } + } + } + }, + "loanPurpose": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanPurpose.name", + "defaultMessage": "Loan purpose" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "loanPurposes" + } + } + } + }, + "lendersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.lendersAuthorizer.fullName", + "defaultMessage": "Lender authorizer" + }, + "name": { + "id": "field.loansout_common.lendersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.lendersContact.fullName", + "defaultMessage": "Lender contact" + }, + "name": { + "id": "field.loansout_common.lendersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "lendersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.lendersAuthorizationDate.fullName", + "defaultMessage": "Lender authorization date" + }, + "name": { + "id": "field.loansout_common.lendersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "borrower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrower.fullName", + "defaultMessage": "Borrower name" + }, + "name": { + "id": "field.loansout_common.borrower.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "borrowersContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersContact.fullName", + "defaultMessage": "Borrower contact" + }, + "name": { + "id": "field.loansout_common.borrowersContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersAuthorizer.fullName", + "defaultMessage": "Borrower authorizer" + }, + "name": { + "id": "field.loansout_common.borrowersAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "borrowersAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.borrowersAuthorizationDate.fullName", + "defaultMessage": "Borrower authorization date" + }, + "name": { + "id": "field.loansout_common.borrowersAuthorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "specialConditionsOfLoan": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.specialConditionsOfLoan.name", + "defaultMessage": "Conditions of loan" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanOutNote": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanOutNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "loanStatusGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "loanStatusGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.loanStatusGroup.name", + "defaultMessage": "Loan status" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "loanGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanGroup.fullName", + "defaultMessage": "Loan status group" + }, + "name": { + "id": "field.loansout_common.loanGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "loanIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanIndividual.fullName", + "defaultMessage": "Loan status individual" + }, + "name": { + "id": "field.loansout_common.loanIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "loanStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatus.fullName", + "defaultMessage": "Loan status" + }, + "name": { + "id": "field.loansout_common.loanStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "loanoutstatus" + } + } + } + }, + "loanStatusDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatusDate.fullName", + "defaultMessage": "Loan status date" + }, + "name": { + "id": "field.loansout_common.loanStatusDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanStatusNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.loansout_common.loanStatusNote.fullName", + "defaultMessage": "Loan status note" + }, + "name": { + "id": "field.loansout_common.loanStatusNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "loanOutDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanOutDate.name", + "defaultMessage": "Loan out date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanReturnDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanReturnDate.name", + "defaultMessage": "Loan return date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "loanRenewalApplicationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.loansout_common.loanRenewalApplicationDate.name", + "defaultMessage": "Loan renewal application date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "creditLine": { + "[config]": { + "messages": { + "name": { + "id": "field.loansout_common.creditLine.name", + "defaultMessage": "Credit line" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.loanout.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanOutNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanPurpose" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lender", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "lendersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrower", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "borrower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "borrowersAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "specialConditionsOfLoan" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanOutNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "loanStatusGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanStatusNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "loanOutDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanReturnDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "loanRenewalApplicationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creditLine" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "loanout" + }, + "location": { + "messages": { + "record": { + "name": { + "id": "record.location.name", + "defaultMessage": "Storage Location" + }, + "collectionName": { + "id": "record.location.collectionName", + "defaultMessage": "Storage Locations" + } + }, + "panel": { + "info": { + "id": "panel.location.info", + "defaultMessage": "Storage Location Information" + }, + "hierarchy": { + "id": "panel.location.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.location.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Locations", + "servicePath": "locationauthorities", + "serviceType": "authority", + "objectName": "Locationitem", + "documentName": "locations" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.location.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.location.all.collectionName", + "defaultMessage": "All Locations" + }, + "itemName": { + "id": "vocab.location.all.itemName", + "defaultMessage": "Location" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.location.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.location.local.collectionName", + "defaultMessage": "Local Storage Locations" + }, + "itemName": { + "id": "vocab.location.local.itemName", + "defaultMessage": "Local Storage Location" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(location)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "offsite": { + "messages": { + "name": { + "id": "vocab.location.offsite.name", + "defaultMessage": "Offsite" + }, + "collectionName": { + "id": "vocab.location.offsite.collectionName", + "defaultMessage": "Offsite Storage Locations" + }, + "itemName": { + "id": "vocab.location.offsite.itemName", + "defaultMessage": "Offsite Storage Location" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(offsite_sla)" + }, + "name": "offsite", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:locations_common/locTermGroupList/locTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:locations_common/locationType" + }, + { + "op": "cont", + "path": "ns2:locations_common/securityNote" + }, + { + "op": "cont", + "path": "ns2:locations_common/address" + }, + { + "op": "cont", + "path": "ns2:locations_common/accessNote" + }, + { + "op": "cont", + "path": "ns2:locations_common/conditionGroupList/conditionGroup/conditionNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.location.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "locations_common:locTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.location.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "locations_common:locTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.location.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.location.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:locations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.location.parent", + "defaultMessage": "Broader location" + }, + "children": { + "id": "hierarchyInput.location.children", + "defaultMessage": "Narrower locations" + }, + "siblings": { + "id": "hierarchyInput.location.siblings", + "defaultMessage": "Adjacent locations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:locations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:locations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/location" + } + } + } + }, + "locTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.locations_common.locTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "locTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.locTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.locations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.locations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.locations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.locations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "locationtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.locations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.locations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.locations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.locations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.locations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.locations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.locations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.locations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.locations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.locations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.locations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.locations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.locations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "locationType": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.locationType.name", + "defaultMessage": "Storage location type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "locationtype" + } + } + } + }, + "securityNote": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.securityNote.name", + "defaultMessage": "Security note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "address": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.address.name", + "defaultMessage": "Address" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "accessNote": { + "[config]": { + "messages": { + "name": { + "id": "field.locations_common.accessNote.name", + "defaultMessage": "Access note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "conditionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "conditionGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.conditionGroup.name", + "defaultMessage": "Condition note" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "conditionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.locations_common.conditionNote.fullName", + "defaultMessage": "Condition note" + }, + "name": { + "id": "field.locations_common.conditionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "conditionNoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.locations_common.conditionNoteDate.fullName", + "defaultMessage": "Condition note date" + }, + "name": { + "id": "field.locations_common.conditionNoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.location.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "locTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "securityNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "address" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "conditionGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "conditionNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "conditionNoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.location.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "locationType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "address" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "location" + }, + "media": { + "messages": { + "record": { + "name": { + "id": "record.media.name", + "defaultMessage": "Media Handling" + }, + "collectionName": { + "id": "record.media.collectionName", + "defaultMessage": "Media Handling" + } + }, + "panel": { + "media": { + "id": "panel.media.media", + "defaultMessage": "Media Handling Information" + }, + "file": { + "id": "panel.media.file", + "defaultMessage": "File Information" + } + } + }, + "serviceConfig": { + "serviceName": "Media", + "servicePath": "media", + "serviceType": "procedure", + "objectName": "Media", + "documentName": "media" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:media_common/identificationNumber" + }, + { + "op": "cont", + "path": "ns2:media_common/title" + }, + { + "op": "eq", + "path": "ns2:media_common/creator" + }, + { + "op": "eq", + "path": "ns2:media_common/languageList/language" + }, + { + "op": "eq", + "path": "ns2:media_common/publisher" + }, + { + "op": "eq", + "path": "ns2:media_common/typeList/type" + }, + { + "op": "range", + "path": "ns2:media_common/dateGroupList/dateGroup" + }, + { + "op": "cont", + "path": "ns2:media_common/source" + }, + { + "op": "cont", + "path": "ns2:media_common/subjectList/subject" + }, + { + "op": "eq", + "path": "ns2:media_common/rightsHolder" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "blobCsid": { + "messages": { + "label": { + "id": "column.media.default.blobCsid", + "defaultMessage": "Thumbnail" + } + }, + "order": 10, + "width": 70 + }, + "identificationNumber": { + "messages": { + "label": { + "id": "column.media.default.identificationNumber", + "defaultMessage": "Identification number" + } + }, + "order": 20, + "sortBy": "media_common:identificationNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.media.default.title", + "defaultMessage": "Title" + } + }, + "order": 30, + "sortBy": "media_common:title", + "width": 380 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.media.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:media_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:media_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:media_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/media" + } + }, + "identificationNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.media_common.identificationNumber.inUse", + "defaultMessage": "The identification number {value} is in use by another record." + }, + "name": { + "id": "field.media_common.identificationNumber.name", + "defaultMessage": "Identification number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "media" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "externalUrl": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.externalUrl.name", + "defaultMessage": "External URL" + } + }, + "view": { + "type": "URLInput" + } + } + }, + "measuredPartGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "dimension", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/media" + } + } + }, + "measuredPartGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredPartGroup.name", + "defaultMessage": "Dimensions" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "measuredPart": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPart.fullName", + "defaultMessage": "Measured part" + }, + "name": { + "id": "field.ext.dimension.measuredPart.name", + "defaultMessage": "Part" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measuredParts" + } + } + } + }, + "dimensionSummary": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionSummary.fullName", + "defaultMessage": "Dimension summary" + }, + "name": { + "id": "field.ext.dimension.dimensionSummary.name", + "defaultMessage": "Summary" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dimensionSubGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dimensionSubGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.dimensionSubGroup.name", + "defaultMessage": "Measurement" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "dimension": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimension.fullName", + "defaultMessage": "Measurement dimension" + }, + "name": { + "id": "field.ext.dimension.dimension.name", + "defaultMessage": "Dimension" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dimensions" + } + } + } + }, + "measuredBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.dimension.measuredBy.name", + "defaultMessage": "Measured by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "measurementMethod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementMethod.fullName", + "defaultMessage": "Measurement method" + }, + "name": { + "id": "field.ext.dimension.measurementMethod.name", + "defaultMessage": "Method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementMethods" + } + } + } + }, + "value": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.ext.dimension.value.fullName", + "defaultMessage": "Measurement value" + }, + "name": { + "id": "field.ext.dimension.value.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "measurementUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measurementUnit.fullName", + "defaultMessage": "Measurement unit" + }, + "name": { + "id": "field.ext.dimension.measurementUnit.name", + "defaultMessage": "Unit" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "measurementUnits" + } + } + } + }, + "valueQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.valueQualifier.fullName", + "defaultMessage": "Measurement qualifier" + }, + "name": { + "id": "field.ext.dimension.valueQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.dimension.valueDate.fullName", + "defaultMessage": "Measurement date" + }, + "name": { + "id": "field.ext.dimension.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dimensionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.dimensionNote.fullName", + "defaultMessage": "Measurement note" + }, + "name": { + "id": "field.ext.dimension.dimensionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "measuredPartNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.dimension.measuredPartNote.fullName", + "defaultMessage": "Dimension note" + }, + "name": { + "id": "field.ext.dimension.measuredPartNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "contributor": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.contributor.name", + "defaultMessage": "Contributor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "creator": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.creator.name", + "defaultMessage": "Creator" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "languageList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "language": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.language.name", + "defaultMessage": "Language" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + } + }, + "publisher": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.publisher.name", + "defaultMessage": "Publisher" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "relationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "relation": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.relation.name", + "defaultMessage": "Relation" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "copyrightStatement": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.copyrightStatement.name", + "defaultMessage": "Copyright statement" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "typeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "type": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.type.name", + "defaultMessage": "Type" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "mediaTypes" + } + } + } + } + }, + "coverage": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.coverage.name", + "defaultMessage": "Coverage" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "dateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.media_common.dateGroup.name", + "defaultMessage": "Date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "subjectList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "subject": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.subject.name", + "defaultMessage": "Subject" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "rightsHolder": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.rightsHolder.name", + "defaultMessage": "Rights holder" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "publishToList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publishTo": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.publishTo.name", + "defaultMessage": "Publish to" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "publishto" + } + } + } + } + }, + "altText": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.altText.name", + "defaultMessage": "Alt text" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "checksumGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "checksumGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.media_common.checksumGroup.name", + "defaultMessage": "Checksum" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "checksumValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.media_common.checksumValue.fullName", + "defaultMessage": "Checksum value" + }, + "name": { + "id": "field.media_common.checksumValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "checksumType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.media_common.checksumType.fullName", + "defaultMessage": "Checksum type" + }, + "name": { + "id": "field.media_common.checksumType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "checksumtypes" + } + } + } + }, + "checksumDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.media_common.checksumDate.fullName", + "defaultMessage": "Checksum date" + }, + "name": { + "id": "field.media_common.checksumDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.media.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "media", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "identificationNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishToList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publishTo" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "file", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "blob", + "showDetachButton": true + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "externalUrl" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "measuredPartGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "measuredPart" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSummary" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dimensionSubGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dimension" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "value" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measurementUnit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "measuredPartNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "checksumGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "checksumValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "checksumDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contributor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creator" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "languageList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "language" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "relationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "copyrightStatement" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "typeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "type" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coverage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "dateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "source" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "subjectList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "subject" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "rightsHolder" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "description" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "altText" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "subrecords": { + "blob": { + "recordType": "blob", + "csidField": [ + "document", + "ns2:media_common", + "blobCsid" + ], + "saveStage": "before" + } + }, + "name": "media" + }, + "movement": { + "messages": { + "record": { + "name": { + "id": "record.movement.name", + "defaultMessage": "Location/Movement/Inventory" + }, + "collectionName": { + "id": "record.movement.collectionName", + "defaultMessage": "Location/Movement/Inventory" + } + }, + "panel": { + "location": { + "id": "panel.movement.location", + "defaultMessage": "Object Location Information" + }, + "movement": { + "id": "panel.movement.movement", + "defaultMessage": "Movement Information" + }, + "inventory": { + "id": "panel.movement.inventory", + "defaultMessage": "Inventory Information" + } + }, + "inputTable": { + "currentLocation": { + "id": "inputTable.movement.currentLocation", + "defaultMessage": "Current location" + } + } + }, + "serviceConfig": { + "serviceName": "Movements", + "servicePath": "movements", + "serviceType": "procedure", + "objectName": "Movement", + "documentName": "movements" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:movements_common/movementReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:movements_common/normalLocation" + }, + { + "op": "eq", + "path": "ns2:movements_common/currentLocation" + }, + { + "op": "range", + "path": "ns2:movements_common/locationDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/reasonForMove" + }, + { + "op": "eq", + "path": "ns2:movements_common/movementMethods/movementMethod" + }, + { + "op": "range", + "path": "ns2:movements_common/plannedRemovalDate" + }, + { + "op": "range", + "path": "ns2:movements_common/removalDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/movementContact" + }, + { + "op": "eq", + "path": "ns2:movements_common/inventoryActionRequired" + }, + { + "op": "eq", + "path": "ns2:movements_common/frequencyForInventory" + }, + { + "op": "range", + "path": "ns2:movements_common/inventoryDate" + }, + { + "op": "range", + "path": "ns2:movements_common/nextInventoryDate" + }, + { + "op": "eq", + "path": "ns2:movements_common/inventoryContactList/inventoryContact" + }, + { + "op": "cont", + "path": "ns2:movements_common/inventoryNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "movementReferenceNumber": { + "messages": { + "label": { + "id": "column.movement.default.movementReferenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 20, + "sortBy": "movements_common:movementReferenceNumber", + "width": 230 + }, + "currentLocation": { + "messages": { + "label": { + "id": "column.movement.default.currentLocation", + "defaultMessage": "Current location" + } + }, + "order": 30, + "sortBy": "movements_common:currentLocation", + "width": 250 + }, + "locationDate": { + "messages": { + "label": { + "id": "column.movement.default.locationDate", + "defaultMessage": "Location date" + } + }, + "order": 35, + "sortBy": "movements_common:locationDate", + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.movement.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:movements_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:movements_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:movements_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/movement" + } + }, + "movementReferenceNumber": { + "[config]": { + "messages": { + "inUse": { + "id": "field.movements_common.movementReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.movements_common.movementReferenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "inventory,location,movement" + } + } + } + }, + "normalLocation": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.normalLocation.name", + "defaultMessage": "Normal location" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + } + } + }, + "currentLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocation.fullName", + "defaultMessage": "Current location" + }, + "name": { + "id": "field.movements_common.currentLocation.name", + "defaultMessage": "Location" + } + }, + "required": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "location/local,location/offsite,organization/local,organization/shared" + } + } + } + }, + "currentLocationFitness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocationFitness.fullName", + "defaultMessage": "Current location fitness" + }, + "name": { + "id": "field.movements_common.currentLocationFitness.name", + "defaultMessage": "Fitness" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "locationFitnesses" + } + } + } + }, + "currentLocationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.currentLocationNote.fullName", + "defaultMessage": "Current location note" + }, + "name": { + "id": "field.movements_common.currentLocationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "locationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.locationDate.name", + "defaultMessage": "Location date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "reasonForMove": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.reasonForMove.name", + "defaultMessage": "Reason for move" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "moveReasons" + } + } + } + }, + "movementMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "movementMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.movementMethod.name", + "defaultMessage": "Movement method" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "moveMethods" + } + } + } + } + }, + "plannedRemovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.plannedRemovalDate.name", + "defaultMessage": "Planned removal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "removalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.removalDate.name", + "defaultMessage": "Removal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "movementContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.movementContact.fullName", + "defaultMessage": "Movement contact" + }, + "name": { + "id": "field.movements_common.movementContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "movementNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.movementNote.fullName", + "defaultMessage": "Movement note" + }, + "name": { + "id": "field.movements_common.movementNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "inventoryActionRequired": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.inventoryActionRequired.name", + "defaultMessage": "Inventory action required" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "invActions" + } + } + } + }, + "frequencyForInventory": { + "[config]": { + "messages": { + "name": { + "id": "field.movements_common.frequencyForInventory.name", + "defaultMessage": "Inventory frequency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "invFreqs" + } + } + } + }, + "inventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.inventoryDate.name", + "defaultMessage": "Inventory date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nextInventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.movements_common.nextInventoryDate.name", + "defaultMessage": "Next inventory date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "inventoryContactList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "inventoryContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.inventoryContact.fullName", + "defaultMessage": "Inventory contact" + }, + "name": { + "id": "field.movements_common.inventoryContact.name", + "defaultMessage": "Contact" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + } + }, + "inventoryNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.movements_common.inventoryNote.fullName", + "defaultMessage": "Inventory note" + }, + "name": { + "id": "field.movements_common.inventoryNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.movement.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "location", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "movementReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "normalLocation" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "currentLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationFitness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "currentLocationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "locationDate" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movement", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reasonForMove" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movementMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "movementMethod" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "plannedRemovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "removalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "movementContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "movementNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventory", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryActionRequired" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "frequencyForInventory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nextInventoryDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryContactList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "inventoryContact" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "lockable": true, + "lockOnSave": "prompt", + "name": "movement" + }, + "object": { + "messages": { + "record": { + "name": { + "id": "record.object.name", + "defaultMessage": "Object" + }, + "collectionName": { + "id": "record.object.collectionName", + "defaultMessage": "Objects" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/object/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Object" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "docNumber": { + "messages": { + "label": { + "id": "column.object.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.object.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.object.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.object.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "object" + }, + "objectexit": { + "messages": { + "record": { + "name": { + "id": "record.objectexit.name", + "defaultMessage": "Object Exit" + }, + "collectionName": { + "id": "record.objectexit.collectionName", + "defaultMessage": "Object Exits" + } + }, + "panel": { + "info": { + "id": "panel.objectexit.info", + "defaultMessage": "Object Exit Information" + }, + "deaccessionDisposalInfo": { + "id": "panel.objectexit.deaccessionDisposalInfo", + "defaultMessage": "Deaccession and Disposal Information" + } + }, + "inputTable": { + "disposal": { + "id": "inputTable.objectexit.disposal", + "defaultMessage": "Disposal" + }, + "groupDisposal": { + "id": "inputTable.objectexit.groupDisposal", + "defaultMessage": "Group disposal" + } + } + }, + "serviceConfig": { + "serviceName": "ObjectExit", + "servicePath": "objectexit", + "serviceType": "procedure", + "objectName": "ObjectExit", + "documentName": "objectexit" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:objectexit_common/exitNumber" + }, + { + "op": "range", + "path": "ns2:objectexit_common/exitDateGroup" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/exitReason" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/exitMethods/exitMethod" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/currentOwner" + }, + { + "op": "eq", + "path": "ns2:objectexit_common/depositor" + }, + { + "op": "cont", + "path": "ns2:objectexit_common/exitNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "exitNumber": { + "messages": { + "label": { + "id": "column.objectexit.default.exitNumber", + "defaultMessage": "Exit number" + } + }, + "order": 10, + "sortBy": "objectexit_common:exitNumber", + "width": 200 + }, + "currentOwner": { + "messages": { + "label": { + "id": "column.objectexit.default.currentOwner", + "defaultMessage": "Current owner" + } + }, + "order": 20, + "sortBy": "objectexit_common:currentOwner", + "width": 450 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.objectexit.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:objectexit_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:objectexit_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:objectexit_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/objectexit" + } + }, + "exitNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.objectexit_common.exitNumber.inUse", + "defaultMessage": "The exit number {value} is in use by another record." + }, + "name": { + "id": "field.objectexit_common.exitNumber.name", + "defaultMessage": "Exit number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "objectexit" + } + } + } + }, + "exitDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.exitDateGroup.name", + "defaultMessage": "Exit date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "exitReason": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitReason.name", + "defaultMessage": "Exit reason" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exitReasons" + } + } + } + }, + "exitMethods": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "exitMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitMethod.name", + "defaultMessage": "Exit method" + } + }, + "repeating": true, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "exitMethods" + } + } + } + } + }, + "exitQuantity": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.objectexit_common.exitQuantity.name", + "defaultMessage": "Exit quantity" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "currentOwner": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.currentOwner.name", + "defaultMessage": "Current owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "depositor": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.depositor.name", + "defaultMessage": "Depositor" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "exitNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.exitNote.name", + "defaultMessage": "Exit note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "packingNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.packingNote.name", + "defaultMessage": "Packing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "displosalNewObjectNumber": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalNewObjectNumber.name", + "defaultMessage": "Disposal new object number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "deaccessionAuthorizer": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.deaccessionAuthorizer.name", + "defaultMessage": "Deaccession authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "authorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.authorizationDate.name", + "defaultMessage": "Authorization date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "deacApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "deacApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.deacApprovalGroup.name", + "defaultMessage": "Deaccession approval" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "deaccessionApprovalGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalGroup.fullName", + "defaultMessage": "Deaccession approval group" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalgroup" + } + } + } + }, + "deaccessionApprovalIndividual": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalIndividual.fullName", + "defaultMessage": "Deaccession approval individual" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalIndividual.name", + "defaultMessage": "Individual" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "deaccessionApprovalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalStatus.fullName", + "defaultMessage": "Deaccession approval status" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "deaccessionapprovalstatus" + } + } + } + }, + "deaccessionApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalDate.fullName", + "defaultMessage": "Deaccession approval status date" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "deaccessionApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.deaccessionApprovalNote.fullName", + "defaultMessage": "Deaccession approval note" + }, + "name": { + "id": "field.objectexit_common.deaccessionApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "deaccessionDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.deaccessionDate.name", + "defaultMessage": "Deaccession date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "disposalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.objectexit_common.disposalDate.name", + "defaultMessage": "Disposal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "disposalMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalMethod.name", + "defaultMessage": "Disposal method" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "disposalmethod" + } + } + } + }, + "displosalReason": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalReason.name", + "defaultMessage": "Disposal reason" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "disposalProposedRecipient": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalProposedRecipient.name", + "defaultMessage": "Disposal proposed recipient" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "disposalRecipient": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.disposalRecipient.name", + "defaultMessage": "Disposal recipient" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "disposalCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.disposalCurrency.fullName", + "defaultMessage": "Disposal currency" + }, + "name": { + "id": "field.objectexit_common.disposalCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "displosalValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.objectexit_common.displosalValue.name", + "defaultMessage": "Value" + }, + "fullName": { + "id": "field.objectexit_common.displosalValue.fullName", + "defaultMessage": "Disposal value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "groupDisposalCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.objectexit_common.groupDisposalCurrency.fullName", + "defaultMessage": "Group disposal currency" + }, + "name": { + "id": "field.objectexit_common.groupDisposalCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "groupDisplosalValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.objectexit_common.groupDisplosalValue.name", + "defaultMessage": "Value" + }, + "fullName": { + "id": "field.objectexit_common.groupDisposalValue.fullName", + "defaultMessage": "Group disposal value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "displosalProvisos": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalProvisos.name", + "defaultMessage": "Disposal provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "displosalNote": { + "[config]": { + "messages": { + "name": { + "id": "field.objectexit_common.displosalNote.name", + "defaultMessage": "Disposal note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.objectexit.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exitNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitReason" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "exitQuantity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitMethods", + "children": { + "key": null, + "ref": null, + "props": { + "name": "exitMethod" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deacApprovalGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "deacApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalIndividual" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "exitNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "packingNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionDisposalInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deaccessionDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalReason" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "disposalProposedRecipient" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposalRecipient" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "disposal", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "disposalCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupDisposal", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groupDisposalCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groupDisplosalValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalProvisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "displosalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "objectexit" + }, + "organization": { + "messages": { + "record": { + "name": { + "id": "record.organization.name", + "defaultMessage": "Organization" + }, + "collectionName": { + "id": "record.organization.collectionName", + "defaultMessage": "Organizations" + } + }, + "panel": { + "info": { + "id": "panel.organization.info", + "defaultMessage": "Organization Information" + }, + "hierarchy": { + "id": "panel.organization.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.organization.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.organization.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Organizations", + "servicePath": "orgauthorities", + "serviceType": "authority", + "objectName": "Organization", + "documentName": "organizations" + }, + "subrecords": { + "contact": { + "recordType": "contact", + "subresource": "contacts", + "saveStage": "after" + } + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.organization.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.organization.all.collectionName", + "defaultMessage": "All Organizations" + }, + "itemName": { + "id": "vocab.organization.all.itemName", + "defaultMessage": "Organization" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.organization.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.organization.local.collectionName", + "defaultMessage": "Local Organizations" + }, + "itemName": { + "id": "vocab.organization.local.itemName", + "defaultMessage": "Local Organization" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(organization)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "ulan": { + "messages": { + "name": { + "id": "vocab.organization.ulan.name", + "defaultMessage": "ULAN" + }, + "collectionName": { + "id": "vocab.organization.ulan.collectionName", + "defaultMessage": "ULAN Organizations" + }, + "itemName": { + "id": "vocab.organization.ulan.itemName", + "defaultMessage": "ULAN Organization" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ulan_oa)" + }, + "name": "ulan", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:organizations_common/orgTermGroupList/orgTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:organizations_common/organizationRecordTypes/organizationRecordType" + }, + { + "op": "range", + "path": "ns2:organizations_common/foundingDateGroup" + }, + { + "op": "cont", + "path": "ns2:organizations_common/foundingPlace" + }, + { + "op": "range", + "path": "ns2:organizations_common/dissolutionDateGroup" + }, + { + "op": "cont", + "path": "ns2:organizations_common/groups/group" + }, + { + "op": "cont", + "path": "ns2:organizations_common/functions/function" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.organization.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "organizations_common:orgTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.organization.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "organizations_common:orgTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.organization.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.organization.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:organizations_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.organization.parent", + "defaultMessage": "Broader organization" + }, + "children": { + "id": "hierarchyInput.organization.children", + "defaultMessage": "Narrower organizations" + }, + "siblings": { + "id": "hierarchyInput.organization.siblings", + "defaultMessage": "Adjacent organizations" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:organizations_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:organizations_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/organization" + } + } + } + }, + "orgTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.organizations_common.orgTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "orgTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.orgTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.organizations_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.organizations_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.organizations_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "orgTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.organizations_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "orgtermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.organizations_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "orgTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.organizations_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.organizations_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.organizations_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.organizations_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "mainBodyName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.mainBodyName.fullName", + "defaultMessage": "Term main body name" + }, + "name": { + "id": "field.organizations_common.mainBodyName.name", + "defaultMessage": "Main body name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "additionsToName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.additionsToName.fullName", + "defaultMessage": "Term name addition" + }, + "groupName": { + "id": "field.organizations_common.additionsToName.groupName", + "defaultMessage": "Name addition" + }, + "name": { + "id": "field.organizations_common.additionsToName.name", + "defaultMessage": "Addition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.organizations_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.organizations_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.organizations_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.organizations_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.organizations_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.organizations_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.organizations_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.organizations_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "organizationRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "organizationRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.organizationRecordType.name", + "defaultMessage": "Organization type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "organizationtype" + } + } + } + } + }, + "foundingDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.foundingDateGroup.name", + "defaultMessage": "Foundation date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "foundingPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.foundingPlace.name", + "defaultMessage": "Foundation place" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "dissolutionDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.organizations_common.dissolutionDateGroup.name", + "defaultMessage": "Dissolution date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "contactGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.contactGroup.name", + "defaultMessage": "Contact person" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "contactName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactName.fullName", + "defaultMessage": "Contact name" + }, + "name": { + "id": "field.organizations_common.contactName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "contactRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactRole.fullName", + "defaultMessage": "Contact role" + }, + "name": { + "id": "field.organizations_common.contactRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "contactrole" + } + } + } + }, + "contactDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactDateGroup.fullName", + "defaultMessage": "Contact date" + }, + "groupName": { + "id": "field.organizations_common.contactDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.organizations_common.contactDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactEndDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.organizations_common.contactEndDateGroup.fullName", + "defaultMessage": "Contact end date" + }, + "groupName": { + "id": "field.organizations_common.contactEndDateGroup.groupName", + "defaultMessage": "End date" + }, + "name": { + "id": "field.organizations_common.contactEndDateGroup.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "contactStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.organizations_common.contactStatus.fullName", + "defaultMessage": "Contact status" + }, + "name": { + "id": "field.organizations_common.contactStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "contactstatus" + } + } + } + } + } + }, + "groups": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "group": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.group.name", + "defaultMessage": "Group" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "functions": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "function": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.function.name", + "defaultMessage": "Function" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "historyNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "historyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.organizations_common.historyNote.name", + "defaultMessage": "History" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "ns2:contacts_common": { + "[config]": { + "cloneable": false + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.organization.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "orgTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "orgTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDetail", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mainBodyName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionsToName" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "organizationRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "organizationRecordType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foundingDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foundingPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dissolutionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "groups", + "children": { + "key": null, + "ref": null, + "props": { + "name": "group" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "functions", + "children": { + "key": null, + "ref": null, + "props": { + "name": "function" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historyNotes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "historyNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "contactGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "contactName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactEndDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contactStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.organization.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "foundingDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dissolutionDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:organizations_common", + "historyNotes", + "historyNote" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "organization" + }, + "person": { + "messages": { + "record": { + "name": { + "id": "record.person.name", + "defaultMessage": "Person" + }, + "collectionName": { + "id": "record.person.collectionName", + "defaultMessage": "Persons" + } + }, + "panel": { + "info": { + "id": "panel.person.info", + "defaultMessage": "Person Information" + }, + "hierarchy": { + "id": "panel.person.hierarchy", + "defaultMessage": "Hierarchy" + }, + "supplied": { + "id": "panel.person.supplied", + "defaultMessage": "Maker-Supplied Identity Information" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.person.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.person.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Persons", + "servicePath": "personauthorities", + "serviceType": "authority", + "objectName": "Person", + "documentName": "persons" + }, + "subrecords": { + "contact": { + "recordType": "contact", + "subresource": "contacts", + "saveStage": "after" + } + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.person.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.person.all.collectionName", + "defaultMessage": "All Persons" + }, + "itemName": { + "id": "vocab.person.all.itemName", + "defaultMessage": "Person" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.person.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.person.local.collectionName", + "defaultMessage": "Local Persons" + }, + "itemName": { + "id": "vocab.person.local.itemName", + "defaultMessage": "Local Person" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(person)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "ulan": { + "messages": { + "name": { + "id": "vocab.person.ulan.name", + "defaultMessage": "ULAN" + }, + "collectionName": { + "id": "vocab.person.ulan.collectionName", + "defaultMessage": "ULAN Persons" + }, + "itemName": { + "id": "vocab.person.ulan.itemName", + "defaultMessage": "ULAN Person" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(ulan_pa)" + }, + "name": "ulan", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:persons_common/personTermGroupList/personTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:persons_common/gender" + }, + { + "op": "cont", + "path": "ns2:persons_common/occupations/occupation" + }, + { + "op": "cont", + "path": "ns2:persons_common/schoolsOrStyles/schoolOrStyle" + }, + { + "op": "cont", + "path": "ns2:persons_common/groups/group" + }, + { + "op": "cont", + "path": "ns2:persons_common/nationalities/nationality" + }, + { + "op": "range", + "path": "ns2:persons_common/birthDateGroup" + }, + { + "op": "range", + "path": "ns2:persons_common/deathDateGroup" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.person.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "persons_common:personTermGroupList/0/termDisplayName", + "width": 250 + }, + "surName": { + "messages": { + "label": { + "id": "column.person.default.surName", + "defaultMessage": "Surname" + } + }, + "order": 30, + "sortBy": "persons_common:personTermGroupList/0/surName", + "width": 125 + }, + "foreName": { + "messages": { + "label": { + "id": "column.person.default.foreName", + "defaultMessage": "Forename" + } + }, + "order": 40, + "sortBy": "persons_common:personTermGroupList/0/foreName", + "width": 125 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.person.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 50, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.object.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 60, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:persons_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.person.parent", + "defaultMessage": "Broader person" + }, + "children": { + "id": "hierarchyInput.person.children", + "defaultMessage": "Narrower persons" + }, + "siblings": { + "id": "hierarchyInput.person.siblings", + "defaultMessage": "Adjacent persons" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:persons_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:persons_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/person" + } + } + } + }, + "personTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.persons_common.personTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "personTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.personTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.persons_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termFormattedDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termFormattedDisplayName.fullName", + "defaultMessage": "Term formatted display name" + }, + "name": { + "id": "field.persons_common.termFormattedDisplayName.name", + "defaultMessage": "Formatted display name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.persons_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.persons_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.persons_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTermStatuses" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.persons_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.persons_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "persontermflag" + } + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.persons_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.persons_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "salutation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.salutation.fullName", + "defaultMessage": "Term salutation" + }, + "name": { + "id": "field.persons_common.salutation.name", + "defaultMessage": "Salutation" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "salutations" + } + } + } + }, + "title": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.title.fullName", + "defaultMessage": "Term title" + }, + "name": { + "id": "field.persons_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "personTitles" + } + } + } + }, + "foreName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.foreName.fullName", + "defaultMessage": "Term forename" + }, + "name": { + "id": "field.persons_common.foreName.name", + "defaultMessage": "Forename" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "middleName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.middleName.fullName", + "defaultMessage": "Term middle name" + }, + "name": { + "id": "field.persons_common.middleName.name", + "defaultMessage": "Middle name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "surName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.surName.fullName", + "defaultMessage": "Term surname" + }, + "name": { + "id": "field.persons_common.surName.name", + "defaultMessage": "Surname" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "nameAdditions": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.nameAdditions.fullName", + "defaultMessage": "Term name addition" + }, + "groupName": { + "id": "field.persons_common.nameAdditions.groupName", + "defaultMessage": "Name addition" + }, + "name": { + "id": "field.persons_common.nameAdditions.name", + "defaultMessage": "Addition" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "initials": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.initials.fullName", + "defaultMessage": "Term initials" + }, + "name": { + "id": "field.persons_common.initials.name", + "defaultMessage": "Initials" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.persons_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.persons_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.persons_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.persons_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.persons_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.persons_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.persons_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.persons_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "personRecordTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "personRecordType": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.personRecordType.name", + "defaultMessage": "Person type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "persontermtype" + } + } + } + } + }, + "gender": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.gender.name", + "defaultMessage": "Gender" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "genders" + } + } + } + }, + "occupations": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "occupation": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.occupation.name", + "defaultMessage": "Occupation" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "schoolsOrStyles": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "schoolOrStyle": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.schoolOrStyle.name", + "defaultMessage": "School/style" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "groups": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "group": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.group.name", + "defaultMessage": "Group" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "nationalities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nationality": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.nationality.name", + "defaultMessage": "Nationality" + } + }, + "repeating": true, + "view": { + "type": "TextInput" + } + } + } + }, + "nameNote": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.nameNote.name", + "defaultMessage": "Name note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "birthDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.birthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "birthPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.birthPlace.name", + "defaultMessage": "Place of birth" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "deathDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.persons_common.deathDateGroup.name", + "defaultMessage": "Death date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "deathPlace": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.deathPlace.name", + "defaultMessage": "Place of death" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "bioNote": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.bioNote.name", + "defaultMessage": "Biographical note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "pronounGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "pronounGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.pronounGroup.name", + "defaultMessage": "Pronoun" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerPronoun": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerPronoun.fullName", + "defaultMessage": "Pronoun supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerPronoun.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedPronouns": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedPronoun": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedPronoun.fullName", + "defaultMessage": "Pronoun supplied" + }, + "name": { + "id": "field.persons_common.suppliedPronoun.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedpronoun" + } + } + } + } + }, + "useRestrictionPronoun": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionPronoun.fullName", + "defaultMessage": "Pronoun supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionPronoun.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "genderGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "genderGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.genderGroup.name", + "defaultMessage": "Gender" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerGender": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerGender.fullName", + "defaultMessage": "Gender supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerGender.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedGenders": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedGender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedGender.fullName", + "defaultMessage": "Gender supplied" + }, + "name": { + "id": "field.persons_common.suppliedGender.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedgender" + } + } + } + } + }, + "useRestrictionGender": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionGender.fullName", + "defaultMessage": "Gender supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionGender.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "raceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "raceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.raceGroup.name", + "defaultMessage": "Race" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerRace": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerRace.fullName", + "defaultMessage": "Race supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerRace.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedRaces": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedRace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedRace.fullName", + "defaultMessage": "Race supplied" + }, + "name": { + "id": "field.persons_common.suppliedRace.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedrace" + } + } + } + } + }, + "useRestrictionRace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionRace.fullName", + "defaultMessage": "Race supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionRace.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "ethnicityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "ethnicityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.ethnicityGroup.name", + "defaultMessage": "Ethnicity" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerEthnicity": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerEthnicity.fullName", + "defaultMessage": "Ethnicity supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerEthnicity.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedEthnicities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedEthnicity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedEthnicity.fullName", + "defaultMessage": "Ethnicity supplied" + }, + "name": { + "id": "field.persons_common.suppliedEthnicity.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedethnicity" + } + } + } + } + }, + "useRestrictionEthnicity": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionEthnicity.fullName", + "defaultMessage": "Ethnicity supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionEthnicity.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "sexualityGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sexualityGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.sexualityGroup.name", + "defaultMessage": "Sexuality" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerSexuality": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerSexuality.fullName", + "defaultMessage": "Sexuality supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerSexuality.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedSexualities": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedSexuality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedSexuality.fullName", + "defaultMessage": "Sexuality supplied" + }, + "name": { + "id": "field.persons_common.suppliedSexuality.name", + "defaultMessage": "Supplied" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "suppliedsexuality" + } + } + } + } + }, + "useRestrictionSexuality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionSexuality.fullName", + "defaultMessage": "Sexuality supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionSexuality.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "birthPlaceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "birthPlaceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.birthPlaceGroup.name", + "defaultMessage": "Birth place" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerBirthPlace": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerBirthPlace.fullName", + "defaultMessage": "Birth place supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerBirthPlace.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedBirthPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedBirthPlace.fullName", + "defaultMessage": "Birth place supplied" + }, + "name": { + "id": "field.persons_common.suppliedBirthPlace.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "useRestrictionBirthPlace": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionBirthPlace.fullName", + "defaultMessage": "Birth place supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionBirthPlace.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "suppliedBirthDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "suppliedBirthDateGroup": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.suppliedBirthDateGroup.fullName", + "defaultMessage": "Supplied birth date" + }, + "name": { + "id": "field.persons_common.suppliedBirthDateGroup.name", + "defaultMessage": "Birth date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "declinedToAnswerBirthDate": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.persons_common.declinedToAnswerBirthDate.fullName", + "defaultMessage": "Birth date supplied declined to answer" + }, + "name": { + "id": "field.persons_common.declinedToAnswerBirthDate.name", + "defaultMessage": "Declined to answer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "suppliedStructuredBirthDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.fullName", + "defaultMessage": "Birth date supplied" + }, + "groupName": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.groupName", + "defaultMessage": "Supplied" + }, + "name": { + "id": "field.persons_common.suppliedStructuredBirthDateGroup.name", + "defaultMessage": "Supplied" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "useRestrictionBirthDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.useRestrictionBirthDate.fullName", + "defaultMessage": "Birth date supplied use restriction" + }, + "name": { + "id": "field.persons_common.useRestrictionBirthDate.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + } + } + }, + "otherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "otherGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.persons_common.otherGroup.name", + "defaultMessage": "Other information" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "informationAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.informationAuthor.fullName", + "defaultMessage": "Other information author" + }, + "name": { + "id": "field.persons_common.informationAuthor.name", + "defaultMessage": "Author" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "informationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.persons_common.informationDate.fullName", + "defaultMessage": "Other information date" + }, + "name": { + "id": "field.persons_common.informationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "informationUseRestriction": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.informationUseRestriction.fullName", + "defaultMessage": "Other information use restriction" + }, + "name": { + "id": "field.persons_common.informationUseRestriction.name", + "defaultMessage": "Use restriction" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "userestriction" + } + } + } + }, + "otherInformation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.persons_common.otherInformation.fullName", + "defaultMessage": "Other information note" + }, + "name": { + "id": "field.persons_common.otherInformation.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "ns2:contacts_common": { + "[config]": { + "cloneable": false + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.person.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "personTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDetail", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "salutation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "foreName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "middleName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameAdditions" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "initials" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "personRecordTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "personRecordType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "gender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "occupations", + "children": { + "key": null, + "ref": null, + "props": { + "name": "occupation" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "schoolsOrStyles", + "children": { + "key": null, + "ref": null, + "props": { + "name": "schoolOrStyle" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "groups", + "children": { + "key": null, + "ref": null, + "props": { + "name": "group" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nationalities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nationality" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nameNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "birthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "birthPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "deathDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deathPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bioNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "contact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supplied", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pronounGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "pronounGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerPronoun" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedPronouns", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedPronoun" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionPronoun" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "genderGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "genderGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerGender" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedGenders", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedGender" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionGender" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "raceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "raceGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerRace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedRaces", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedRace" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionRace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ethnicityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "ethnicityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerEthnicity" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedEthnicities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedEthnicity" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionEthnicity" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexualityGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sexualityGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerSexuality" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedSexualities", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedSexuality" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionSexuality" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "birthPlaceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "birthPlaceGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerBirthPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthPlace" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionBirthPlace" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "suppliedBirthDateGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "declinedToAnswerBirthDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "suppliedStructuredBirthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useRestrictionBirthDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "otherGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "informationAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "informationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "informationUseRestriction" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "otherInformation" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.person.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "birthDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "deathDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "bioNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "person" + }, + "place": { + "messages": { + "record": { + "name": { + "id": "record.place.name", + "defaultMessage": "Place" + }, + "collectionName": { + "id": "record.place.collectionName", + "defaultMessage": "Places" + } + }, + "panel": { + "info": { + "id": "panel.place.info", + "defaultMessage": "Place Information" + }, + "localityInfo": { + "id": "panel.place.localityInfo", + "defaultMessage": "Locality Information" + }, + "geoRefInfo": { + "id": "panel.place.geoRefInfo", + "defaultMessage": "Georeference Information" + }, + "hierarchy": { + "id": "panel.place.hierarchy", + "defaultMessage": "Hierarchy" + }, + "assertionInfo": { + "id": "panel.place.assertionInfo", + "defaultMessage": "Assertion Information" + }, + "assertions": { + "id": "panel.place.assertions", + "defaultMessage": "Cultural Affiliation Lines of Evidence" + }, + "background": { + "id": "panel.place.background", + "defaultMessage": "Background Research and Additional Information" + }, + "consultedDocs": { + "id": "panel.place.consultedDocs", + "defaultMessage": "Documents Consulted for Cultural Affiliation Research" + } + }, + "inputTable": { + "nameDetail": { + "id": "inputTable.place.nameDetail", + "defaultMessage": "Name detail" + }, + "termSource": { + "id": "inputTable.place.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Places", + "servicePath": "placeauthorities", + "serviceType": "authority", + "objectName": "Placeitem", + "documentName": "places" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.place.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.place.all.collectionName", + "defaultMessage": "All Places" + }, + "itemName": { + "id": "vocab.place.all.itemName", + "defaultMessage": "Place" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.place.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.place.local.collectionName", + "defaultMessage": "Local Places" + }, + "itemName": { + "id": "vocab.place.local.itemName", + "defaultMessage": "Local Place" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(place)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "tgn": { + "messages": { + "name": { + "id": "vocab.place.tgn.name", + "defaultMessage": "TGN" + }, + "collectionName": { + "id": "vocab.place.tgn.collectionName", + "defaultMessage": "TGN Places" + }, + "itemName": { + "id": "vocab.place.tgn.itemName", + "defaultMessage": "TGN Place" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(tgn_place)" + }, + "name": "tgn", + "disableAltTerms": false + }, + "archaeological": { + "messages": { + "name": { + "id": "vocab.place.archaeological.name", + "defaultMessage": "Archaeological" + }, + "collectionName": { + "id": "vocab.place.archaeological.collectionName", + "defaultMessage": "Archaeological Sites" + }, + "itemName": { + "id": "vocab.place.archaeological.itemName", + "defaultMessage": "Archaeological Site" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(archaeological)" + }, + "name": "archaeological", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:places_common/placeTermGroupList/placeTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:places_common/placeType" + }, + { + "op": "eq", + "path": "ns2:places_common/placeOwnerGroupList/placeOwnerGroup/owner" + }, + { + "op": "cont", + "path": "ns2:places_common/placeNote" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.place.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "places_common:placeTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.place.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "places_common:placeTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.place.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.place.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:places_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.place.parent", + "defaultMessage": "Broader place" + }, + "children": { + "id": "hierarchyInput.place.children", + "defaultMessage": "Narrower places" + }, + "siblings": { + "id": "hierarchyInput.place.siblings", + "defaultMessage": "Adjacent places" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:places_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:places_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + } + }, + "placeTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.places_common.placeTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "placeTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.places_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.places_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.places_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.places_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTermStatuses" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.places_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.places_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "placetermflag" + } + } + } + }, + "historicalStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.historicalStatus.fullName", + "defaultMessage": "Term historical status" + }, + "name": { + "id": "field.places_common.historicalStatus.name", + "defaultMessage": "Historical status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeHistoricalStatuses" + } + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.places_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.places_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.places_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "nameAbbrev": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.nameAbbrev.fullName", + "defaultMessage": "Term abbreviation" + }, + "name": { + "id": "field.places_common.nameAbbrev.name", + "defaultMessage": "Abbreviation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.nameNote.fullName", + "defaultMessage": "Term note" + }, + "name": { + "id": "field.places_common.nameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nameDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.nameDateGroup.fullName", + "defaultMessage": "Term date" + }, + "name": { + "id": "field.places_common.nameDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.places_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.places_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.places_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.places_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.places_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.places_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.places_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.places_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "placeType": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeType.name", + "defaultMessage": "Place type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "placeTypes" + } + } + } + }, + "placeSource": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeSource.name", + "defaultMessage": "Place source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "placeOwnerGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeOwnerGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeOwnerGroup.name", + "defaultMessage": "Ownership" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "owner": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.owner.name", + "defaultMessage": "Owner" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "ownershipDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.ownershipDateGroup.fullName", + "defaultMessage": "Ownership date" + }, + "name": { + "id": "field.places_common.ownershipDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "ownershipNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.ownershipNote.fullName", + "defaultMessage": "Ownership note" + }, + "name": { + "id": "field.places_common.ownershipNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "placeNote": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.placeNote.name", + "defaultMessage": "Place note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/place" + } + } + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + }, + "vCoordinates": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordinates.name", + "defaultMessage": "Verbatim coords" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLatitude": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vLatitude.name", + "defaultMessage": "Verbatim latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vLongitude": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vLongitude.name", + "defaultMessage": "Verbatim longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSys": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSys.name", + "defaultMessage": "Coordinate system" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "coordinateSystems" + } + } + } + }, + "vSpatialReferenceSystem": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vSpatialReferenceSystem.name", + "defaultMessage": "Spatial ref system" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "spatialRefSystems" + } + } + } + }, + "vUnitofMeasure": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vUnitofMeasure.name", + "defaultMessage": "Unit of measure" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "localityUnits" + } + } + } + }, + "vElevation": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vElevation.name", + "defaultMessage": "Elevation" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minElevationInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minElevationInMeters.name", + "defaultMessage": "Min elevation (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxElevationInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxElevationInMeters.name", + "defaultMessage": "Max elevation (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vDepth": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vDepth.name", + "defaultMessage": "Depth" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDepthInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minDepthInMeters.name", + "defaultMessage": "Min depth (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDepthInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxDepthInMeters.name", + "defaultMessage": "Max depth (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vDistanceAboveSurface": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vDistanceAboveSurface.name", + "defaultMessage": "Distance above surface" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "minDistanceAboveSurfaceInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.minDistanceAboveSurfaceInMeters.name", + "defaultMessage": "Min distance above surface (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "maxDistanceAboveSurfaceInMeters": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "name": { + "id": "field.places_common.maxDistanceAboveSurfaceInMeters.name", + "defaultMessage": "Max distance above surface (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSource": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSource.name", + "defaultMessage": "Coordinate source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "vCoordSourceRefId": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.vCoordSourceRefId.name", + "defaultMessage": "Coordinate source detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "placeGeoRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "placeGeoRefGroup": { + "[config]": { + "repeating": true, + "messages": { + "fullName": { + "id": "field.places_common.placeGeoRefGroup.fullName", + "defaultMessage": "Georeference" + } + }, + "view": { + "type": "CompoundInput" + } + }, + "decimalLatitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.places_common.decimalLatitude.fullName", + "defaultMessage": "Georeference decimal latitude" + }, + "name": { + "id": "field.places_common.decimalLatitude.name", + "defaultMessage": "Decimal latitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "decimalLongitude": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.places_common.decimalLongitude.fullName", + "defaultMessage": "Georeference decimal longitude" + }, + "name": { + "id": "field.places_common.decimalLongitude.name", + "defaultMessage": "Decimal longitude" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geodeticDatum": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geodeticDatum.fullName", + "defaultMessage": "Georeference datum" + }, + "name": { + "id": "field.places_common.geodeticDatum.name", + "defaultMessage": "Datum" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geodeticDatums" + } + } + } + }, + "coordUncertaintyInMeters": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.places_common.coordUncertaintyInMeters.fullName", + "defaultMessage": "Georeference uncertainty (m)" + }, + "name": { + "id": "field.places_common.coordUncertaintyInMeters.name", + "defaultMessage": "Uncertainty (m)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "coordPrecision": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.coordPrecision.fullName", + "defaultMessage": "Georeference precision" + }, + "name": { + "id": "field.places_common.coordPrecision.name", + "defaultMessage": "Precision" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "pointRadiusSpatialFit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.pointRadiusSpatialFit.fullName", + "defaultMessage": "Georeference point radius spatial fit" + }, + "name": { + "id": "field.places_common.pointRadiusSpatialFit.name", + "defaultMessage": "Point radius spatial fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintWKT": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintWKT.fullName", + "defaultMessage": "Georeference footprint WKT" + }, + "name": { + "id": "field.places_common.footprintWKT.name", + "defaultMessage": "Footprint WKT" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSRS": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintSRS.fullName", + "defaultMessage": "Georeference footprint SRS" + }, + "name": { + "id": "field.places_common.footprintSRS.name", + "defaultMessage": "Footprint SRS" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "footprintSpatialFit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.footprintSpatialFit.fullName", + "defaultMessage": "Georeference footprint spatial fit" + }, + "name": { + "id": "field.places_common.footprintSpatialFit.name", + "defaultMessage": "Footprint spatial fit" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoReferencedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_common.geoReferencedBy.name", + "defaultMessage": "Georeferenced by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "geoRefDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.places_common.geoRefDateGroup.fullName", + "defaultMessage": "Georeference date" + }, + "name": { + "id": "field.places_common.geoRefDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "geoRefProtocol": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefProtocol.fullName", + "defaultMessage": "Georeference protocol" + }, + "name": { + "id": "field.places_common.geoRefProtocol.name", + "defaultMessage": "Protocol" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geoRefProtocols" + } + } + } + }, + "geoRefSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefSource.fullName", + "defaultMessage": "Georeference source" + }, + "name": { + "id": "field.places_common.geoRefSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefVerificationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefVerificationStatus.fullName", + "defaultMessage": "Georeference verification" + }, + "name": { + "id": "field.places_common.geoRefVerificationStatus.name", + "defaultMessage": "Verification" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "geoRefVerificationStatuses" + } + } + } + }, + "geoRefRemarks": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefRemarks.fullName", + "defaultMessage": "Georeference remarks" + }, + "name": { + "id": "field.places_common.geoRefRemarks.name", + "defaultMessage": "Remarks" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "geoRefPlaceName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_common.geoRefPlaceName.fullName", + "defaultMessage": "Georeference place name" + }, + "name": { + "id": "field.places_common.geoRefPlaceName.name", + "defaultMessage": "Place name" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:places_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/place/domain/nagpra" + } + }, + "basicInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "basicInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.basicInfo.name", + "defaultMessage": "Basic information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraHistoryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraHistory": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.nagpraHistory.name", + "defaultMessage": "NAGPRA inventory history" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "backgroundSummaryList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "backgroundSummary": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.backgroundSummary.name", + "defaultMessage": "Background and records summary" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "landOwnershipInfoList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "landOwnershipInfo": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.landOwnershipInfo.name", + "defaultMessage": "Land ownership information" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "assertionGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionGroup": { + "[config]": { + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "assertionName": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionName.name", + "defaultMessage": "Assertion name" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraassertionnames" + } + } + } + }, + "assertionDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionDescription.name", + "defaultMessage": "Assertion description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionSourceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionSourceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceGroup.name", + "defaultMessage": "Assertion source" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionSourceBy": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionSourceBy.name", + "defaultMessage": "By" + }, + "fullName": { + "id": "field.places_nagpra.assertionSourceBy.fullName", + "defaultMessage": "Assertion by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,person/ulan,organization/local,organization/shared,organization/ulan" + } + } + } + }, + "assertionSourceDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceDate.fullName", + "defaultMessage": "Assertion source date" + }, + "name": { + "id": "field.places_nagpra.assertionSourceDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "assertionSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionSourceNote.fullName", + "defaultMessage": "Assertion source note" + }, + "name": { + "id": "field.places_nagpra.assertionSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "assertionRelatedRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionRelatedRecords.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "assertionReferenceGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "assertionReferenceGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.assertionReferenceGroup.name", + "defaultMessage": "Reference" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "assertionReference": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReference.fullName", + "defaultMessage": "Assertion reference name" + }, + "name": { + "id": "field.places_nagpra.assertionReference.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/worldcat" + } + } + } + }, + "assertionReferenceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.assertionReferenceNote.fullName", + "defaultMessage": "Assertion refence note" + }, + "name": { + "id": "field.places_nagpra.assertionReferenceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + }, + "museumRecordsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "museumRecords": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.museumRecordsList.name", + "defaultMessage": "Museum records" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "manuscriptGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "manuscriptGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.manuscriptGroup.name", + "defaultMessage": "Unpublished manuscript" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "manuscriptReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptReferences.fullName", + "defaultMessage": "Unpublished manuscript reference" + }, + "name": { + "id": "field.places_nagpra.manuscriptReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local," + } + } + } + }, + "manuscriptNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.manuscriptNote.fullName", + "defaultMessage": "Unpublished manuscript note" + }, + "name": { + "id": "field.places_nagpra.manuscriptNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "reportRefGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "reportRefGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.places_nagpra.reportRefGroup.name", + "defaultMessage": "Published report" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "reportReferences": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportReferences.fullName", + "defaultMessage": "Published report reference" + }, + "name": { + "id": "field.places_nagpra.reportReferences.name", + "defaultMessage": "Reference" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local" + } + } + } + }, + "reportNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.places_nagpra.reportNote.fullName", + "defaultMessage": "Published report note" + }, + "name": { + "id": "field.places_nagpra.reportNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.place.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "placeTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "historicalStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nameAbbrev" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nameDateGroup" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeSource" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeOwnerGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeOwnerGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "owner" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "ownershipNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "background", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "basicInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "basicInfo" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistoryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraHistory" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummaryList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "backgroundSummary" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfoList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "landOwnershipInfo" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertions", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionDescription" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionInfo", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionRelatedRecords" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "assertionReference" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "assertionReferenceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "consultedDocs", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "museumRecordsList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "museumRecords" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "manuscriptGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "manuscriptNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroupList", + "subpath": "ns2:places_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "reportRefGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "reportReferences" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "reportNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "style": { + "marginTop": "10px" + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "localityInfo", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vCoordinates" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSys" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vSpatialReferenceSystem" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vElevation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vDepth" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vDistanceAboveSurface" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vUnitofMeasure" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minElevationInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxElevationInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minDepthInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDepthInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "minDistanceAboveSurfaceInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "maxDistanceAboveSurfaceInMeters" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "vCoordSourceRefId" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefInfo", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeGeoRefGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "placeGeoRefGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "decimalLatitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "decimalLongitude" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geodeticDatum" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordUncertaintyInMeters" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "coordPrecision" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "pointRadiusSpatialFit" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintWKT" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSRS" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "footprintSpatialFit" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoReferencedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefProtocol" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefVerificationStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "geoRefRemarks" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "geoRefPlaceName" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.place.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "placeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "place" + }, + "transport": { + "messages": { + "record": { + "name": { + "id": "record.transport.name", + "defaultMessage": "Transport" + }, + "collectionName": { + "id": "record.transport.collectionName", + "defaultMessage": "Transports" + } + }, + "inputTable": { + "transporter": { + "id": "inputTable.transport.transporter", + "defaultMessage": "Transporter" + }, + "authorization": { + "id": "inputTable.transport.authorization", + "defaultMessage": "Authorization" + }, + "departure": { + "id": "inputTable.transport.departure", + "defaultMessage": "Departure" + }, + "arrival": { + "id": "inputTable.transport.arrival", + "defaultMessage": "Arrival" + }, + "finalShippingCost": { + "id": "inputTable.transport.finalShippingCost", + "defaultMessage": "Final shipping cost" + }, + "customsBroker": { + "id": "inputTable.transport.customsBroker", + "defaultMessage": "Customs broker" + }, + "customsDeclaredValue": { + "id": "inputTable.transport.customsDeclaredValue", + "defaultMessage": "Declared value for customs" + }, + "customsFee": { + "id": "inputTable.transport.customsFee", + "defaultMessage": "Customs fee" + } + }, + "panel": { + "info": { + "id": "panel.transport.info", + "defaultMessage": "Transport Information" + }, + "cost": { + "id": "panel.transport.cost", + "defaultMessage": "Cost Information" + } + } + }, + "serviceConfig": { + "serviceName": "Transport", + "servicePath": "transports", + "serviceType": "procedure", + "objectName": "Transport", + "documentName": "transports" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:transports_common/transportReferenceNumber" + }, + { + "op": "eq", + "path": "ns2:transports_common/courierGroupList/courierGroup/courier" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "transportReferenceNumber": { + "messages": { + "label": { + "id": "column.transport.default.transportReferenceNumber", + "defaultMessage": "Transport reference number" + } + }, + "order": 10, + "sortBy": "transports_common:transportReferenceNumber", + "width": 200 + }, + "transporter": { + "messages": { + "label": { + "id": "column.transport.default.transporter", + "defaultMessage": "Transporter" + } + }, + "order": 20, + "sortBy": "transports_common:transporter", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.transport.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "transports_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:transports_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:transports_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:transports_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/transport" + } + }, + "transportReferenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.transports_common.transportReferenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.transports_common.transportReferenceNumber.name", + "defaultMessage": "Transport reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "transport" + } + } + } + }, + "transporter": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporter.fullName", + "defaultMessage": "Transporter name" + }, + "name": { + "id": "field.transports_common.transporter.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "transporterContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporterContact.fullName", + "defaultMessage": "Transporter contact" + }, + "name": { + "id": "field.transports_common.transporterContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transporterContactNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transporterContactNumber.fullName", + "defaultMessage": "Transporter contact number" + }, + "name": { + "id": "field.transports_common.transporterContactNumber.name", + "defaultMessage": "Contact number" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-number" + } + } + } + }, + "transportAuthorizer": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportAuthorizer.fullName", + "defaultMessage": "Transport authorizer" + }, + "name": { + "id": "field.transports_common.transportAuthorizer.name", + "defaultMessage": "Authorizer" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "transportAuthorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportAuthorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.transports_common.transportAuthorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "departurePoint": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.departurePoint.fullName", + "defaultMessage": "Departure point" + }, + "name": { + "id": "field.transports_common.departurePoint.name", + "defaultMessage": "Point" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,place/local" + } + } + } + }, + "transportDepartureDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportDepartureDate.fullName", + "defaultMessage": "Departure date" + }, + "name": { + "id": "field.transports_common.transportDepartureDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transportDepartureTime": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportDepartureTime.fullName", + "defaultMessage": "Departure time" + }, + "name": { + "id": "field.transports_common.transportDepartureTime.name", + "defaultMessage": "Time" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "destination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.destination.fullName", + "defaultMessage": "Arrival point" + }, + "name": { + "id": "field.transports_common.destination.name", + "defaultMessage": "Point" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared,organization/local,organization/shared" + } + } + } + }, + "transportArrivalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.transportArrivalDate.fullName", + "defaultMessage": "Arrival date" + }, + "name": { + "id": "field.transports_common.transportArrivalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "transportArrivalTime": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportArrivalTime.fullName", + "defaultMessage": "Arrival time" + }, + "name": { + "id": "field.transports_common.transportArrivalTime.name", + "defaultMessage": "Time" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "numberOfCrates": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "name": { + "id": "field.transports_common.numberOfCrates.name", + "defaultMessage": "Number of crates/objects" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportMethod": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportMethod.name", + "defaultMessage": "Transport method" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "transportMethodTypes" + } + } + } + }, + "courierGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "courierGroup": { + "[config]": { + "messages": { + "name": { + "id": "fields.transports_common.courierGroup.name", + "defaultMessage": "Courier" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "courier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.courier.fullName", + "defaultMessage": "Courier name" + }, + "name": { + "id": "field.transports_common.courier.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "courierContactNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.courierContactNumber.fullName", + "defaultMessage": "Courier contact number" + }, + "name": { + "id": "field.transports_common.courierContactNumber.name", + "defaultMessage": "Contact number" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transportTrackingNumberGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "transportTrackingNumberGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportTrackingNumberGroup.name", + "defaultMessage": "Tracking number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "transportTrackingNumber": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportTrackingNumber.fullName", + "defaultMessage": "Tracking number" + }, + "name": { + "id": "field.transports_common.transportTrackingNumber.name", + "defaultMessage": "Number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportTrackingNumberNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.transportTrackingNumberNote.fullName", + "defaultMessage": "Tracking number note" + }, + "name": { + "id": "field.transports_common.transportTrackingNumberNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "transportRemarks": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportRemarks.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "transportCostType": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportCostType.name", + "defaultMessage": "Transport cost type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportcosttype" + } + } + } + }, + "finalShippingCostCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.finalShippingCostCurrency.fullName", + "defaultMessage": "Final shipping cost currency" + }, + "name": { + "id": "field.transports_common.finalShippingCostCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "finalShippingCostValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.finalShippingCostValue.fullName", + "defaultMessage": "Final shipping cost value" + }, + "name": { + "id": "field.transports_common.finalShippingCostValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "transportCostResponsibleParty": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.transportCostResponsibleParty.name", + "defaultMessage": "Transport cost responsible party" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportresponsibleparty" + } + } + } + }, + "insuranceCostResponsibleParty": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.insuranceCostResponsibleParty.name", + "defaultMessage": "Insurance/indemnity cost responsible party" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportresponsibleparty" + } + } + } + }, + "additionalCostsGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "additionalCostsGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.additionalCostsGroup.name", + "defaultMessage": "Additional cost" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "additionalCostsType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsType.fullName", + "defaultMessage": "Additional cost type" + }, + "name": { + "id": "field.transports_common.additionalCostsType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "transportadditionalcosttype" + } + } + } + }, + "additionalCostsCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsCurrency.fullName", + "defaultMessage": "Additional cost currency" + }, + "name": { + "id": "field.transports_common.additionalCostsCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "additionalCostsValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.additionalCostsValue.fullName", + "defaultMessage": "Additional cost value" + }, + "name": { + "id": "field.transports_common.additionalCostsValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "customsBroker": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsBroker.fullName", + "defaultMessage": "Customs broker name" + }, + "name": { + "id": "field.transports_common.customsBroker.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "customsBrokerContact": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsBrokerContact.fullName", + "defaultMessage": "Customs broker contact" + }, + "name": { + "id": "field.transports_common.customsBrokerContact.name", + "defaultMessage": "Contact" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared" + } + } + } + }, + "customsDeclaredValueCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsDeclaredValueCurrency.fullName", + "defaultMessage": "Declared value for customs currency" + }, + "name": { + "id": "field.transports_common.customsDeclaredValueCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "customsDeclaredValueAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.customsDeclaredValueAmount.fullName", + "defaultMessage": "Declared value for customs amount" + }, + "name": { + "id": "field.transports_common.customsDeclaredValueAmount.name", + "defaultMessage": "Amount" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "customsFeeCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeCurrency.fullName", + "defaultMessage": "Customs fee currency" + }, + "name": { + "id": "field.transports_common.customsFeeCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "customsFeeValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeValue.fullName", + "defaultMessage": "Customs fee value" + }, + "name": { + "id": "field.transports_common.customsFeeValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "customsFeeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.customsFeeNote.fullName", + "defaultMessage": "Customs fee note" + }, + "name": { + "id": "field.transports_common.customsFeeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "shippingQuoteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "shippingQuoteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.transports_common.shippingQuotesGroup.name", + "defaultMessage": "Shipping quote" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "shippingQuoteProvider": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteProvider.fullName", + "defaultMessage": "Shipping quote provider" + }, + "name": { + "id": "field.transports_common.shippingQuoteProvider.name", + "defaultMessage": "Provider" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "shippingQuoteCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteCurrency.fullName", + "defaultMessage": "Shipping quote currency" + }, + "name": { + "id": "field.transports_common.shippingQuoteCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "shippingQuoteValue": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteValue.fullName", + "defaultMessage": "Shipping quote value" + }, + "name": { + "id": "field.transports_common.shippingQuoteValue.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "shippingQuoteDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.transports_common.shippingQuoteDate.fullName", + "defaultMessage": "Shipping quote date" + }, + "name": { + "id": "field.transports_common.shippingQuoteDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.transport.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportReferenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportMethod" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "numberOfCrates" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporter", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transporter" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporterContact" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transporterContactNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "authorization", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportAuthorizer" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportAuthorizationDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportTrackingNumberNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "departure", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "departurePoint" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportDepartureDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportDepartureTime" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "arrival", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "destination" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportArrivalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportArrivalTime" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "courierGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "courierGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "courier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "courierContactNumber" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "transportRemarks" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cost", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "transportCostType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "transportCostResponsibleParty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "insuranceCostResponsibleParty" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCost", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCostCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "finalShippingCostValue" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsBroker", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsBroker" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsBrokerContact" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValue", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValueCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsDeclaredValueAmount" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFee", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "customsFeeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "additionalCostsValue" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteProvider" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "shippingQuoteDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "transport" + }, + "uoc": { + "messages": { + "record": { + "name": { + "id": "record.uoc.name", + "defaultMessage": "Use of Collections" + }, + "collectionName": { + "id": "record.uoc.collectionName", + "defaultMessage": "Use of Collections" + } + }, + "panel": { + "useOfCollections": { + "id": "panel.uoc.useOfCollections", + "defaultMessage": "Use of Collections Information" + } + }, + "inputTable": { + "authorizedBy": { + "id": "inputTable.uoc.authorizedBy", + "defaultMessage": "Authorization" + }, + "user": { + "id": "inputTable.uoc.user", + "defaultMessage": "User" + } + } + }, + "serviceConfig": { + "serviceName": "Uoc", + "servicePath": "uoc", + "serviceType": "procedure", + "objectName": "Uoc", + "documentName": "uoc" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:uoc_common/referenceNumber" + }, + { + "op": "eq", + "path": "ns2:uoc_common/userGroupList/userGroup/user" + }, + { + "op": "eq", + "path": "ns2:uoc_common/authorizationGroupList/authorizationGroup/authorizedBy" + }, + { + "op": "eq", + "path": "ns2:uoc_common/staffGroupList/staffGroup/staffName" + }, + { + "op": "eq", + "path": "ns2:uoc_common/obligationsFulfilled" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "referenceNumber": { + "messages": { + "label": { + "id": "column.uoc.default.referenceNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "uoc_common:referenceNumber", + "width": 200 + }, + "title": { + "messages": { + "label": { + "id": "column.uoc.default.title", + "defaultMessage": "Title" + } + }, + "order": 20, + "sortBy": "uoc_common:title", + "width": 300 + }, + "authorizedBy": { + "messages": { + "label": { + "id": "column.uoc.default.authorizedBy", + "defaultMessage": "Authorized by" + } + }, + "order": 30, + "sortBy": "uoc_common:authorizationGroupList/0/authorizedBy", + "width": 300 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.exhibition.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:uoc_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:uoc_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:uoc_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/uoc" + } + }, + "referenceNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.uoc_common.referenceNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.uoc_common.referenceNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "uoc" + } + } + } + }, + "projectId": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.projectId.name", + "defaultMessage": "Project ID" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocprojectid" + } + } + } + }, + "projectDescription": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.projectDescription.name", + "defaultMessage": "Project description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "methodList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "method": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.method.name", + "defaultMessage": "Method" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocmethods" + } + } + } + } + }, + "title": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.uoc_common.title.name", + "defaultMessage": "Title" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "authorizationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "authorizationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.authorizationGroup.name", + "defaultMessage": "Authorization" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "authorizedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.authorizedBy.name", + "defaultMessage": "Authorized by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "authorizationDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationDate.fullName", + "defaultMessage": "Authorization date" + }, + "name": { + "id": "field.uoc_common.authorizationDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "authorizationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationNote.fullName", + "defaultMessage": "Authorization note" + }, + "name": { + "id": "field.uoc_common.authorizationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "authorizationStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.authorizationStatus.fullName", + "defaultMessage": "Authorization status" + }, + "name": { + "id": "field.uoc_common.authorizationStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocauthorizationstatuses" + } + } + } + } + } + }, + "useDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "useDateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.useDateGroup.name", + "defaultMessage": "Start/ongoing date" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "useDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.uoc_common.useDate.fullName", + "defaultMessage": "Start/ongoing date" + }, + "name": { + "id": "field.uoc_common.useDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "useDateTimeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateTimeNote.fullName", + "defaultMessage": "Start/ongoing date time note" + }, + "name": { + "id": "field.uoc_common.useDateTimeNote.name", + "defaultMessage": "Time note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "useDateNumberOfVisitors": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateNumberOfVisitors.fullName", + "defaultMessage": "Start/ongoing date no. of visitors" + }, + "name": { + "id": "field.uoc_common.useDateNumberOfVisitors.name", + "defaultMessage": "No. of visitors" + } + }, + "dataType": "DATA_TYPE_INT", + "view": { + "type": "TextInput" + } + } + }, + "useDateHoursSpent": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.hoursSpent.fullName", + "defaultMessage": "Start/ongoing date hours spent" + }, + "name": { + "id": "field.uoc_common.hoursSpent.name", + "defaultMessage": "Hours spent" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "useDateVisitorNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.useDateVisitorNote.fullName", + "defaultMessage": "Start/ongoing date visitor note" + }, + "name": { + "id": "field.uoc_common.useDateVisitorNote.name", + "defaultMessage": "Visitor note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "endDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.endDate.name", + "defaultMessage": "End date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "userGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "userGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.userGroup.name", + "defaultMessage": "User" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "user": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.user.fullName", + "defaultMessage": "User name" + }, + "name": { + "id": "field.uoc_common.user.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "userInstitutionRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userInstitutionRole.fullName", + "defaultMessage": "User institution role" + }, + "name": { + "id": "field.uoc_common.userInstitutionRole.name", + "defaultMessage": "Institution role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocusertypes" + } + } + } + }, + "userUocRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userUocRole.fullName", + "defaultMessage": "User role" + }, + "name": { + "id": "field.uoc_common.userUocRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocuserroles" + } + } + } + }, + "userInstitution": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.userInstitution.fullName", + "defaultMessage": "User institution" + }, + "name": { + "id": "field.uoc_common.userInstitution.name", + "defaultMessage": "Institution" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared" + } + } + } + } + } + }, + "locationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "location": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.location.name", + "defaultMessage": "Location" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "organization/local,organization/shared,place/local,place/shared,location/local" + } + } + } + } + }, + "note": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.note.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "provisos": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.provisos.name", + "defaultMessage": "Provisos" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "result": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.result.name", + "defaultMessage": "Result" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateRequested": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.dateRequested.name", + "defaultMessage": "Date requested" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "dateCompleted": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.uoc_common.dateCompleted.name", + "defaultMessage": "Date completed" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "occasionList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "occasion": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.occasion.name", + "defaultMessage": "Occasion" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/occasion" + } + } + } + } + }, + "obligationsFulfilled": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.obligationsFulfilled.name", + "defaultMessage": "Obligations fulfilled" + } + }, + "dataType": "DATA_TYPE_BOOL", + "view": { + "type": "CheckboxInput" + } + } + }, + "staffGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "staffGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.staffGroup.name", + "defaultMessage": "Staff" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "staffName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffName.fullName", + "defaultMessage": "Staff name" + }, + "name": { + "id": "field.uoc_common.staffName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "staffRole": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffRole.fullName", + "defaultMessage": "Staff role" + }, + "name": { + "id": "field.uoc_common.staffRole.name", + "defaultMessage": "Role" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocstaffroles" + } + } + } + }, + "staffHours": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffHours.fullName", + "defaultMessage": "Staff hours spent" + }, + "name": { + "id": "field.uoc_common.staffHours.name", + "defaultMessage": "Hours spent" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "staffNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.staffNote.fullName", + "defaultMessage": "Staff note" + }, + "name": { + "id": "field.uoc_common.staffNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "collectionTypeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "collectionType": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.collectionType.name", + "defaultMessage": "Collection type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uoccollectiontypes" + } + } + } + } + }, + "materialTypeList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "materialType": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.materialType.name", + "defaultMessage": "Material type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocmaterialtypes" + } + } + } + } + }, + "feeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "feeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.feeGroup.name", + "defaultMessage": "Fee charged" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "feeCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeCurrency.fullName", + "defaultMessage": "Fee currency" + }, + "name": { + "id": "field.uoc_common.feeCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "feeValue": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeValue.fullName", + "defaultMessage": "Fee value" + }, + "name": { + "id": "field.uoc_common.feeValue.name", + "defaultMessage": "Value" + } + }, + "dataType": "DATA_TYPE_FLOAT", + "view": { + "type": "TextInput" + } + } + }, + "feeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feeNote.fullName", + "defaultMessage": "Fee note" + }, + "name": { + "id": "field.uoc_common.feeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "feePaid": { + "[config]": { + "messages": { + "fullName": { + "id": "field.uoc_common.feePaid.fullName", + "defaultMessage": "Fee paid" + }, + "name": { + "id": "field.uoc_common.feePaid.name", + "defaultMessage": "Paid" + } + }, + "dataType": "DATA_TYPE_BOOL", + "view": { + "type": "CheckboxInput" + } + } + } + } + }, + "subcollection": { + "[config]": { + "messages": { + "name": { + "id": "field.uoc_common.subcollection.name", + "defaultMessage": "Subcollection" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "uocsubcollections" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.uoc.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "useOfCollections", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "referenceNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "methodList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "method" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "collectionTypeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "collectionType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "projectId" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "subcollection" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialTypeList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "materialType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "userGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "user" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userUocRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userInstitution" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "userInstitutionRole" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "title" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateRequested" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateCompleted" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "occasionList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "occasion" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "projectDescription" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "authorizationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "authorizedBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "authorizationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "useDateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "useDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateTimeNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateNumberOfVisitors" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateHoursSpent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "useDateVisitorNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "endDate" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "staffGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "staffName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffRole" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffHours" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "staffNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "locationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "location" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "feeGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "feeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "feeCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feeValue" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feePaid" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "feeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "note" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "provisos" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "obligationsFulfilled" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "result" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "uoc" + }, + "procedure": { + "messages": { + "record": { + "name": { + "id": "record.procedure.name", + "defaultMessage": "Procedure" + }, + "collectionName": { + "id": "record.procedure.collectionName", + "defaultMessage": "Procedures" + } + } + }, + "serviceConfig": { + "servicePath": "servicegroups/procedure/items", + "serviceType": "utility", + "objectName": "ServiceGroup/Procedure" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "docNumber": { + "messages": { + "label": { + "id": "column.procedure.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 20, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.procedure.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 30, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.procedure.default.docType", + "defaultMessage": "Type" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.procedure.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + }, + "narrow": { + "docNumber": { + "messages": { + "label": { + "id": "column.procedure.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.procedure.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.procedure.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.procedure.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 40, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core" + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + } + } + }, + "name": "procedure" + }, + "relation": { + "messages": { + "record": { + "name": { + "id": "record.relation.name", + "defaultMessage": "Relation" + }, + "collectionName": { + "id": "record.relation.collectionName", + "defaultMessage": "Relations" + } + } + }, + "serviceConfig": { + "servicePath": "relations", + "serviceType": "utility" + }, + "deletePermType": "all", + "name": "relation" + }, + "report": { + "messages": { + "record": { + "name": { + "id": "record.report.name", + "defaultMessage": "Report" + }, + "collectionName": { + "id": "record.report.collectionName", + "defaultMessage": "Reports" + }, + "invokeUnsaved": { + "id": "record.report.invokeUnsaved", + "defaultMessage": "This record has changes that have not been saved. The report will not include any unsaved data." + }, + "singleTargetMissing": { + "id": "record.report.singleTargetMissing", + "defaultMessage": "Select a record on which to run this report." + }, + "listTargetMissing": { + "id": "record.report.listTargetMissing", + "defaultMessage": "Select one or more records on which to run this report." + }, + "groupTargetMissing": { + "id": "record.report.groupTargetMissing", + "defaultMessage": "Select a group on which to run this report." + } + }, + "panel": { + "mode": { + "id": "panel.report.mode", + "defaultMessage": "Runs on" + } + } + }, + "serviceConfig": { + "servicePath": "reports", + "serviceType": "utility" + }, + "columns": { + "default": { + "name": { + "messages": { + "label": { + "id": "column.report.default.name", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "reports_common:name", + "width": 400 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:reports_common" + } + } + }, + "ns2:reports_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/report" + }, + "view": { + "type": "CompoundInput" + } + }, + "name": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.name.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "filename": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.filename.name", + "defaultMessage": "Jasper report file" + } + }, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + }, + "notes": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.notes.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "supportsNoContext": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsNoContext.name", + "defaultMessage": "All records" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsGroup": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsGroup.name", + "defaultMessage": "Group" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsDocList": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsDocList.name", + "defaultMessage": "Record list" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "supportsSingleDoc": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.reports_common.supportsSingleDoc.name", + "defaultMessage": "Single record" + } + }, + "view": { + "type": "CheckboxInput", + "props": { + "readOnly": true + } + } + } + }, + "forDocTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "forDocType": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.forDocType.name", + "defaultMessage": "For record type" + } + }, + "repeating": true, + "view": { + "type": "ObjectNameInput", + "props": { + "readOnly": true + } + } + } + } + }, + "outputMIME": { + "[config]": { + "messages": { + "name": { + "id": "field.reports_common.outputMIME.name", + "defaultMessage": "Default output format" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "reportMimeTypes", + "readOnly": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.report.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "name" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "filename" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "notes" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mode", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "supportsNoContext" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsDocList" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "supportsSingleDoc" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocTypes", + "children": { + "key": null, + "ref": null, + "props": { + "name": "forDocType" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "outputMIME" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "report" + }, + "reportinvocation": { + "messages": { + "record": { + "name": { + "id": "record.reportinvocation.name", + "defaultMessage": "Report Invocation" + }, + "collectionName": { + "id": "record.reportinvocation.collectionName", + "defaultMessage": "Report Invocations" + } + } + }, + "serviceConfig": { + "servicePath": "reports/invoke", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "reportinvocation" + }, + "structureddates": { + "messages": { + "record": { + "name": { + "id": "record.structureddates.name", + "defaultMessage": "Structured Date Parser" + }, + "collectionName": { + "id": "record.structureddates.collectionName", + "defaultMessage": "Structured Date Parser" + } + } + }, + "serviceConfig": { + "servicePath": "structureddates", + "serviceType": "utility" + }, + "deletePermType": "hard", + "name": "structureddates" + }, + "valuation": { + "messages": { + "record": { + "name": { + "id": "record.valuation.name", + "defaultMessage": "Valuation Control" + }, + "collectionName": { + "id": "record.valuation.collectionName", + "defaultMessage": "Valuation Controls" + } + }, + "panel": { + "info": { + "id": "panel.valuation.info", + "defaultMessage": "Object Valuation Information" + } + } + }, + "serviceConfig": { + "serviceName": "Valuationcontrols", + "servicePath": "valuationcontrols", + "serviceType": "procedure", + "objectName": "Valuationcontrol", + "documentName": "valuationcontrols" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:valuationcontrols_common/valuationcontrolRefNumber" + }, + { + "op": "range", + "path": "ns2:valuationcontrols_common/valueDate" + }, + { + "op": "range", + "path": "ns2:valuationcontrols_common/valueRenewalDate" + }, + { + "op": "eq", + "path": "ns2:valuationcontrols_common/valueSource" + }, + { + "op": "eq", + "path": "ns2:valuationcontrols_common/valueType" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "valuationcontrolRefNumber": { + "messages": { + "label": { + "id": "column.valuation.default.valuationcontrolRefNumber", + "defaultMessage": "Reference number" + } + }, + "order": 10, + "sortBy": "valuationcontrols_common:valuationcontrolRefNumber", + "width": 250 + }, + "valueType": { + "messages": { + "label": { + "id": "column.valuation.default.valueType", + "defaultMessage": "Type" + } + }, + "order": 20, + "sortBy": "valuationcontrols_common:valueType", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.valuation.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:valuationcontrols_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:valuationcontrols_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:valuationcontrols_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/valuationcontrol" + } + }, + "valuationcontrolRefNumber": { + "[config]": { + "cloneable": false, + "messages": { + "inUse": { + "id": "field.valuationcontrols_common.valuationcontrolRefNumber.inUse", + "defaultMessage": "The reference number {value} is in use by another record." + }, + "name": { + "id": "field.valuationcontrols_common.valuationcontrolRefNumber.name", + "defaultMessage": "Reference number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "valuationcontrol" + } + } + } + }, + "valueAmountsList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "valueAmounts": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueAmounts.name", + "defaultMessage": "Amount" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "valueCurrency": { + "[config]": { + "messages": { + "fullName": { + "id": "field.valuationcontrols_common.valueCurrency.fullName", + "defaultMessage": "Amount currency" + }, + "name": { + "id": "field.valuationcontrols_common.valueCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "currency" + } + } + } + }, + "valueAmount": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.valuationcontrols_common.valueAmount.fullName", + "defaultMessage": "Amount value" + }, + "name": { + "id": "field.valuationcontrols_common.valueAmount.name", + "defaultMessage": "Value" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "valueDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "valueRenewalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueRenewalDate.name", + "defaultMessage": "Renewal date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "valueSource": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "valueType": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "valueTypes" + } + } + } + }, + "valueNote": { + "[config]": { + "messages": { + "name": { + "id": "field.valuationcontrols_common.valueNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.valuation.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valuationcontrolRefNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueAmountsList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "valueAmounts", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valueCurrency" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueAmount" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueRenewalDate" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "valueSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "valueNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + } + }, + "name": "valuation" + }, + "vocabulary": { + "messages": { + "record": { + "name": { + "id": "record.vocabulary.name", + "defaultMessage": "Term List" + }, + "collectionName": { + "id": "record.vocabulary.collectionName", + "defaultMessage": "Term Lists" + } + } + }, + "serviceConfig": { + "servicePath": "vocabularies", + "serviceType": "utility" + }, + "columns": { + "default": { + "displayName": { + "messages": { + "label": { + "id": "column.vocabulary.default.displayName", + "defaultMessage": "Name" + } + }, + "order": 10, + "sortBy": "vocabularies_common:displayName", + "width": 250 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:vocabularies_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:vocabularies_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:vocabularies_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/vocabulary" + }, + "view": { + "type": "CompoundInput" + } + }, + "displayName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.vocabularies_common.displayName.name", + "defaultMessage": "Name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularies_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularies_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "ns2:abstract-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/jaxb" + }, + "view": { + "type": "CompoundInput" + } + }, + "list-item": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.list-item.name", + "defaultMessage": "Terms" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true, + "sortableFields": { + "displayName": true + } + } + } + }, + "displayName": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.displayName.name", + "defaultMessage": "Name" + }, + "fullName": { + "id": "field.vocabularyitems_common.displayName.fullName", + "defaultMessage": "Term name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "description": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.description.name", + "defaultMessage": "Description" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "source": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.source.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "sourcePage": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.sourcePage.name", + "defaultMessage": "Source page" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.vocabularyitems_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "vocabTermStatuses" + } + } + } + }, + "referenced": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "defaultValue": true + } + }, + "workflowState": { + "[config]": { + "view": { + "type": "WorkflowStateInput" + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.vocabulary.default.name", + "defaultMessage": "Standard Template" + } + } + } + }, + "name": "vocabulary" + }, + "work": { + "messages": { + "record": { + "name": { + "id": "record.work.name", + "defaultMessage": "Work" + }, + "collectionName": { + "id": "record.work.collectionName", + "defaultMessage": "Works" + } + }, + "panel": { + "info": { + "id": "panel.work.info", + "defaultMessage": "Work Information" + }, + "hierarchy": { + "id": "panel.work.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.work.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Works", + "servicePath": "workauthorities", + "serviceType": "authority", + "objectName": "Workitem", + "documentName": "works" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.work.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.work.all.collectionName", + "defaultMessage": "All Works" + }, + "itemName": { + "id": "vocab.work.all.itemName", + "defaultMessage": "Work" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.work.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.work.local.collectionName", + "defaultMessage": "Local Works" + }, + "itemName": { + "id": "vocab.work.local.itemName", + "defaultMessage": "Local Work" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(work)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "cona": { + "messages": { + "name": { + "id": "vocab.work.cona.name", + "defaultMessage": "CONA" + }, + "collectionName": { + "id": "vocab.work.cona.collectionName", + "defaultMessage": "CONA Works" + }, + "itemName": { + "id": "vocab.work.cona.itemName", + "defaultMessage": "CONA Work" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(cona_work)" + }, + "name": "cona", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termDisplayName" + }, + { + "op": "cont", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termName" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:works_common/workTermGroupList/workTermGroup/termLanguage" + }, + { + "op": "eq", + "path": "ns2:works_common/workType" + }, + { + "op": "range", + "path": "ns2:works_common/workDateGroupList/workDateGroup" + }, + { + "op": "eq", + "path": "ns2:works_common/creatorGroupList/creatorGroup/creator" + }, + { + "op": "eq", + "path": "ns2:works_common/publisherGroupList/publisherGroup/publisher" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.work.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "works_common:workTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.work.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "works_common:workTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.work.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.work.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:works_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.work.parent", + "defaultMessage": "Broader work" + }, + "children": { + "id": "hierarchyInput.work.children", + "defaultMessage": "Narrower works" + }, + "siblings": { + "id": "hierarchyInput.work.siblings", + "defaultMessage": "Adjacent works" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:works_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:works_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + } + }, + "workTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.works_common.workTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "workTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.works_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.works_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-name" + } + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.works_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.works_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "worktermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.works_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "workTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.works_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.works_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.works_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.works_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.works_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.works_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.works_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.works_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.works_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.works_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.works_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.works_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "workType": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workType.name", + "defaultMessage": "Work type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "worktype" + } + } + } + }, + "workDateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "workDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "name": { + "id": "field.works_common.workDateGroup.name", + "defaultMessage": "Work date" + } + }, + "repeating": true, + "view": { + "type": "StructuredDateInput" + } + } + } + } + } + }, + "workHistoryNote": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.workHistoryNote.name", + "defaultMessage": "History note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "creatorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "creatorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.creatorGroup.name", + "defaultMessage": "Creator" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "creator": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.creator.fullName", + "defaultMessage": "Creator name" + }, + "name": { + "id": "field.works_common.creator.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "creatorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.creatorType.fullName", + "defaultMessage": "Creator type" + }, + "name": { + "id": "field.works_common.creatorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "workcreatortype" + } + } + } + } + } + }, + "publisherGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "publisherGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.works_common.publisherGroup.name", + "defaultMessage": "Publisher" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "publisher": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.publisher.fullName", + "defaultMessage": "Publisher name" + }, + "name": { + "id": "field.works_common.publisher.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "publisherType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.works_common.publisherType.fullName", + "defaultMessage": "Publisher type" + }, + "name": { + "id": "field.works_common.publisherType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "workpublishertype" + } + } + } + } + } + }, + "addrGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + }, + "extensionName": "address", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/work" + } + } + }, + "addrGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.address.addrGroup.name", + "defaultMessage": "Address" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "addressType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressType.fullName", + "defaultMessage": "Address type" + }, + "name": { + "id": "field.ext.address.addressType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "addresstype" + } + } + } + }, + "addressPlace1": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace1.fullName", + "defaultMessage": "Address line 1" + }, + "name": { + "id": "field.ext.address.addressPlace1.name", + "defaultMessage": "Line 1" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressPlace2": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPlace2.fullName", + "defaultMessage": "Address line 2" + }, + "name": { + "id": "field.ext.address.addressPlace2.name", + "defaultMessage": "Line 2" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "addressMunicipality": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressMunicipality.fullName", + "defaultMessage": "Address municipality" + }, + "name": { + "id": "field.ext.address.addressMunicipality.name", + "defaultMessage": "Municipality" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/tgn" + } + } + } + }, + "addressStateOrProvince": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressStateOrProvince.fullName", + "defaultMessage": "Address state/province" + }, + "name": { + "id": "field.ext.address.addressStateOrProvince.name", + "defaultMessage": "State/Province" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-state", + "source": "place/local,place/tgn" + } + } + } + }, + "addressPostCode": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressPostCode.fullName", + "defaultMessage": "Address postal code" + }, + "name": { + "id": "field.ext.address.addressPostCode.name", + "defaultMessage": "Postal code" + } + }, + "view": { + "type": "TextInput", + "props": { + "autoComplete": "cspace-postcode" + } + } + } + }, + "addressCountry": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.address.addressCountry.fullName", + "defaultMessage": "Address country" + }, + "name": { + "id": "field.ext.address.addressCountry.name", + "defaultMessage": "Country" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "autoComplete": "cspace-country", + "source": "place/local,place/tgn" + } + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.work.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workDateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "workDateGroup" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workHistoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "creatorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "creatorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "creator" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "creatorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisherGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "publisherGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "publisher" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "publisherType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addrGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "addrGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace1" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPlace2" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressMunicipality" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "addressStateOrProvince" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressPostCode" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "addressCountry" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "addressType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.work.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "0", + "repeating": false, + "subpath": [ + "ns2:works_common", + "workDateGroupList", + "workDateGroup" + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workHistoryNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "work" + }, + "osteology": { + "messages": { + "record": { + "name": { + "id": "record.osteology.name", + "defaultMessage": "Osteology" + }, + "collectionName": { + "id": "record.osteology.collectionName", + "defaultMessage": "Osteology" + } + }, + "inputTable": { + "completeness": { + "id": "inputTable.osteology.completeness", + "defaultMessage": "Completeness" + }, + "dentition": { + "id": "inputTable.osteology.dentition", + "defaultMessage": "Dentition" + }, + "mortuaryTreatment": { + "id": "inputTable.osteology.mortuaryTreatment", + "defaultMessage": "Mortuary treatment" + }, + "behrensmeyer": { + "id": "inputTable.osteology.behrensmeyer", + "defaultMessage": "Behrensmeyer stage" + }, + "trepanationDimension": { + "id": "inputTable.osteology.trepanationDimension", + "defaultMessage": "Dimension (mm)" + } + }, + "panel": { + "info": { + "id": "panel.osteology.info", + "defaultMessage": "Osteology Information" + }, + "inventory": { + "id": "panel.osteology.inventory", + "defaultMessage": "Inventory" + }, + "modification": { + "id": "panel.osteology.modification", + "defaultMessage": "Cultural Modification Information" + }, + "cranialDeform": { + "id": "panel.osteology.cranialDeform", + "defaultMessage": "Cranial Deformation Information" + }, + "trepanation": { + "id": "panel.osteology.trepanation", + "defaultMessage": "Trepanation Information" + } + } + }, + "serviceConfig": { + "serviceName": "Osteology", + "servicePath": "osteology", + "serviceType": "procedure", + "objectName": "Osteology", + "documentName": "osteology" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:osteology_common/InventoryID" + }, + { + "op": "eq", + "path": "ns2:osteology_common/inventoryAnalyst" + }, + { + "op": "range", + "path": "ns2:osteology_common/inventoryDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "InventoryID": { + "messages": { + "label": { + "id": "column.osteology.default.InventoryID", + "defaultMessage": "Inventory ID" + } + }, + "order": 10, + "sortBy": "osteology_common:InventoryID", + "width": 250 + }, + "inventoryDate": { + "messages": { + "label": { + "id": "column.osteology.default.inventoryDate", + "defaultMessage": "Date" + } + }, + "order": 20, + "sortBy": "osteology_common:inventoryDate", + "width": 400 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.group.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:osteology_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:osteology_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:osteology_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/osteology" + } + }, + "InventoryID": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.osteology_common.InventoryID.name", + "defaultMessage": "Inventory ID" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "osteoAgeEstimateGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.osteoAgeEstimateGroup.name", + "defaultMessage": "Age estimate" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "osteoAgeEstimateVerbatim": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateVerbatim.fullName", + "defaultMessage": "Age estimate verbatim" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateVerbatim.name", + "defaultMessage": "Verbatim" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateLower": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateLower.fullName", + "defaultMessage": "Age estimate lower" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateLower.name", + "defaultMessage": "Lower (years)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateUpper": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateUpper.fullName", + "defaultMessage": "Age estimate upper" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateUpper.name", + "defaultMessage": "Upper (years)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "osteoAgeEstimateDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.fullName", + "defaultMessage": "Age estimate date" + }, + "groupName": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "osteoAgeEstimateAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateAnalyst.fullName", + "defaultMessage": "Age estimate analyst" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "osteoAgeEstimateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.osteoAgeEstimateNote.fullName", + "defaultMessage": "Age estimate note" + }, + "name": { + "id": "field.osteology_common.osteoAgeEstimateNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "sexDeterminationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "sexDeterminationGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.sexDeterminationGroup.name", + "defaultMessage": "Sex determination" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "sexDetermination": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDetermination.fullName", + "defaultMessage": "Sex determination" + }, + "name": { + "id": "field.osteology_common.sexDetermination.name", + "defaultMessage": "Sex" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "sexDeterminations" + } + } + } + }, + "sexDeterminationDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationDateGroup.fullName", + "defaultMessage": "Sex determination date" + }, + "groupName": { + "id": "field.osteology_common.sexDeterminationDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.osteology_common.sexDeterminationDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "sexDeterminationAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationAnalyst.fullName", + "defaultMessage": "Sex determination analyst" + }, + "name": { + "id": "field.osteology_common.sexDeterminationAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "sexDeterminationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.sexDeterminationNote.fullName", + "defaultMessage": "Sex determination note" + }, + "name": { + "id": "field.osteology_common.sexDeterminationNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "completeness": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.completeness.fullName", + "defaultMessage": "Completeness level" + }, + "name": { + "id": "field.osteology_common.completeness.name", + "defaultMessage": "Level" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "osteocompleteness" + } + } + } + }, + "completenessNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.completenessNote.fullName", + "defaultMessage": "Completeness note" + }, + "name": { + "id": "field.osteology_common.completenessNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "molarsPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_common.molarsPresent.name", + "defaultMessage": "Molars present" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dentitionScore": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.dentitionScore.fullName", + "defaultMessage": "Dentition score" + }, + "name": { + "id": "field.osteology_common.dentitionScore.name", + "defaultMessage": "Score" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dentitionscore" + } + } + } + }, + "dentitionNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.dentitionNote.fullName", + "defaultMessage": "Dentition note" + }, + "name": { + "id": "field.osteology_common.dentitionNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "mortuaryTreatment": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.mortuaryTreatment.fullName", + "defaultMessage": "Mortuary treatment" + }, + "name": { + "id": "field.osteology_common.mortuaryTreatment.name", + "defaultMessage": "Treatment" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "mortuarytreatment" + } + } + } + }, + "mortuaryTreatmentNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.mortuaryTreatmentNote.fullName", + "defaultMessage": "Mortuary treatment note" + }, + "name": { + "id": "field.osteology_common.mortuaryTreatmentNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "behrensmeyerSingleLower": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.behrensmeyerSingleLower.fullName", + "defaultMessage": "Behrensmeyer stage - Single/lower" + }, + "name": { + "id": "field.osteology_common.behrensmeyerSingleLower.name", + "defaultMessage": "Single/lower" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "behrensmeyerUpper": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.behrensmeyerUpper.fullName", + "defaultMessage": "Behrensmeyer stage - Upper" + }, + "name": { + "id": "field.osteology_common.behrensmeyerUpper.name", + "defaultMessage": "Upper" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "behrensmeyer" + } + } + } + }, + "NotesOnElementInventory": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.NotesOnElementInventory.name", + "defaultMessage": "Inventory note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "pathologyNote": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.pathologyNote.name", + "defaultMessage": "General pathology and trauma note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "InventoryIsComplete": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_common.InventoryIsComplete.name", + "defaultMessage": "Inventory complete" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "inventoryAnalyst": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_common.inventoryAnalyst.fullName", + "defaultMessage": "Inventory analyst" + }, + "name": { + "id": "field.osteology_common.inventoryAnalyst.name", + "defaultMessage": "Analyst" + } + }, + "required": false, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local" + } + } + } + }, + "inventoryDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.osteology_common.inventoryDate.fullName", + "defaultMessage": "Inventory date" + }, + "name": { + "id": "field.osteology_common.inventoryDate.name", + "defaultMessage": "Date" + } + }, + "required": false, + "view": { + "type": "DateInput" + } + } + }, + "Acetabulum_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Acetabulum_L.name", + "defaultMessage": "Acetabulum left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Acetabulum_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Acetabulum_R.name", + "defaultMessage": "Acetabulum right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Auricular_surf_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Auricular_surf_L.name", + "defaultMessage": "Auricular surf. left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Auricular_surf_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Auricular_surf_R.name", + "defaultMessage": "Auricular surf. right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_L_arch.name", + "defaultMessage": "C1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_R_arch.name", + "defaultMessage": "C1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C1_complete.name", + "defaultMessage": "C1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_L_arch.name", + "defaultMessage": "C2 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_R_arch.name", + "defaultMessage": "C2 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_centrum.name", + "defaultMessage": "C2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C2_complete.name", + "defaultMessage": "C2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_L_arch.name", + "defaultMessage": "C3-6 (~3) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_R_arch.name", + "defaultMessage": "C3-6 (~3) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_centrum.name", + "defaultMessage": "C3-6 (~3) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C3_complete.name", + "defaultMessage": "C3-6 (~3)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_L_arch.name", + "defaultMessage": "C3-6 (~4) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_R_arch.name", + "defaultMessage": "C3-6 (~4) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_centrum.name", + "defaultMessage": "C3-6 (~4) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C4_complete.name", + "defaultMessage": "C3-6 (~4)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_L_arch.name", + "defaultMessage": "C3-6 (~5) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_R_arch.name", + "defaultMessage": "C3-6 (~5) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_centrum.name", + "defaultMessage": "C3-6 (~5) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C5_complete.name", + "defaultMessage": "C3-6 (~5)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C6_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_L_arch.name", + "defaultMessage": "C3-6 (~6) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_R_arch.name", + "defaultMessage": "C3-6 (~6) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_centrum.name", + "defaultMessage": "C3-6 (~6) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C6_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C6_complete.name", + "defaultMessage": "C3-6 (~6)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C7_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_L_arch.name", + "defaultMessage": "C7 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_R_arch.name", + "defaultMessage": "C7 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_centrum.name", + "defaultMessage": "C7 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "C7_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C7_complete.name", + "defaultMessage": "C7" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "C_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_L_arch_count.name", + "defaultMessage": "C left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "C_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_R_arch_count.name", + "defaultMessage": "C right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "C_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.C_centra_count.name", + "defaultMessage": "C centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Calcaneus_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Calcaneus_L.name", + "defaultMessage": "Calcaneus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Calcaneus_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Calcaneus_R.name", + "defaultMessage": "Calcaneus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Capitate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Capitate_L.name", + "defaultMessage": "Capitate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Capitate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Capitate_R.name", + "defaultMessage": "Capitate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Carpals_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Carpals_L_complete.name", + "defaultMessage": "Carpals left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Carpals_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Carpals_R_complete.name", + "defaultMessage": "Carpals right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Clavicle_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Clavicle_L.name", + "defaultMessage": "Clavicle left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Clavicle_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Clavicle_R.name", + "defaultMessage": "Clavicle right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Coccyx": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Coccyx.name", + "defaultMessage": "Coccyx" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cranium": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cranium.name", + "defaultMessage": "Cranium" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cuboid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cuboid_L.name", + "defaultMessage": "Cuboid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Cuboid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Cuboid_R.name", + "defaultMessage": "Cuboid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ethmoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ethmoid.name", + "defaultMessage": "Ethmoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_JS_D.name", + "defaultMessage": "Femur left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_JS_P.name", + "defaultMessage": "Femur left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_complete.name", + "defaultMessage": "Femur left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Femur_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_D.name", + "defaultMessage": "Femur left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_M.name", + "defaultMessage": "Femur left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_L_shaft_P.name", + "defaultMessage": "Femur left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_JS_D.name", + "defaultMessage": "Femur right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_JS_P.name", + "defaultMessage": "Femur right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_complete.name", + "defaultMessage": "Femur right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Femur_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_D.name", + "defaultMessage": "Femur right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_M.name", + "defaultMessage": "Femur right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Femur_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Femur_R_shaft_P.name", + "defaultMessage": "Femur right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_JS_D.name", + "defaultMessage": "Fibula left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_JS_P.name", + "defaultMessage": "Fibula left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_complete.name", + "defaultMessage": "Fibula left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Fibula_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_D.name", + "defaultMessage": "Fibula left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_M.name", + "defaultMessage": "Fibula left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_L_shaft_P.name", + "defaultMessage": "Fibula left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_JS_D.name", + "defaultMessage": "Fibula right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_JS_P.name", + "defaultMessage": "Fibula right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_complete.name", + "defaultMessage": "Fibula right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Fibula_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_D.name", + "defaultMessage": "Fibula right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_M.name", + "defaultMessage": "Fibula right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Fibula_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Fibula_R_shaft_P.name", + "defaultMessage": "Fibula right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Frontal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Frontal_L.name", + "defaultMessage": "Frontal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Frontal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Frontal_R.name", + "defaultMessage": "Frontal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Glenoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Glenoid_L.name", + "defaultMessage": "Glenoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Glenoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Glenoid_R.name", + "defaultMessage": "Glenoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hamate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hamate_L.name", + "defaultMessage": "Hamate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hamate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hamate_R.name", + "defaultMessage": "Hamate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_JS_D.name", + "defaultMessage": "Humerus left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_JS_P.name", + "defaultMessage": "Humerus left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_complete.name", + "defaultMessage": "Humerus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Humerus_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_D.name", + "defaultMessage": "Humerus left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_M.name", + "defaultMessage": "Humerus left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_L_shaft_P.name", + "defaultMessage": "Humerus left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_JS_D.name", + "defaultMessage": "Humerus right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_JS_P.name", + "defaultMessage": "Humerus right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_complete.name", + "defaultMessage": "Humerus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Humerus_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_D.name", + "defaultMessage": "Humerus right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_M.name", + "defaultMessage": "Humerus right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Humerus_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Humerus_R_shaft_P.name", + "defaultMessage": "Humerus right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Hyoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Hyoid.name", + "defaultMessage": "Hyoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ilium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ilium_L.name", + "defaultMessage": "Ilium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ilium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ilium_R.name", + "defaultMessage": "Ilium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Int_cuneif_2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Int_cuneif_2_L.name", + "defaultMessage": "Int. cuneiform (2) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Int_cuneif_2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Int_cuneif_2_R.name", + "defaultMessage": "Int. cuneiform (2) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ischium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ischium_L.name", + "defaultMessage": "Ischium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ischium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ischium_R.name", + "defaultMessage": "Ischium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_L_arch.name", + "defaultMessage": "L1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_R_arch.name", + "defaultMessage": "L1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_centrum.name", + "defaultMessage": "L1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L1_complete.name", + "defaultMessage": "L1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_L_arch.name", + "defaultMessage": "L2 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_R_arch.name", + "defaultMessage": "L2 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_centrum.name", + "defaultMessage": "L2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L2_complete.name", + "defaultMessage": "L2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_L_arch.name", + "defaultMessage": "L3 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_R_arch.name", + "defaultMessage": "L3 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_centrum.name", + "defaultMessage": "L3 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L3_complete.name", + "defaultMessage": "L3" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_L_arch.name", + "defaultMessage": "L4 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_R_arch.name", + "defaultMessage": "L4 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_centrum.name", + "defaultMessage": "L4 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L4_complete.name", + "defaultMessage": "L4" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_L_arch.name", + "defaultMessage": "L5 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_R_arch.name", + "defaultMessage": "L5 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_centrum.name", + "defaultMessage": "L5 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "L5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L5_complete.name", + "defaultMessage": "L5" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "L_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_L_arch_count.name", + "defaultMessage": "L left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "L_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_R_arch_count.name", + "defaultMessage": "L right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "L_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.L_centra_count.name", + "defaultMessage": "L centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Lacrimal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lacrimal_L.name", + "defaultMessage": "Lacrimal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lacrimal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lacrimal_R.name", + "defaultMessage": "Lacrimal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lat_cuneif_3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lat_cuneif_3_L.name", + "defaultMessage": "Lat. cuneiform (3) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lat_cuneif_3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lat_cuneif_3_R.name", + "defaultMessage": "Lat. cuneiform (3) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lunate_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lunate_L.name", + "defaultMessage": "Lunate left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Lunate_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Lunate_R.name", + "defaultMessage": "Lunate right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC1_L.name", + "defaultMessage": "MC 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC1_R.name", + "defaultMessage": "MC 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC2_L.name", + "defaultMessage": "MC 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC2_R.name", + "defaultMessage": "MC 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC3_L.name", + "defaultMessage": "MC 3 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC3_R.name", + "defaultMessage": "MC 3 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC4_L.name", + "defaultMessage": "MC 4 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC4_R.name", + "defaultMessage": "MC 4 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC5_L.name", + "defaultMessage": "MC 5 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC5_R.name", + "defaultMessage": "MC 5 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MC_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_L_complete.name", + "defaultMessage": "MC left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MC_L_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_L_count.name", + "defaultMessage": "MC left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MC_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_R_complete.name", + "defaultMessage": "MC right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MC_R_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MC_R_count.name", + "defaultMessage": "MC right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MT1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT1_L.name", + "defaultMessage": "MT 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT1_R.name", + "defaultMessage": "MT 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT2_L.name", + "defaultMessage": "MT 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT2_R.name", + "defaultMessage": "MT 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT3_L.name", + "defaultMessage": "MT 3 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT3_R.name", + "defaultMessage": "MT 3 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT4_L.name", + "defaultMessage": "MT 4 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT4_R.name", + "defaultMessage": "MT 4 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT5_L.name", + "defaultMessage": "MT 5 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT5_R.name", + "defaultMessage": "MT 5 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "MT_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_L_complete.name", + "defaultMessage": "MT left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MT_L_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_L_count.name", + "defaultMessage": "MT left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "MT_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_R_complete.name", + "defaultMessage": "MT right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "MT_R_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.MT_R_count.name", + "defaultMessage": "MT right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Mandible_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Mandible_L.name", + "defaultMessage": "Mandible left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Mandible_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Mandible_R.name", + "defaultMessage": "Mandible right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Manubrium": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Manubrium.name", + "defaultMessage": "Manubrium" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Maxilla_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Maxilla_L.name", + "defaultMessage": "Maxilla left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Maxilla_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Maxilla_R.name", + "defaultMessage": "Maxilla right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Med_cuneif_1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Med_cuneif_1_L.name", + "defaultMessage": "Med. cuneiform (1) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Med_cuneif_1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Med_cuneif_1_R.name", + "defaultMessage": "Med. cuneiform (1) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Nasal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Nasal_L.name", + "defaultMessage": "Nasal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Nasal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Nasal_R.name", + "defaultMessage": "Nasal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Navicular_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Navicular_L.name", + "defaultMessage": "Navicular left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Navicular_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Navicular_R.name", + "defaultMessage": "Navicular right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital.name", + "defaultMessage": "Occipital" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_L_pars_lateralis": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_L_pars_lateralis.name", + "defaultMessage": "Occipital pars lateralis left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_R_pars_lateralis": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_R_pars_lateralis.name", + "defaultMessage": "Occipital pars lateralis right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Occipital_pars_basilaris": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Occipital_pars_basilaris.name", + "defaultMessage": "Occipital pars basilaris" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Orbit_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Orbit_L.name", + "defaultMessage": "Orbit left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Orbit_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Orbit_R.name", + "defaultMessage": "Orbit right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Os_coxae_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Os_coxae_L.name", + "defaultMessage": "Os coxae left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Os_coxae_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Os_coxae_R.name", + "defaultMessage": "Os coxae right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Palatine_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Palatine_L.name", + "defaultMessage": "Palatine left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Palatine_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Palatine_R.name", + "defaultMessage": "Palatine right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Parietal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Parietal_L.name", + "defaultMessage": "Parietal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Parietal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Parietal_R.name", + "defaultMessage": "Parietal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Patella_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Patella_L.name", + "defaultMessage": "Patella left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Patella_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Patella_R.name", + "defaultMessage": "Patella right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Phalanx_D_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_D_count_foot.name", + "defaultMessage": "Dist. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_D_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_D_count_hand.name", + "defaultMessage": "Dist. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_I_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_I_count_foot.name", + "defaultMessage": "Int. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_I_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_I_count_hand.name", + "defaultMessage": "Int. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_P_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_P_count_foot.name", + "defaultMessage": "Prox. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_P_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_P_count_hand.name", + "defaultMessage": "Prox. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_juv_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_juv_count_foot.name", + "defaultMessage": "Juv. foot phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Phalanx_juv_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Phalanx_juv_count_hand.name", + "defaultMessage": "Juv. hand phalanges count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Pisiform_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pisiform_L.name", + "defaultMessage": "Pisiform left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pisiform_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pisiform_R.name", + "defaultMessage": "Pisiform right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pubis_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pubis_L.name", + "defaultMessage": "Pubis left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Pubis_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Pubis_R.name", + "defaultMessage": "Pubis right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_JS_D.name", + "defaultMessage": "Radius left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_JS_P.name", + "defaultMessage": "Radius left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_complete.name", + "defaultMessage": "Radius left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Radius_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_D.name", + "defaultMessage": "Radius left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_M.name", + "defaultMessage": "Radius left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_L_shaft_P.name", + "defaultMessage": "Radius left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_JS_D.name", + "defaultMessage": "Radius right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_JS_P.name", + "defaultMessage": "Radius right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_complete.name", + "defaultMessage": "Radius right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Radius_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_D.name", + "defaultMessage": "Radius right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_M.name", + "defaultMessage": "Radius right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Radius_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Radius_R_shaft_P.name", + "defaultMessage": "Radius right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L.name", + "defaultMessage": "Rib 10 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L_head_neck_complete.name", + "defaultMessage": "Rib 10 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_L_sternal_end_complete.name", + "defaultMessage": "Rib 10 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R.name", + "defaultMessage": "Rib 10 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib10_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R_head_neck_complete.name", + "defaultMessage": "Rib 10 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib10_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib10_R_sternal_end_complete.name", + "defaultMessage": "Rib 10 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L.name", + "defaultMessage": "Rib 11 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib11_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L_head_neck_complete.name", + "defaultMessage": "Rib 11 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_L_sternal_end_complete.name", + "defaultMessage": "Rib 11 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R.name", + "defaultMessage": "Rib 11 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib11_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R_head_neck_complete.name", + "defaultMessage": "Rib 11 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib11_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib11_R_sternal_end_complete.name", + "defaultMessage": "Rib 11 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L.name", + "defaultMessage": "Rib 12 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib12_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L_head_neck_complete.name", + "defaultMessage": "Rib 12 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_L_sternal_end_complete.name", + "defaultMessage": "Rib 12 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R.name", + "defaultMessage": "Rib 12 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib12_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R_head_neck_complete.name", + "defaultMessage": "Rib 12 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib12_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib12_R_sternal_end_complete.name", + "defaultMessage": "Rib 12 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L.name", + "defaultMessage": "Rib 1 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib1_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L_head_neck_complete.name", + "defaultMessage": "Rib 1 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_L_sternal_end_complete.name", + "defaultMessage": "Rib 1 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R.name", + "defaultMessage": "Rib 1 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib1_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R_head_neck_complete.name", + "defaultMessage": "Rib 1 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib1_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib1_R_sternal_end_complete.name", + "defaultMessage": "Rib 1 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L.name", + "defaultMessage": "Rib 2 left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib2_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L_head_neck_complete.name", + "defaultMessage": "Rib 2 left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_L_sternal_end_complete.name", + "defaultMessage": "Rib 2 left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R.name", + "defaultMessage": "Rib 2 right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib2_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R_head_neck_complete.name", + "defaultMessage": "Rib 2 right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib2_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib2_R_sternal_end_complete.name", + "defaultMessage": "Rib 2 right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L.name", + "defaultMessage": "Rib 3-9 (~3) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib3_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~3) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~3) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R.name", + "defaultMessage": "Rib 3-9 (~3) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib3_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~3) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib3_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib3_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~3) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L.name", + "defaultMessage": "Rib 3-9 (~4) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib4_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~4) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~4) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R.name", + "defaultMessage": "Rib 3-9 (~4) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib4_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~4) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib4_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib4_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~4) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L.name", + "defaultMessage": "Rib 3-9 (~5) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib5_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~5) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~5) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R.name", + "defaultMessage": "Rib 3-9 (~5) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib5_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~5) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib5_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib5_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~5) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L.name", + "defaultMessage": "Rib 3-9 (~6) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib6_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~6) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~6) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R.name", + "defaultMessage": "Rib 3-9 (~6) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib6_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~6) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib6_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib6_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~6) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L.name", + "defaultMessage": "Rib 3-9 (~7) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib7_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~7) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~7) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R.name", + "defaultMessage": "Rib 3-9 (~7) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib7_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~7) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib7_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib7_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~7) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L.name", + "defaultMessage": "Rib 3-9 (~8) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib8_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~8) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~8) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R.name", + "defaultMessage": "Rib 3-9 (~8) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib8_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~8) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib8_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib8_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~8) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L.name", + "defaultMessage": "Rib 3-9 (~9) left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib9_L_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~9) left head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_L_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_L_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~9) left sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R.name", + "defaultMessage": "Rib 3-9 (~9) right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Rib9_R_head_neck_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R_head_neck_complete.name", + "defaultMessage": "Rib 3-9 (~9) right head/neck complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Rib9_R_sternal_end_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Rib9_R_sternal_end_complete.name", + "defaultMessage": "Rib 3-9 (~9) right sternal end complete" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoCompleteStates" + } + } + } + }, + "Ribs_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ribs_L_complete.name", + "defaultMessage": "Ribs left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ribs_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ribs_R_complete.name", + "defaultMessage": "Ribs right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S1_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_L_ala.name", + "defaultMessage": "S1 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_R_ala.name", + "defaultMessage": "S1 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_centrum.name", + "defaultMessage": "S1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S1_complete.name", + "defaultMessage": "S1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S2_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_L_ala.name", + "defaultMessage": "S2 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_R_ala.name", + "defaultMessage": "S2 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_centrum.name", + "defaultMessage": "S2 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S2_complete.name", + "defaultMessage": "S2" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S3_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_L_ala.name", + "defaultMessage": "S3 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_R_ala.name", + "defaultMessage": "S3 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_centrum.name", + "defaultMessage": "S3 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S3_complete.name", + "defaultMessage": "S3" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S4_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_L_ala.name", + "defaultMessage": "S4 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_R_ala.name", + "defaultMessage": "S4 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_centrum.name", + "defaultMessage": "S4 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S4_complete.name", + "defaultMessage": "S4" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S5_L_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_L_ala.name", + "defaultMessage": "S5 left ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_R_ala": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_R_ala.name", + "defaultMessage": "S5 right ala" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_centrum.name", + "defaultMessage": "S5 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "S5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S5_complete.name", + "defaultMessage": "S5" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "S_L_ala_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_L_ala_count.name", + "defaultMessage": "S left ala count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "S_R_ala_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_R_ala_count.name", + "defaultMessage": "S right ala count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "S_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.S_centra_count.name", + "defaultMessage": "S centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sacrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum.name", + "defaultMessage": "Sacrum centra" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_L_alae": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_L_alae.name", + "defaultMessage": "Sacrum left alae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_R_alae": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_R_alae.name", + "defaultMessage": "Sacrum right alae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sacrum_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sacrum_complete.name", + "defaultMessage": "Sacrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Scaphoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scaphoid_L.name", + "defaultMessage": "Scaphoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scaphoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scaphoid_R.name", + "defaultMessage": "Scaphoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scapula_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scapula_L.name", + "defaultMessage": "Scapula left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Scapula_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Scapula_R.name", + "defaultMessage": "Scapula right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sesamoid_L_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_L_count_foot.name", + "defaultMessage": "Foot sesamoid left count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_L_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_L_count_hand.name", + "defaultMessage": "Hand sesamoid left count " + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_R_count_foot": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_R_count_foot.name", + "defaultMessage": "Foot sesamoid right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sesamoid_R_count_hand": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sesamoid_R_count_hand.name", + "defaultMessage": "Hand sesamoid right count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Sphenoid": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sphenoid.name", + "defaultMessage": "Sphenoid" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Sternum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Sternum.name", + "defaultMessage": "Sternum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_L_arch.name", + "defaultMessage": "T10 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_R_arch.name", + "defaultMessage": "T10 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_centrum.name", + "defaultMessage": "T10 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T10_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T10_complete.name", + "defaultMessage": "T10" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T11_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_L_arch.name", + "defaultMessage": "T11 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_R_arch.name", + "defaultMessage": "T11 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_centrum.name", + "defaultMessage": "T11 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T11_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T11_complete.name", + "defaultMessage": "T11" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T12_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_L_arch.name", + "defaultMessage": "T12 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_R_arch.name", + "defaultMessage": "T12 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_centrum.name", + "defaultMessage": "T12 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T12_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T12_complete.name", + "defaultMessage": "T12" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T1_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_L_arch.name", + "defaultMessage": "T1 left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_R_arch.name", + "defaultMessage": "T1 right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_centrum.name", + "defaultMessage": "T1 centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T1_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T1_complete.name", + "defaultMessage": "T1" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T2_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_L_arch.name", + "defaultMessage": "T2-9 (~2) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_R_arch.name", + "defaultMessage": "T2-9 (~2) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_centrum.name", + "defaultMessage": "T2-9 (~2) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T2_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T2_complete.name", + "defaultMessage": "T2-9 (~2)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T3_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_L_arch.name", + "defaultMessage": "T2-9 (~3) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_R_arch.name", + "defaultMessage": "T2-9 (~3) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_centrum.name", + "defaultMessage": "T2-9 (~3) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T3_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T3_complete.name", + "defaultMessage": "T2-9 (~3)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T4_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_L_arch.name", + "defaultMessage": "T2-9 (~4) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_R_arch.name", + "defaultMessage": "T2-9 (~4) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_centrum.name", + "defaultMessage": "T2-9 (~4) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T4_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T4_complete.name", + "defaultMessage": "T2-9 (~4)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T5_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_L_arch.name", + "defaultMessage": "T2-9 (~5) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_R_arch.name", + "defaultMessage": "T2-9 (~5) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_centrum.name", + "defaultMessage": "T2-9 (~5) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T5_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T5_complete.name", + "defaultMessage": "T2-9 (~5)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T6_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_L_arch.name", + "defaultMessage": "T2-9 (~6) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_R_arch.name", + "defaultMessage": "T2-9 (~6) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_centrum.name", + "defaultMessage": "T2-9 (~6) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T6_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T6_complete.name", + "defaultMessage": "T2-9 (~6)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T7_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_L_arch.name", + "defaultMessage": "T2-9 (~7) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_R_arch.name", + "defaultMessage": "T2-9 (~7) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_centrum.name", + "defaultMessage": "T2-9 (~7) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T7_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T7_complete.name", + "defaultMessage": "T2-9 (~7)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T8_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_L_arch.name", + "defaultMessage": "T2-9 (~8) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_R_arch.name", + "defaultMessage": "T2-9 (~8) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_centrum.name", + "defaultMessage": "T2-9 (~8) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T8_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T8_complete.name", + "defaultMessage": "T2-9 (~8)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T9_L_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_L_arch.name", + "defaultMessage": "T2-9 (~9) left arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_R_arch": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_R_arch.name", + "defaultMessage": "T2-9 (~9) right arch" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_centrum": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_centrum.name", + "defaultMessage": "T2-9 (~9) centrum" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "T9_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T9_complete.name", + "defaultMessage": "T2-9 (~9)" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "T_L_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_L_arch_count.name", + "defaultMessage": "T left arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "T_R_arch_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_R_arch_count.name", + "defaultMessage": "T right arch count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "T_centra_count": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.T_centra_count.name", + "defaultMessage": "T centra count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Talus_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Talus_L.name", + "defaultMessage": "Talus left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Talus_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Talus_R.name", + "defaultMessage": "Talus right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tarsals_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tarsals_L_complete.name", + "defaultMessage": "Tarsals left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tarsals_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tarsals_R_complete.name", + "defaultMessage": "Tarsals right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Teeth_LC_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LC_L.name", + "defaultMessage": "Lower LCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LC_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LC_R.name", + "defaultMessage": "Lower RCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI1_L.name", + "defaultMessage": "Lower LI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI1_R.name", + "defaultMessage": "Lower RI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI2_L.name", + "defaultMessage": "Lower LI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LI2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LI2_R.name", + "defaultMessage": "Lower RI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM1_L.name", + "defaultMessage": "Lower LM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM1_R.name", + "defaultMessage": "Lower RM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM2_L.name", + "defaultMessage": "Lower LM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM2_R.name", + "defaultMessage": "Lower RM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM3_L.name", + "defaultMessage": "Lower LM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LM3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LM3_R.name", + "defaultMessage": "Lower RM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP3_L.name", + "defaultMessage": "Lower LP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP3_R.name", + "defaultMessage": "Lower RP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP4_L.name", + "defaultMessage": "Lower LP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_LP4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_LP4_R.name", + "defaultMessage": "Lower RP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UC_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UC_L.name", + "defaultMessage": "Upper LCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UC_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UC_R.name", + "defaultMessage": "Upper RCx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI1_L.name", + "defaultMessage": "Upper LI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI1_R.name", + "defaultMessage": "Upper RI1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI2_L.name", + "defaultMessage": "Upper LI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UI2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UI2_R.name", + "defaultMessage": "Upper RI2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM1_L.name", + "defaultMessage": "Upper LM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM1_R.name", + "defaultMessage": "Upper RM1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM2_L.name", + "defaultMessage": "Upper LM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM2_R.name", + "defaultMessage": "Upper RM2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM3_L.name", + "defaultMessage": "Upper LM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UM3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UM3_R.name", + "defaultMessage": "Upper RM3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP3_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP3_L.name", + "defaultMessage": "Upper LP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP3_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP3_R.name", + "defaultMessage": "Upper RP3" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP4_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP4_L.name", + "defaultMessage": "Upper LP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_UP4_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_UP4_R.name", + "defaultMessage": "Upper RP4" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldc_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldc_L.name", + "defaultMessage": "Lower Ldcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldc_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldc_R.name", + "defaultMessage": "Lower Rdcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi1_L.name", + "defaultMessage": "Lower Ldi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi1_R.name", + "defaultMessage": "Lower Rdi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi2_L.name", + "defaultMessage": "Lower Ldi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldi2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldi2_R.name", + "defaultMessage": "Lower Rdi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm1_L.name", + "defaultMessage": "Lower Ldm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm1_R.name", + "defaultMessage": "Lower Rdm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm2_L.name", + "defaultMessage": "Lower Ldm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Ldm2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Ldm2_R.name", + "defaultMessage": "Lower Rdm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udc_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udc_L.name", + "defaultMessage": "Upper Ldcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udc_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udc_R.name", + "defaultMessage": "Upper Rdcx" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi1_L.name", + "defaultMessage": "Upper Ldi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi1_R.name", + "defaultMessage": "Upper Rdi1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi2_L.name", + "defaultMessage": "Upper Ldi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udi2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udi2_R.name", + "defaultMessage": "Upper Rdi2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm1_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm1_L.name", + "defaultMessage": "Upper Ldm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm1_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm1_R.name", + "defaultMessage": "Upper Rdm1" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm2_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm2_L.name", + "defaultMessage": "Upper Ldm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_decid_Udm2_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_decid_Udm2_R.name", + "defaultMessage": "Upper Rdm2" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Teeth_immVertFragsCount": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Teeth_immVertFragsCount.name", + "defaultMessage": "Imm. vert. frags count" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "Temporal_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Temporal_L.name", + "defaultMessage": "Temporal left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Temporal_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Temporal_R.name", + "defaultMessage": "Temporal right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_JS_D.name", + "defaultMessage": "Tibia left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_JS_P.name", + "defaultMessage": "Tibia left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_complete.name", + "defaultMessage": "Tibia left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tibia_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_D.name", + "defaultMessage": "Tibia left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_M.name", + "defaultMessage": "Tibia left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_L_shaft_P.name", + "defaultMessage": "Tibia left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_JS_D.name", + "defaultMessage": "Tibia right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_JS_P.name", + "defaultMessage": "Tibia right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_complete.name", + "defaultMessage": "Tibia right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Tibia_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_D.name", + "defaultMessage": "Tibia right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_M.name", + "defaultMessage": "Tibia right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Tibia_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Tibia_R_shaft_P.name", + "defaultMessage": "Tibia right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezium_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezium_L.name", + "defaultMessage": "Trapezium left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezium_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezium_R.name", + "defaultMessage": "Trapezium right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezoid_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezoid_L.name", + "defaultMessage": "Trapezoid left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Trapezoid_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Trapezoid_R.name", + "defaultMessage": "Trapezoid right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Triquetral_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Triquetral_L.name", + "defaultMessage": "Triquetral left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Triquetral_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Triquetral_R.name", + "defaultMessage": "Triquetral right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_JS_D.name", + "defaultMessage": "Ulna left dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_JS_P.name", + "defaultMessage": "Ulna left prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_complete.name", + "defaultMessage": "Ulna left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ulna_L_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_D.name", + "defaultMessage": "Ulna left dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_M.name", + "defaultMessage": "Ulna left mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_L_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_L_shaft_P.name", + "defaultMessage": "Ulna left prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_JS_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_JS_D.name", + "defaultMessage": "Ulna right dist. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_JS_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_JS_P.name", + "defaultMessage": "Ulna right prox. JS" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_complete.name", + "defaultMessage": "Ulna right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Ulna_R_shaft_D": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_D.name", + "defaultMessage": "Ulna right dist. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_shaft_M": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_M.name", + "defaultMessage": "Ulna right mid. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Ulna_R_shaft_P": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Ulna_R_shaft_P.name", + "defaultMessage": "Ulna right prox. 1/3 shaft" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Vertebrae_complete": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Vertebrae_complete.name", + "defaultMessage": "Vertebrae" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoAbsoluteLevels" + } + } + } + }, + "Vomer": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Vomer.name", + "defaultMessage": "Vomer" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Zygomatic_L": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Zygomatic_L.name", + "defaultMessage": "Zygomatic left" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + }, + "Zygomatic_R": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_common.Zygomatic_R.name", + "defaultMessage": "Zygomatic right" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "osteoLevels" + } + } + } + } + }, + "ns2:osteology_anthropology": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/osteology/domain/anthropology" + } + }, + "Notes_DentalPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_DentalPathology.name", + "defaultMessage": "Dental pathology (incl. alveolar)" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CranialPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CranialPathology.name", + "defaultMessage": "Cranial bony pathology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_PostcranialPathology": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_PostcranialPathology.name", + "defaultMessage": "Postcranial bony pathology" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CulturalModifications": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CulturalModifications.name", + "defaultMessage": "Cultural modification" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_NHTaphonomicAlterations": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_NHTaphonomicAlterations.name", + "defaultMessage": "Nonhuman taphonomic alteration" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "Notes_CuratorialSuffixing": { + "[config]": { + "messages": { + "name": { + "id": "field.osteology_anthropology.Notes_CuratorialSuffixing.name", + "defaultMessage": "Curatorial suffixing note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "cranialDeformationPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_anthropology.cranialDeformationPresent.name", + "defaultMessage": "Is any evidence of cranial deformation present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "cranialDeformationCategories": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "cranialDeformationCategory": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.cranialDeformationCategory.fullName", + "defaultMessage": "Cranial deformation general category" + }, + "name": { + "id": "field.osteology_anthropology.cranialDeformationCategory.name", + "defaultMessage": "General category" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "cranialdeformationcategory" + } + } + } + } + }, + "cranialDeformationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.cranialDeformationNote.fullName", + "defaultMessage": "Cranial deformation comment" + }, + "name": { + "id": "field.osteology_anthropology.cranialDeformationNote.name", + "defaultMessage": "Comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "trepanationPresent": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.osteology_anthropology.trepanationPresent.name", + "defaultMessage": "Is any evidence of trepanation present?" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "trepanationGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "trepanationGroup": { + "[config]": { + "repeating": true, + "messages": { + "name": { + "id": "field.osteology_anthropology.trepanationGroup.name", + "defaultMessage": "Trepanation" + } + }, + "view": { + "type": "CompoundInput" + } + }, + "trepanationLocation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationLocation.fullName", + "defaultMessage": "Trepanation location (bone and side)" + }, + "name": { + "id": "field.osteology_anthropology.trepanationLocation.name", + "defaultMessage": "Location (bone and side)" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationDimensionMax": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationDimensionMax.fullName", + "defaultMessage": "Trepanation dimension max." + }, + "groupName": { + "id": "field.osteology_anthropology.trepanationDimensionMax.groupName", + "defaultMessage": "Dimension max." + }, + "name": { + "id": "field.osteology_anthropology.trepanationDimensionMax.name", + "defaultMessage": "Max." + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationDimensionMin": { + "[config]": { + "dataType": "DATA_TYPE_FLOAT", + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationDimensionMin.fullName", + "defaultMessage": "Trepanation dimension min." + }, + "groupName": { + "id": "field.osteology_anthropology.trepanationDimensionMin.groupName", + "defaultMessage": "Dimension min." + }, + "name": { + "id": "field.osteology_anthropology.trepanationDimensionMin.name", + "defaultMessage": "Min." + } + }, + "view": { + "type": "TextInput" + } + } + }, + "trepanationTechnique": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationTechnique.fullName", + "defaultMessage": "Trepanation technique" + }, + "name": { + "id": "field.osteology_anthropology.trepanationTechnique.name", + "defaultMessage": "Technique" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationtechnique" + } + } + } + }, + "trepanationHealing": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationHealing.fullName", + "defaultMessage": "Trepanation healing" + }, + "name": { + "id": "field.osteology_anthropology.trepanationHealing.name", + "defaultMessage": "Healing" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationhealing" + } + } + } + }, + "trepanationCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationCertainty.fullName", + "defaultMessage": "Trepanation certainty" + }, + "name": { + "id": "field.osteology_anthropology.trepanationCertainty.name", + "defaultMessage": "Certainty" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "trepanationcertainty" + } + } + } + }, + "trepanationNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationNote.fullName", + "defaultMessage": "Trepanation comment" + }, + "name": { + "id": "field.osteology_anthropology.trepanationNote.name", + "defaultMessage": "Comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + }, + "trepanationGeneralNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.osteology_anthropology.trepanationGeneralNote.fullName", + "defaultMessage": "Trepanation general comment" + }, + "name": { + "id": "field.osteology_anthropology.trepanationGeneralNote.name", + "defaultMessage": "General comment" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.osteology.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "InventoryID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateVerbatim" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateUpper" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "osteoAgeEstimateNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "sexDetermination" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "sexDeterminationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completeness", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "completeness" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "completenessNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentition", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "molarsPresent" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentitionScore" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dentitionNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatment" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "mortuaryTreatmentNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyer", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerSingleLower" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "behrensmeyerUpper" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventory", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "NotesOnElementInventory" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "pathologyNote" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "InventoryIsComplete" + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "style": { + "marginBottom": "8px" + }, + "children": { + "key": null, + "ref": null, + "props": { + "id": "form.osteology.default.affirmComplete", + "defaultMessage": "By checking this box, I am affirming that the inventory of this individual is complete and that any and all unfilled boxes on this form indicate confirmation that those elements (or portions thereof, or features) are not present for this individual.", + "values": { + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "inventoryAnalyst" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "inventoryDate" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "Notes_DentalPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CranialPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_PostcranialPathology", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CulturalModifications", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_NHTaphonomicAlterations", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "Notes_CuratorialSuffixing", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "modification", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeform", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationPresent", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationCategories", + "subpath": "ns2:osteology_anthropology", + "children": { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationCategory" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "cranialDeformationNote", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanation", + "collapsible": true, + "collapsed": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationPresent", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationGroupList", + "subpath": "ns2:osteology_anthropology", + "children": { + "key": null, + "ref": null, + "props": { + "name": "trepanationGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationLocation" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimension", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimensionMax" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationDimensionMin" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationTechnique" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationHealing" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "trepanationCertainty" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "trepanationGeneralNote", + "subpath": "ns2:osteology_anthropology" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "osteology" + }, + "taxon": { + "messages": { + "record": { + "name": { + "id": "record.taxon.name", + "defaultMessage": "Taxon" + }, + "collectionName": { + "id": "record.taxon.collectionName", + "defaultMessage": "Taxon names" + } + }, + "panel": { + "info": { + "id": "panel.taxon.info", + "defaultMessage": "Taxonomic Name Information" + }, + "hierarchy": { + "id": "panel.taxon.hierarchy", + "defaultMessage": "Hierarchy" + } + }, + "inputTable": { + "termSource": { + "id": "inputTable.taxon.termSource", + "defaultMessage": "Source" + } + } + }, + "serviceConfig": { + "serviceName": "Taxon", + "servicePath": "taxonomyauthority", + "serviceType": "authority", + "objectName": "Taxon", + "documentName": "taxon" + }, + "vocabularies": { + "all": { + "messages": { + "name": { + "id": "vocab.taxon.all.name", + "defaultMessage": "All" + }, + "collectionName": { + "id": "vocab.taxon.all.collectionName", + "defaultMessage": "All Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.all.itemName", + "defaultMessage": "Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "_ALL_" + }, + "type": "all", + "name": "all", + "disableAltTerms": false + }, + "local": { + "messages": { + "name": { + "id": "vocab.taxon.local.name", + "defaultMessage": "Local" + }, + "collectionName": { + "id": "vocab.taxon.local.collectionName", + "defaultMessage": "Local Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.local.itemName", + "defaultMessage": "Local Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(taxon)" + }, + "sortOrder": 0, + "name": "local", + "disableAltTerms": false + }, + "common": { + "messages": { + "name": { + "id": "vocab.taxon.common.name", + "defaultMessage": "Common" + }, + "collectionName": { + "id": "vocab.taxon.common.collectionName", + "defaultMessage": "Common Taxonomic Names" + }, + "itemName": { + "id": "vocab.taxon.common.itemName", + "defaultMessage": "Common Taxonomic Name" + } + }, + "serviceConfig": { + "servicePath": "urn:cspace:name(common_ta)" + }, + "name": "common", + "disableAltTerms": false + } + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termDisplayName" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termStatus" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termFlag" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonTermGroupList/taxonTermGroup/taxonomicStatus" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonRank" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonCurrency" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonAuthorGroupList/taxonAuthorGroup/taxonAuthor" + }, + { + "op": "cont", + "path": "ns2:taxon_common/taxonYear" + }, + { + "op": "eq", + "path": "ns2:taxon_common/taxonCitationList/taxonCitation" + }, + { + "op": "cont", + "path": "ns2:taxon_common/taxonNote" + }, + { + "op": "cont", + "path": "ns2:taxon_common/commonNameGroupList/commonNameGroup/commonName" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "workflowState": { + "flexGrow": 0, + "flexShrink": 0, + "order": 10, + "width": 32 + }, + "termDisplayName": { + "messages": { + "label": { + "id": "column.taxon.default.termDisplayName", + "defaultMessage": "Display name" + } + }, + "order": 20, + "sortBy": "taxon_common:taxonTermGroupList/0/termDisplayName", + "width": 250 + }, + "termStatus": { + "messages": { + "label": { + "id": "column.taxon.default.termStatus", + "defaultMessage": "Term status" + } + }, + "order": 30, + "sortBy": "taxon_common:taxonTermGroupList/0/termStatus", + "width": 250 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.taxon.default.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 40, + "width": 150 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.taxon.search.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 50, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:taxon_common" + } + } + }, + "rel:relations-common-list": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/relation" + } + }, + "relation-list-item": { + "[config]": { + "view": { + "type": "HierarchyInput", + "props": { + "messages": { + "parent": { + "id": "hierarchyInput.taxon.parent", + "defaultMessage": "Broader taxon name" + }, + "children": { + "id": "hierarchyInput.taxon.children", + "defaultMessage": "Narrower taxon names" + }, + "siblings": { + "id": "hierarchyInput.taxon.siblings", + "defaultMessage": "Adjacent taxon names" + } + } + } + } + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:taxon_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:taxon_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + }, + "csid": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.csid.name", + "defaultMessage": "System CSID" + } + }, + "searchDisabled": true, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "inAuthority": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.inAuthority.name", + "defaultMessage": "System authority CSID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "refName": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.refName.name", + "defaultMessage": "System ref name" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "shortIdentifier": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.ext.authItem.shortIdentifier.name", + "defaultMessage": "System short ID" + } + }, + "view": { + "type": "TextInput" + }, + "extensionName": "authItem", + "extensionParentConfig": { + "service": { + "ns": "http://collectionspace.org/services/taxonomy" + } + } + } + }, + "taxonTermGroupList": { + "[config]": { + "messages": { + "required": { + "id": "field.taxon_common.taxonTermGroupList.required", + "defaultMessage": "At least one term display name is required. Please enter a value." + } + }, + "required": true, + "view": { + "type": "CompoundInput" + } + }, + "taxonTermGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonTermGroup.name", + "defaultMessage": "Term" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput" + } + }, + "termDisplayName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termDisplayName.fullName", + "defaultMessage": "Term display name" + }, + "name": { + "id": "field.taxon_common.termDisplayName.name", + "defaultMessage": "Display name" + } + }, + "required": true, + "view": { + "type": "TextInput" + } + } + }, + "termName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termName.fullName", + "defaultMessage": "Term name" + }, + "name": { + "id": "field.taxon_common.termName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termType.fullName", + "defaultMessage": "Term type" + }, + "name": { + "id": "field.taxon_common.termType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonTermTypes" + } + } + } + }, + "termFlag": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termFlag.fullName", + "defaultMessage": "Term flag" + }, + "name": { + "id": "field.taxon_common.termFlag.name", + "defaultMessage": "Flag" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "taxontermflag" + } + } + } + }, + "termStatus": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termStatus.fullName", + "defaultMessage": "Term status" + }, + "name": { + "id": "field.taxon_common.termStatus.name", + "defaultMessage": "Status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonTermStatuses" + } + } + } + }, + "termQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termQualifier.fullName", + "defaultMessage": "Term qualifier" + }, + "name": { + "id": "field.taxon_common.termQualifier.name", + "defaultMessage": "Qualifier" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termLanguage.fullName", + "defaultMessage": "Term language" + }, + "name": { + "id": "field.taxon_common.termLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "termPrefForLang": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.taxon_common.termPrefForLang.fullName", + "defaultMessage": "Term preferred for lang" + }, + "name": { + "id": "field.taxon_common.termPrefForLang.name", + "defaultMessage": "Preferred for lang" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "termSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSource.fullName", + "defaultMessage": "Term source name" + }, + "groupName": { + "id": "field.taxon_common.termSource.groupName", + "defaultMessage": "Source name" + }, + "name": { + "id": "field.taxon_common.termSource.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + }, + "termSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceDetail.fullName", + "defaultMessage": "Term source detail" + }, + "groupName": { + "id": "field.taxon_common.termSourceDetail.groupName", + "defaultMessage": "Source detail" + }, + "name": { + "id": "field.taxon_common.termSourceDetail.name", + "defaultMessage": "Detail" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceID": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceID.fullName", + "defaultMessage": "Term source ID" + }, + "groupName": { + "id": "field.taxon_common.termSourceID.groupName", + "defaultMessage": "Source ID" + }, + "name": { + "id": "field.taxon_common.termSourceID.name", + "defaultMessage": "ID" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termSourceNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.termSourceNote.fullName", + "defaultMessage": "Term source note" + }, + "groupName": { + "id": "field.taxon_common.termSourceNote.groupName", + "defaultMessage": "Source note" + }, + "name": { + "id": "field.taxon_common.termSourceNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "termFormattedDisplayName": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.termFormattedDisplayName.name", + "defaultMessage": "Formatted display name" + } + }, + "view": { + "type": "RichTextInput" + } + } + }, + "taxonomicStatus": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonomicStatus.name", + "defaultMessage": "Taxonomic status" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonomicStatuses" + } + } + } + } + } + }, + "taxonRank": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonRank.name", + "defaultMessage": "Rank" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonRanks" + } + } + } + }, + "taxonCurrency": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonCurrency.name", + "defaultMessage": "Currency" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonCurrencies" + } + } + } + }, + "taxonAuthorGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonAuthorGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonAuthorGroup.name", + "defaultMessage": "Author" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "taxonAuthor": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.taxonAuthor.fullName", + "defaultMessage": "Author name" + }, + "name": { + "id": "field.taxon_common.taxonAuthor.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "taxonAuthorType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.taxonAuthorType.fullName", + "defaultMessage": "Author type" + }, + "name": { + "id": "field.taxon_common.taxonAuthorType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "taxonAuthorTypes" + } + } + } + } + } + }, + "taxonYear": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonYear.name", + "defaultMessage": "Year" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "taxonCitationList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "taxonCitation": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonCitation.name", + "defaultMessage": "Citation" + } + }, + "repeating": true, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared,citation/worldcat" + } + } + } + } + }, + "taxonIsNamedHybrid": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.taxon_common.taxonIsNamedHybrid.name", + "defaultMessage": "Is named hybrid" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "taxonNote": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.taxonNote.name", + "defaultMessage": "Note" + } + }, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "commonNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "commonNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.taxon_common.commonNameGroup.name", + "defaultMessage": "Common name" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "commonName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonName.fullName", + "defaultMessage": "Common name" + }, + "name": { + "id": "field.taxon_common.commonName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "commonNameLanguage": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameLanguage.fullName", + "defaultMessage": "Common name language" + }, + "name": { + "id": "field.taxon_common.commonNameLanguage.name", + "defaultMessage": "Language" + } + }, + "view": { + "type": "TermPickerInput", + "props": { + "source": "languages" + } + } + } + }, + "commonNameSource": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameSource.fullName", + "defaultMessage": "Common name source" + }, + "name": { + "id": "field.taxon_common.commonNameSource.name", + "defaultMessage": "Source" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "citation/local,citation/shared" + } + } + } + }, + "commonNameSourceDetail": { + "[config]": { + "messages": { + "fullName": { + "id": "field.taxon_common.commonNameSourceDetail.fullName", + "defaultMessage": "Common name source detail" + }, + "name": { + "id": "field.taxon_common.commonNameSourceDetail.name", + "defaultMessage": "Source detail" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.taxon.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonTermGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonTermGroup", + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termDisplayName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFormattedDisplayName" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termQualifier" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termFlag" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonomicStatus" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termPrefForLang" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSource", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "termSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceDetail" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceID" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "termSourceNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonRank" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonCurrency" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthor" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonAuthorType" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonYear" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonIsNamedHybrid" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonCitationList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "taxonCitation" + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonNote" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "commonNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "commonName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameLanguage" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameSource" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "commonNameSourceDetail" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "hierarchy", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "mini": { + "disabled": true, + "messages": { + "name": { + "id": "form.taxon.mini.name", + "defaultMessage": "Mini Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "relation-list-item", + "subpath": "rel:relations-common-list", + "showChildren": false, + "showSiblings": false + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "taxonRank" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonCurrency" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "taxonNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "name": "taxon" + }, + "claim": { + "serviceConfig": { + "serviceName": "Claim", + "servicePath": "claims", + "serviceType": "procedure", + "objectName": "Claim", + "documentName": "claims" + }, + "advancedSearch": { + "op": "or", + "value": [ + { + "op": "cont", + "path": "ns2:claims_common/claimNumber" + }, + { + "op": "cont", + "path": "ns2:claims_nagpra/nagpraClaimName" + }, + { + "op": "eq", + "path": "ns2:claims_common/claimantGroupList/claimantGroup/claimFiledBy" + }, + { + "op": "eq", + "path": "ns2:claims_common/claimantGroupList/claimantGroup/claimFiledOnBehalfOf" + }, + { + "op": "eq", + "path": "ns2:claims_nagpra/nagpraClaimTypes/nagpraClaimType" + }, + { + "op": "range", + "path": "ns2:claims_common/claimReceivedGroupList/claimReceivedGroup/claimReceivedDate" + }, + { + "op": "cont", + "path": "ns2:collectionspace_core/updatedBy" + }, + { + "op": "range", + "path": "ns2:collectionspace_core/updatedAt" + } + ] + }, + "columns": { + "default": { + "claimNumber": { + "messages": { + "label": { + "id": "column.claim.default.claimNumber", + "defaultMessage": "Claim number" + } + }, + "order": 10, + "sortBy": "claims_common:claimNumber", + "width": 200 + }, + "nagpraClaimName": { + "messages": { + "label": { + "id": "column.claim.default.nagpraClaimName", + "defaultMessage": "Name" + } + }, + "order": 15, + "sortBy": "claims_nagpra:nagpraClaimName", + "width": 200 + }, + "claimFiledOnBehalfOf": { + "messages": { + "label": { + "id": "column.claim.default.claimFiledOnBehalfOf", + "defaultMessage": "Filed on behalf of" + } + }, + "order": 20, + "sortBy": "claims_common:claimantGroupList/0/claimFiledOnBehalfOf", + "width": 300 + }, + "updatedAt": { + "messages": { + "label": { + "id": "column.claim.default.updatedAt", + "defaultMessage": "Updated" + } + }, + "order": 30, + "sortBy": "collectionspace_core:updatedAt", + "width": 150 + } + } + }, + "fields": { + "document": { + "[config]": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:claims_common" + } + } + }, + "ns2:collectionspace_core": { + "[config]": { + "searchDisabled": false, + "extensionName": "core", + "extensionParentConfig": { + "view": { + "type": "CompoundInput", + "props": { + "defaultChildSubpath": "ns2:claims_common" + } + } + } + }, + "createdAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.createdAt.name", + "defaultMessage": "Created time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "createdBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.createdBy.name", + "defaultMessage": "Created by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "updatedAt": { + "[config]": { + "dataType": "DATA_TYPE_DATETIME", + "messages": { + "name": { + "id": "field.ext.core.updatedAt.name", + "defaultMessage": "Last updated time" + } + }, + "searchDisabled": false, + "searchView": { + "type": "DateInput" + }, + "view": { + "type": "DateTimeInput", + "props": { + "readOnly": true + } + } + } + }, + "updatedBy": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.updatedBy.name", + "defaultMessage": "Last updated by" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + } + } + }, + "uri": { + "[config]": { + "messages": { + "name": { + "id": "field.ext.core.uri.name", + "defaultMessage": "URI" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput", + "props": { + "readOnly": true + } + } + } + } + }, + "ns2:claims_common": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim" + } + }, + "claimNumber": { + "[config]": { + "cloneable": false, + "messages": { + "name": { + "id": "field.claims_common.claimNumber.name", + "defaultMessage": "Claim number" + } + }, + "required": true, + "searchView": { + "type": "TextInput" + }, + "view": { + "type": "IDGeneratorInput", + "props": { + "source": "claim" + } + } + } + }, + "claimantGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "claimantGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_common.claimantGroup.name", + "defaultMessage": "Claimant" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "claimFiledBy": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimFiledBy.fullName", + "defaultMessage": "Claim filed by" + }, + "name": { + "id": "field.claims_common.claimFiledBy.name", + "defaultMessage": "Filed by" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "claimFiledOnBehalfOf": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimFiledOnBehalfOf.fullName", + "defaultMessage": "Claim filed on behalf of" + }, + "name": { + "id": "field.claims_common.claimFiledOnBehalfOf.name", + "defaultMessage": "On behalf of" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "person/local,person/shared,organization/local,organization/shared" + } + } + } + }, + "claimantNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimantNote.fullName", + "defaultMessage": "Claimant note" + }, + "name": { + "id": "field.claims_common.claimantNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "claimReceivedGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "claimReceivedGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_common.claimReceivedGroup.name", + "defaultMessage": "Claim filed" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "claimReceivedDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_common.claimReceivedDate.fullName", + "defaultMessage": "Claim filed date" + }, + "name": { + "id": "field.claims_common.claimReceivedDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "claimReceivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_common.claimReceivedNote.fullName", + "defaultMessage": "Claim filed note" + }, + "name": { + "id": "field.claims_common.claimReceivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + } + }, + "ns2:claims_nagpra": { + "[config]": { + "service": { + "ns": "http://collectionspace.org/services/claim/domain/nagpra" + } + }, + "nagpraClaimName": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimName.name", + "defaultMessage": "Claim name" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimTypes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimType": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimType.name", + "defaultMessage": "Claim type" + } + }, + "repeating": true, + "view": { + "type": "TermPickerInput", + "props": { + "source": "nagpraclaimtype" + } + } + } + } + }, + "nagpraClaimAltNameGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimAltNameGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameGroup.name", + "defaultMessage": "Alternate name/number" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimAltName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltName.fullName", + "defaultMessage": "Alternate name/number" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltName.name", + "defaultMessage": "Name/number" + } + }, + "view": { + "type": "TextInput" + } + } + }, + "nagpraClaimAltNameNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.fullName", + "defaultMessage": "Alternate name/number note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimAltNameNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNotes": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNote": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNote.name", + "defaultMessage": "Note" + } + }, + "repeating": true, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + }, + "nagpraClaimSiteGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSiteGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteGroup.name", + "defaultMessage": "Site/place involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSiteName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteName.fullName", + "defaultMessage": "Site/place involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "place/local,place/shared" + } + } + } + }, + "nagpraClaimSiteNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.fullName", + "defaultMessage": "Site/place involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSiteNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimGroupGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimGroupGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupGroup.name", + "defaultMessage": "Cultural group involved" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimGroupName": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupName.fullName", + "defaultMessage": "Cultural group involved name" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupName.name", + "defaultMessage": "Name" + } + }, + "view": { + "type": "AutocompleteInput", + "props": { + "source": "concept/ethculture,concept/archculture" + } + } + } + }, + "nagpraClaimGroupNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.fullName", + "defaultMessage": "Cultural group involved note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimGroupNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimPeriodGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimPeriodGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodGroup.name", + "defaultMessage": "Time period represented" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimPeriodDateGroup": { + "[config]": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + }, + "dateDisplayDate": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateDisplayDate.fullName", + "defaultMessage": "Display date" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "datePeriod": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.datePeriod.fullName", + "defaultMessage": "Period" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateAssociation": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateAssociation.fullName", + "defaultMessage": "Association" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateNote.fullName", + "defaultMessage": "Note" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleYear.fullName", + "defaultMessage": "Earliest/single year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleMonth.fullName", + "defaultMessage": "Earliest/single month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleDay.fullName", + "defaultMessage": "Earliest/single day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleEra.fullName", + "defaultMessage": "Earliest/single era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleCertainty.fullName", + "defaultMessage": "Earliest/single certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifier.fullName", + "defaultMessage": "Earliest/single qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierValue.fullName", + "defaultMessage": "Earliest/single qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestSingleQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestSingleQualifierUnit.fullName", + "defaultMessage": "Earliest/single qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestYear": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestYear.fullName", + "defaultMessage": "Latest year" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestMonth": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestMonth.fullName", + "defaultMessage": "Latest month" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestDay": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestDay.fullName", + "defaultMessage": "Latest day" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestEra": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestEra.fullName", + "defaultMessage": "Latest era" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "dateera" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestCertainty": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestCertainty.fullName", + "defaultMessage": "Latest certainty" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datecertainty" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifier": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifier.fullName", + "defaultMessage": "Latest qualifier" + } + }, + "searchDisabled": false, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "dateQualifiers" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierValue": { + "[config]": { + "dataType": "DATA_TYPE_INT", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierValue.fullName", + "defaultMessage": "Latest qualifier value" + } + }, + "searchDisabled": false, + "view": { + "type": "TextInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestQualifierUnit": { + "[config]": { + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestQualifierUnit.fullName", + "defaultMessage": "Latest qualifier unit" + } + }, + "searchDisabled": false, + "view": { + "type": "TermPickerInput", + "props": { + "source": "datequalifier" + } + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateEarliestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateEarliestScalarValue.fullName", + "defaultMessage": "Earliest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "dateLatestScalarValue": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.dateLatestScalarValue.fullName", + "defaultMessage": "Latest represented date" + } + }, + "searchDisabled": false, + "view": { + "type": "DateInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + }, + "scalarValuesComputed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "fullName": { + "id": "field.ext.structuredDate.scalarValuesComputed.fullName", + "defaultMessage": "Represented dates computed" + } + }, + "searchDisabled": false, + "view": { + "type": "CheckboxInput" + }, + "extensionName": "structuredDate", + "extensionParentConfig": { + "dataType": "DATA_TYPE_STRUCTURED_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.fullName", + "defaultMessage": "Time period represented date" + }, + "groupName": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.groupName", + "defaultMessage": "Date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodDateGroup.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "StructuredDateInput" + } + } + } + } + }, + "nagpraClaimPeriodNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.fullName", + "defaultMessage": "Time period represented note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimPeriodNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimInitialResponseGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimInitialResponseGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseGroup.name", + "defaultMessage": "Initial response" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimInitialResponseDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.fullName", + "defaultMessage": "Initial response date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimInitialResponseNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.fullName", + "defaultMessage": "Initial response note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimInitialResponseNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToLocalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToLocalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalGroup.name", + "defaultMessage": "Sent to NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToLocalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.fullName", + "defaultMessage": "Sent to NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToLocalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.fullName", + "defaultMessage": "Sent to NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToLocalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimLocalRecGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimLocalRecGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecGroup.name", + "defaultMessage": "Recommendation of NAGPRA committee" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimLocalRecDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.fullName", + "defaultMessage": "Recommendation of NAGPRA committee date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimLocalRecNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.fullName", + "defaultMessage": "Recommendation of NAGPRA committee note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimLocalRecNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimSentToNatlGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimSentToNatlGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlGroup.name", + "defaultMessage": "Sent to National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimSentToNatlDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.fullName", + "defaultMessage": "Sent to National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimSentToNatlNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.fullName", + "defaultMessage": "Sent to National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimSentToNatlNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlRespGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlRespGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespGroup.name", + "defaultMessage": "Response from National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlRespDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.fullName", + "defaultMessage": "Response from National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlRespNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.fullName", + "defaultMessage": "Response from National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlRespNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNatlApprovalGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNatlApprovalGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalGroup.name", + "defaultMessage": "Publication by National NAGPRA" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNatlApprovalDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.fullName", + "defaultMessage": "Publication by National NAGPRA date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNatlApprovalNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.fullName", + "defaultMessage": "Publication by National NAGPRA note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNatlApprovalNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimNoticeGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimNoticeGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeGroup.name", + "defaultMessage": "National NAGPRA 30-day notice" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimNoticeDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.fullName", + "defaultMessage": "National NAGPRA 30-day notice date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimNoticeDateType": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.fullName", + "defaultMessage": "National NAGPRA 30-day notice date type" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeDateType.name", + "defaultMessage": "Type" + } + }, + "view": { + "type": "OptionPickerInput", + "props": { + "source": "nagpraNoticeDateTypes" + } + } + } + }, + "nagpraClaimNoticeNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.fullName", + "defaultMessage": "National NAGPRA 30-day notice note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimNoticeNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "nagpraClaimTransferGroupList": { + "[config]": { + "view": { + "type": "CompoundInput" + } + }, + "nagpraClaimTransferGroup": { + "[config]": { + "messages": { + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferGroup.name", + "defaultMessage": "Transfer" + } + }, + "repeating": true, + "view": { + "type": "CompoundInput", + "props": { + "tabular": true + } + } + }, + "nagpraClaimTransferDate": { + "[config]": { + "dataType": "DATA_TYPE_DATE", + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.fullName", + "defaultMessage": "Transfer date" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferDate.name", + "defaultMessage": "Date" + } + }, + "view": { + "type": "DateInput" + } + } + }, + "nagpraClaimTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.fullName", + "defaultMessage": "Transfer note" + }, + "name": { + "id": "field.claims_nagpra.nagpraClaimTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput" + } + } + } + } + }, + "dispositionPossibilitiesDiscussed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussed.name", + "defaultMessage": "Disposition possibilities discussed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dispositionPossibilitiesDiscussedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.fullName", + "defaultMessage": "Disposition possibilities discussed note" + }, + "name": { + "id": "field.claims_nagpra.dispositionPossibilitiesDiscussedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "surroundingTribesContacted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.surroundingTribesContacted.name", + "defaultMessage": "Surrounding tribes contacted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "surroundingTribesContactedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.fullName", + "defaultMessage": "Surrounding tribes contacted note" + }, + "name": { + "id": "field.claims_nagpra.surroundingTribesContactedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "workingTeamNotified": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.workingTeamNotified.name", + "defaultMessage": "Institutional NAGPRA team notified" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "workingTeamNotifiedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.fullName", + "defaultMessage": "Institutional NAGPRA team notified note" + }, + "name": { + "id": "field.claims_nagpra.workingTeamNotifiedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "siteFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.siteFileResearchCompleted.name", + "defaultMessage": "Site file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "siteFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.fullName", + "defaultMessage": "Site file research completed note" + }, + "name": { + "id": "field.claims_nagpra.siteFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "accessionFileResearchCompleted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompleted.name", + "defaultMessage": "Accession file research completed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "accessionFileResearchCompletedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.fullName", + "defaultMessage": "Accession file research completed note" + }, + "name": { + "id": "field.claims_nagpra.accessionFileResearchCompletedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsLocatedAndCounted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCounted.name", + "defaultMessage": "Objects located and counted" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsLocatedAndCountedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.fullName", + "defaultMessage": "Objects located and counted note" + }, + "name": { + "id": "field.claims_nagpra.objectsLocatedAndCountedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsConsolidated": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsConsolidated.name", + "defaultMessage": "Objects consolidated" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsConsolidatedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsConsolidatedNote.fullName", + "defaultMessage": "Objects consolidated note" + }, + "name": { + "id": "field.claims_nagpra.objectsConsolidatedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsPhotographed": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsPhotographed.name", + "defaultMessage": "Objects photographed" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsPhotographedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsPhotographedNote.fullName", + "defaultMessage": "Objects photographed note" + }, + "name": { + "id": "field.claims_nagpra.objectsPhotographedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "registrationDocumentsDrafted": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.registrationDocumentsDrafted.name", + "defaultMessage": "Registration documents drawn up" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "registrationDocumentsDraftedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.fullName", + "defaultMessage": "Registration documents drawn up note" + }, + "name": { + "id": "field.claims_nagpra.registrationDocumentsDraftedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "tribeContactedForPackingPreferences": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferences.name", + "defaultMessage": "Tribe contacted for packing/storage instructions" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "tribeContactedForPackingPreferencesNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.fullName", + "defaultMessage": "Tribe contacted for packing/storage instructions note" + }, + "name": { + "id": "field.claims_nagpra.tribeContactedForPackingPreferencesNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "dateArrangedForTransfer": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.dateArrangedForTransfer.name", + "defaultMessage": "Date arranged for pickup/transfer" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "dateArrangedForTransferNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.fullName", + "defaultMessage": "Date arranged for pickup/transfer note" + }, + "name": { + "id": "field.claims_nagpra.dateArrangedForTransferNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "objectsMarkedAsDeaccessioned": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessioned.name", + "defaultMessage": "Objects marked as deaccessioned" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "objectsMarkedAsDeaccessionedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.fullName", + "defaultMessage": "Objects marked as deaccessioned note" + }, + "name": { + "id": "field.claims_nagpra.objectsMarkedAsDeaccessionedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + }, + "documentsArchived": { + "[config]": { + "dataType": "DATA_TYPE_BOOL", + "messages": { + "name": { + "id": "field.claims_nagpra.documentsArchived.name", + "defaultMessage": "Claim documents archived" + } + }, + "view": { + "type": "CheckboxInput" + } + } + }, + "documentsArchivedNote": { + "[config]": { + "messages": { + "fullName": { + "id": "field.claims_nagpra.documentsArchivedNote.fullName", + "defaultMessage": "Claim documents archived note" + }, + "name": { + "id": "field.claims_nagpra.documentsArchivedNote.name", + "defaultMessage": "Note" + } + }, + "view": { + "type": "TextInput", + "props": { + "multiline": true + } + } + } + } + } + } + }, + "forms": { + "default": { + "messages": { + "name": { + "id": "form.claim.default.name", + "defaultMessage": "Standard Template" + } + }, + "template": { + "key": null, + "ref": null, + "props": { + "name": "document", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "info", + "collapsible": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimNumber" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimName", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimAltNameNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimantGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "claimantGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimFiledBy" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimFiledOnBehalfOf" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimantNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTypes", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimType" + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedGroupList", + "children": { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "claimReceivedNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNotes", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNote" + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "type": "div", + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimContext", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSiteNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupName" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimGroupNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodDateGroup" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimPeriodNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimProcessing", + "collapsible": true, + "collapsed": true, + "children": { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimInitialResponseNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToLocalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimLocalRecNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimSentToNatlNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlRespNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNatlApprovalNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeDateType" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimNoticeNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroupList", + "subpath": "ns2:claims_nagpra", + "children": { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferGroup", + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferDate" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTransferNote" + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "nagpraClaimTasks", + "children": [ + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dispositionPossibilitiesDiscussedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContacted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "surroundingTribesContactedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotified", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "workingTeamNotifiedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "siteFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompleted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "accessionFileResearchCompletedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCounted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsLocatedAndCountedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidated", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsConsolidatedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographed", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsPhotographedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDrafted", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "registrationDocumentsDraftedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferences", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "tribeContactedForPackingPreferencesNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransfer", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "dateArrangedForTransferNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessioned", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "objectsMarkedAsDeaccessionedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "children": [ + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchived", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + }, + { + "key": null, + "ref": null, + "props": { + "name": "documentsArchivedNote", + "subpath": "ns2:claims_nagpra" + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + }, + "_owner": null + } + ] + }, + "_owner": null + } + ] + }, + "_owner": null + } + } + }, + "messages": { + "record": { + "name": { + "id": "record.claim.name", + "defaultMessage": "Claim" + }, + "collectionName": { + "id": "record.claim.collectionName", + "defaultMessage": "Claims" + } + }, + "panel": { + "info": { + "id": "panel.claim.info", + "defaultMessage": "Claim Information" + }, + "nagpraClaimTasks": { + "id": "panel.ext.nagpra.nagpraClaimTasks", + "defaultMessage": "Tasks Completed" + }, + "nagpraClaimContext": { + "id": "panel.ext.nagpra.nagpraClaimContext", + "defaultMessage": "Claim Context" + }, + "nagpraClaimProcessing": { + "id": "panel.ext.nagpra.nagpraClaimProcessing", + "defaultMessage": "Claim Processing Information" + } + } + }, + "name": "claim" + } + }, + "idGenerators": { + "accession": { + "csid": "9dd92952-c384-44dc-a736-95e435c1759c", + "messages": { + "type": { + "id": "idGenerator.accession.type", + "defaultMessage": "Accession" + } + } + }, + "archives": { + "csid": "70586d30-9dca-4a07-a3a2-1976fe898028", + "messages": { + "type": { + "id": "idGenerator.archives.type", + "defaultMessage": "Archives" + } + } + }, + "library": { + "csid": "80fedaf6-1647-4f30-9f53-a75a3cac2ffd", + "messages": { + "type": { + "id": "idGenerator.library.type", + "defaultMessage": "Library" + } + } + }, + "conditioncheck": { + "csid": "585af100-1a35-11e2-892e-0800200c9a66", + "messages": { + "type": { + "id": "idGenerator.conditioncheck.type", + "defaultMessage": "Condition Check" + } + } + }, + "conservation": { + "csid": "aad54202-404d-4f19-ada9-8b1e378ad1b2", + "messages": { + "type": { + "id": "idGenerator.conservation.type", + "defaultMessage": "Conservation" + } + } + }, + "exhibition": { + "csid": "29ff8c5e-597a-41c6-a481-6e92dfe0a59f", + "messages": { + "type": { + "id": "idGenerator.exhibition.type", + "defaultMessage": "Exhibition" + } + } + }, + "insurance": { + "csid": "e6f52346-0d2c-4b68-8a35-0a27dad2f3f4", + "messages": { + "type": { + "id": "idGenerator.insurance.type", + "defaultMessage": "Insurance" + } + } + }, + "indemnity": { + "csid": "26583488-7cb4-42b5-a8e2-4db005c8f5ef", + "messages": { + "type": { + "id": "idGenerator.indemnity.type", + "defaultMessage": "Indemnity" + } + } + }, + "intake": { + "csid": "8088cfa5-c743-4824-bb4d-fb11b12847f7", + "messages": { + "type": { + "id": "idGenerator.intake.type", + "defaultMessage": "Intake" + } + } + }, + "study": { + "csid": "0518132e-dd8c-4773-8fa9-07c9af4444ee", + "messages": { + "type": { + "id": "idGenerator.study.type", + "defaultMessage": "Study" + } + } + }, + "evaluation": { + "csid": "d2d80822-25c7-4c7c-a105-fc40cdb0c50f", + "messages": { + "type": { + "id": "idGenerator.evaluation.type", + "defaultMessage": "Evaluation" + } + } + }, + "iterationreport": { + "csid": "4f0f36f6-643c-4a3e-89f4-012837852b04", + "messages": { + "type": { + "id": "idGenerator.iterationreport.type", + "defaultMessage": "Iteration Report" + } + } + }, + "loanin": { + "csid": "ed87e7c6-0678-4f42-9d33-f671835586ef", + "messages": { + "type": { + "id": "idGenerator.loanin.type", + "defaultMessage": "Loan In" + } + } + }, + "loanout": { + "csid": "4b984865-f93d-4481-b874-3dba863ec589", + "messages": { + "type": { + "id": "idGenerator.loanout.type", + "defaultMessage": "Loan Out" + } + } + }, + "media": { + "csid": "cd91d8b8-f346-4925-a425-93e02bd1c5c9", + "messages": { + "type": { + "id": "idGenerator.media.type", + "defaultMessage": "Media Resource" + } + } + }, + "inventory": { + "csid": "6d472be6-2534-47f3-a3f1-3f160e7a9303", + "messages": { + "type": { + "id": "idGenerator.inventory.type", + "defaultMessage": "Inventory" + } + } + }, + "location": { + "csid": "1fc5e383-0786-4126-9a3c-ec7df4517ee3", + "messages": { + "type": { + "id": "idGenerator.location.type", + "defaultMessage": "Location" + } + } + }, + "movement": { + "csid": "49ca9d8d-7136-47ff-a70e-4a47b9038b70", + "messages": { + "type": { + "id": "idGenerator.movement.type", + "defaultMessage": "Movement" + } + } + }, + "objectexit": { + "csid": "d4eea707-d473-4367-853a-728fbcd9be17", + "messages": { + "type": { + "id": "idGenerator.objectexit.type", + "defaultMessage": "Object Exit" + } + } + }, + "transport": { + "csid": "cc92bbc1-014a-4673-a81d-0c14375375d0", + "messages": { + "type": { + "id": "idGenerator.transport.type", + "defaultMessage": "Transport" + } + } + }, + "uoc": { + "csid": "9088cfa5-d743-5824-cb4d-eb11b12847f7", + "messages": { + "type": { + "id": "idGenerator.uoc.type", + "defaultMessage": "Use of Collections" + } + } + }, + "valuationcontrol": { + "csid": "eafbc0cd-70fe-4802-8476-b931b1b0e381", + "messages": { + "type": { + "id": "idGenerator.valuationcontrol.type", + "defaultMessage": "Valuation Control" + } + } + }, + "claim": { + "csid": "a253d167-4f1a-4be3-a477-a2bd8a30cd7f", + "messages": { + "type": { + "id": "idGenerator.claim.type", + "defaultMessage": "Claim" + } + } + } + }, + "subresources": { + "contacts": { + "listType": "common", + "recordType": "contact", + "serviceConfig": { + "servicePath": "contacts" + } + }, + "original": { + "serviceConfig": { + "servicePath": "" + } + }, + "derivativeThumbnail": { + "serviceConfig": { + "servicePath": "derivatives/Thumbnail" + } + }, + "derivativeMedium": { + "serviceConfig": { + "servicePath": "derivatives/Medium" + } + }, + "derivativeOriginalJpeg": { + "serviceConfig": { + "servicePath": "derivatives/OriginalJpeg" + } + }, + "refs": { + "columns": { + "default": { + "docNumber": { + "messages": { + "label": { + "id": "column.refs.default.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.refs.default.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.refs.default.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.refs.default.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + }, + "narrow": { + "docNumber": { + "messages": { + "label": { + "id": "column.refs.narrow.docNumber", + "defaultMessage": "Record" + } + }, + "order": 10, + "width": 200 + }, + "docName": { + "messages": { + "label": { + "id": "column.refs.narrow.docName", + "defaultMessage": "Summary" + } + }, + "order": 20, + "width": 300 + }, + "docType": { + "messages": { + "label": { + "id": "column.refs.narrow.docType", + "defaultMessage": "Type" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.refs.narrow.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + } + }, + "listType": "refDoc", + "messages": { + "collectionName": { + "id": "subresource.refs.collectionName", + "defaultMessage": "Uses of {record}" + } + }, + "serviceConfig": { + "servicePath": "refObjs" + } + }, + "terms": { + "columns": { + "default": { + "itemDisplayName": { + "messages": { + "label": { + "id": "column.terms.itemDisplayName", + "defaultMessage": "Term" + } + }, + "order": 10, + "width": 250 + }, + "type": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.type", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.terms.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + }, + "narrow": { + "itemDisplayName": { + "messages": { + "label": { + "id": "column.terms.itemDisplayName", + "defaultMessage": "Term" + } + }, + "order": 10, + "width": 250 + }, + "type": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.type", + "defaultMessage": "Type" + } + }, + "order": 20, + "width": 150 + }, + "vocabulary": { + "dataKey": "refName", + "messages": { + "label": { + "id": "column.terms.vocabulary", + "defaultMessage": "Vocabulary" + } + }, + "order": 30, + "width": 150 + }, + "sourceField": { + "messages": { + "label": { + "id": "column.terms.sourceField", + "defaultMessage": "Field" + } + }, + "order": 40, + "width": 250 + } + } + }, + "listType": "authRef", + "messages": { + "collectionName": { + "id": "subresource.terms.collectionName", + "defaultMessage": "Authority Terms Used by {record}" + } + }, + "serviceConfig": { + "servicePath": "authorityrefs" + } + } + }, + "pluginInfo": { + "cspaceUIPluginProfileAnthro": { + "messages": { + "name": { + "id": "cspaceUIPluginProfileAnthro.name", + "defaultMessage": "Anthropology profile" + } + }, + "packageName": "cspace-ui-plugin-profile-anthro", + "packageVersion": "7.0.0", + "buildNum": "5003975", + "repositoryUrl": "https://github.com/collectionspace/cspace-ui-plugin-profile-anthro.js", + "version": "7.0.0" + }, + "cspaceUIPluginProfileOHC": { + "messages": { + "name": { + "id": "cspaceUIPluginProfileOHC.name", + "defaultMessage": "OHC profile" + } + }, + "version": "1.0.18" + } + } +} diff --git a/spec/fixtures/files/7_2/compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv b/spec/fixtures/files/7_2/compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv new file mode 100644 index 00000000..23644cd5 --- /dev/null +++ b/spec/fixtures/files/7_2/compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv @@ -0,0 +1,2281 @@ +fid,profile,record_type,namespace,namespace_for_id,field_id,ui_info_group,ui_path,ui_field_label,xml_path,xml_field_name,data_type,required,repeats,group_repeats,data_source,option_list_values,diff_info +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc oaiCollectionPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.oaiCollectionPlace,Object Collection Information,OAI site,OAI site,oaiSiteGroupList > oaiSiteGroup,oaiCollectionPlace,string,n,n,y,authority: place/local; authority: place/tgn,"",not in anthro_7-0-0 +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc oaiLocVerbatim,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.oaiLocVerbatim,Object Collection Information,OAI site,OAI collection site (verbatim),oaiSiteGroupList > oaiSiteGroup,oaiLocVerbatim,string,n,n,y,"","",not in anthro_7-0-0 +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc namedTimePeriod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.namedTimePeriod,Object Production Information,"",Named time period,namedTimePeriods,namedTimePeriod,string,n,y,n,vocabulary: namedtimeperiods,"",not in anthro_7-0-0 +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc majorTaxon,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.majorTaxon,Object Description Information,Biological Information,Major taxon,"",majorTaxon,string,n,n,n/a,vocabulary: majortaxon,"",not in anthro_7-0-0 +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionAuthorizer,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizer,Acquisition Information,Authorization,Authorizer,"",acquisitionAuthorizer,string,n,n,n/a,authority: person/local,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionAuthorizerDate,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionAuthorizerDate,Acquisition Information,Authorization,Authorization date,"",acquisitionAuthorizerDate,date,n,n,n/a,"","",not in ohc_1-0-18_7-2 +anthro_7-0-0 acquisition ns2:acquisitions_common transferOfTitleNumber,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.transferOfTitleNumber,Acquisition Information,"",Transfer of title number,"",transferOfTitleNumber,string,n,n,n/a,"","",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameControlled,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameControlled,Object Identification Information,Object name,Object name controlled,objectNameList > objectNameGroup,objectNameControlled,string,n,n,y,authority: concept/nomenclature,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common materialControlled,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialControlled,Object Identification Information,Material,Material controlled,materialGroupList > materialGroup,materialControlled,string,n,n,y,authority: concept/material,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionSite,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionSite,Object Collection Information,"",Field collection site,fieldCollectionSites,fieldCollectionSite,string,n,y,n,authority: place/archaeological,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro fieldCollectionEvent,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.fieldCollectionEvent,Object Collection Information,"",Field collection event,fieldCollectionEvents,fieldCollectionEvent,string,n,y,n,authority: chronology/fieldcollection; authority: chronology/event,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionEra,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionEra,Object Production Information,"",Production era,objectProductionEras,objectProductionEra,string,n,y,n,authority: chronology/era,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentEvent,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEvent,Object Description Information,Content,Content controlled event or period/era,contentEvents,contentEvent,string,n,y,n,authority: chronology/event; authority: chronology/era,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEvent,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEvent,Object History and Association Information,Associations,Associated controlled event or period/era,assocEvents,assocEvent,string,n,y,n,authority: chronology/event; authority: chronology/era,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common technicalAttribute,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttribute,Object Description Information,Technical attribute,Technical attribute,technicalAttributeGroupList > technicalAttributeGroup,technicalAttribute,string,n,n,y,option list: technicalAttributes,"magnetic-tape-type, record-speed",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common technicalAttributeMeasurement,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurement,Object Description Information,Technical attribute,Technical attribute measurement,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurement,string,n,n,y,option list: technicalAttributeMeasurements,"78, metal",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common technicalAttributeMeasurementUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technicalAttributeMeasurementUnit,Object Description Information,Technical attribute,Technical attribute measurement unit,technicalAttributeGroupList > technicalAttributeGroup,technicalAttributeMeasurementUnit,string,n,n,y,option list: technicalAttributeMeasurementUnits,rpm,not in ohc_1-0-18_7-2 +anthro_7-0-0 objectexit ns2:objectexit_common currentOwner,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.currentOwner,Object Exit Information,"",Current owner,"",currentOwner,string,n,n,n/a,authority: person/local; authority: organization/local,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 objectexit ns2:objectexit_common depositor,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.depositor,Object Exit Information,"",Depositor,"",depositor,string,n,n,n/a,authority: person/local; authority: organization/local,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 objectexit ns2:objectexit_common displosalNewObjectNumber,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNewObjectNumber,Deaccession and Disposal Information,"",Disposal new object number,"",displosalNewObjectNumber,string,n,n,n/a,"","",not in ohc_1-0-18_7-2 +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionAuthorizer,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionAuthorizer,Deaccession and Disposal Information,"",Deaccession authorizer,"",deaccessionAuthorizer,string,n,n,n/a,authority: person/local,"",not in ohc_1-0-18_7-2 +anthro_7-0-0 objectexit ns2:objectexit_common authorizationDate,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.authorizationDate,Deaccession and Disposal Information,"",Authorization date,"",authorizationDate,date,n,n,n/a,"","",not in ohc_1-0-18_7-2 +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectName,Object Identification Information,Object name,Object name,objectNameList > objectNameGroup,objectName,string,n,n,y,"","",source differences +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectName,Object Identification Information,Object name,Object name,objectNameList > objectNameGroup,objectName,string,n,n,y,authority: concept/nomenclature,"",source differences +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameLevel,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLevel,Object Identification Information,Object name,Object name level,objectNameList > objectNameGroup,objectNameLevel,string,n,n,y,option list: nameLevels,"group, subgroup",source differences +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameLevel,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLevel,Object Identification Information,Object name,Object name level,objectNameList > objectNameGroup,objectNameLevel,string,n,n,y,option list: ohcNameLevels,"primary, secondary",source differences +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPeople,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeople,Object Identification Information,Associated cultural group,Associated cultural group,assocPeopleGroupList > assocPeopleGroup,assocPeople,string,n,n,y,"","",source differences +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPeople,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeople,Object Identification Information,Associated cultural group,Associated cultural group,assocPeopleGroupList > assocPeopleGroup,assocPeople,string,n,n,y,authority: concept/ethculture,"",source differences +anthro_7-0-0 collectionobject ns2:collectionobjects_common material,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.material,Object Identification Information,Material,Material,materialGroupList > materialGroup,material,string,n,n,y,"","",source differences +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common material,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.material,Object Identification Information,Material,Material,materialGroupList > materialGroup,material,string,n,n,y,authority: concept/material,"",source differences +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentConcept,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentConcept,Object Description Information,Content,Content concept,contentConcepts,contentConcept,string,n,y,n,authority: concept/associated; authority: concept/material,"",source differences +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentConcept,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentConcept,Object Description Information,Content,Content concept,contentConcepts,contentConcept,string,n,y,n,authority: concept/associated,"",source differences +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionApprovalGroup,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalGroup,Deaccession and Disposal Information,Deaccession approval,Deaccession approval group,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"",ui path differences +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionApprovalGroup,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalGroup,Object Exit Information,Deaccession approval,Deaccession approval group,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"",ui path differences +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionApprovalIndividual,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalIndividual,Deaccession and Disposal Information,Deaccession approval,Deaccession approval individual,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalIndividual,string,n,n,y,authority: person/local,"",ui path differences +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionApprovalIndividual,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalIndividual,Object Exit Information,Deaccession approval,Deaccession approval individual,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalIndividual,string,n,n,y,authority: person/local,"",ui path differences +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionApprovalStatus,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalStatus,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"",ui path differences +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionApprovalStatus,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalStatus,Object Exit Information,Deaccession approval,Deaccession approval status,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"",ui path differences +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionApprovalDate,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalDate,Deaccession and Disposal Information,Deaccession approval,Deaccession approval status date,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalDate,date,n,n,y,"","",ui path differences +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionApprovalDate,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalDate,Object Exit Information,Deaccession approval,Deaccession approval status date,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalDate,date,n,n,y,"","",ui path differences +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionApprovalNote,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalNote,Deaccession and Disposal Information,Deaccession approval,Deaccession approval note,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalNote,string,n,n,y,"","",ui path differences +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionApprovalNote,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionApprovalNote,Object Exit Information,Deaccession approval,Deaccession approval note,deacApprovalGroupList > deacApprovalGroup,deaccessionApprovalNote,string,n,n,y,"","",ui path differences +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionReferenceNumber,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReferenceNumber,Acquisition Information,"",Reference number,"",acquisitionReferenceNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionReferenceNumber,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReferenceNumber,Acquisition Information,"",Accession number,"",acquisitionReferenceNumber,string,y,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common accessionDateGroup,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.accessionDateGroup,Acquisition Information,"",Accession date,"",accessionDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common accessionDateGroup,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.accessionDateGroup,Acquisition Information,"",Accession date,"",accessionDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionDateGroup,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionDateGroup,Acquisition Information,"",Acquisition date,acquisitionDateGroupList,acquisitionDateGroup,structured date group,n,y,n,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionDateGroup,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionDateGroup,Acquisition Information,"",Acquisition date,acquisitionDateGroupList,acquisitionDateGroup,structured date group,n,y,n,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionMethod,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionMethod,Acquisition Information,"",Acquisition method,"",acquisitionMethod,string,n,n,n/a,option list: acquisitionMethods,"bequest, commission, exchange, found in collection, gift, purchase, transfer, treasure, unknown", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionMethod,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionMethod,Acquisition Information,"",Acquisition method,"",acquisitionMethod,string,n,n,n/a,option list: acquisitionMethods,"bequest, curated-on-behalf-of-federal-government, curated-on-behalf-of-state-government, curated-on-behalf-of-tribal-government, donation, fieldCollected, foundInCollection, loan, purchase, staffCurated, transfer", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionSource,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionSource,Acquisition Information,"",Acquisition source,acquisitionSources,acquisitionSource,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionSource,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionSource,Acquisition Information,"",Acquisition source,acquisitionSources,acquisitionSource,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 acquisition ns2:acquisitions_common owner,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.owner,Acquisition Information,"",Owner,owners,owner,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common owner,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.owner,Acquisition Information,"",Owner,owners,owner,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 acquisition ns2:acquisitions_common groupPurchasePriceCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceCurrency,Acquisition Information,Price Information > Group purchase price,Group purchase price currency,"",groupPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common groupPurchasePriceCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceCurrency,Acquisition Information,Price Information > Group purchase price,Group purchase price currency,"",groupPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common groupPurchasePriceValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceValue,Acquisition Information,Price Information > Group purchase price,Group purchase price value,"",groupPurchasePriceValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common groupPurchasePriceValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.groupPurchasePriceValue,Acquisition Information,Price Information > Group purchase price,Group purchase price value,"",groupPurchasePriceValue,float,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common objectOfferPriceCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceCurrency,Acquisition Information,Price Information > Object offer price,Object offer price currency,"",objectOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectOfferPriceCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceCurrency,Acquisition Information,Price Information > Object offer price,Object offer price currency,"",objectOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common objectOfferPriceValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceValue,Acquisition Information,Price Information > Object offer price,Object offer price value,"",objectOfferPriceValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectOfferPriceValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectOfferPriceValue,Acquisition Information,Price Information > Object offer price,Object offer price value,"",objectOfferPriceValue,float,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common objectPurchaseOfferPriceCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceCurrency,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price currency,"",objectPurchaseOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectPurchaseOfferPriceCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceCurrency,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price currency,"",objectPurchaseOfferPriceCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common objectPurchaseOfferPriceValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceValue,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price value,"",objectPurchaseOfferPriceValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectPurchaseOfferPriceValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchaseOfferPriceValue,Acquisition Information,Price Information > Object purchaser offer price,Object purchaser offer price value,"",objectPurchaseOfferPriceValue,float,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common objectPurchasePriceCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceCurrency,Acquisition Information,Price Information > Object purchase price,Object purchase price currency,"",objectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectPurchasePriceCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceCurrency,Acquisition Information,Price Information > Object purchase price,Object purchase price currency,"",objectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common objectPurchasePriceValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceValue,Acquisition Information,Price Information > Object purchase price,Object purchase price value,"",objectPurchasePriceValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common objectPurchasePriceValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.objectPurchasePriceValue,Acquisition Information,Price Information > Object purchase price,Object purchase price value,"",objectPurchasePriceValue,float,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common originalObjectPurchasePriceCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceCurrency,Acquisition Information,Price Information > Original object purchase price,Original object purchase price currency,"",originalObjectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common originalObjectPurchasePriceCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceCurrency,Acquisition Information,Price Information > Original object purchase price,Original object purchase price currency,"",originalObjectPurchasePriceCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common originalObjectPurchasePriceValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceValue,Acquisition Information,Price Information > Original object purchase price,Original object purchase price value,"",originalObjectPurchasePriceValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common originalObjectPurchasePriceValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.originalObjectPurchasePriceValue,Acquisition Information,Price Information > Original object purchase price,Original object purchase price value,"",originalObjectPurchasePriceValue,float,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionReason,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReason,Acquisition Information,"",Acquisition reason,"",acquisitionReason,string,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionReason,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionReason,Acquisition Information,"",Acquisition reason,"",acquisitionReason,string,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common approvalGroup,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalGroup,Acquisition Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common approvalGroup,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalGroup,Acquisition Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +anthro_7-0-0 acquisition ns2:acquisitions_common approvalIndividual,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalIndividual,Acquisition Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common approvalIndividual,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalIndividual,Acquisition Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"", +anthro_7-0-0 acquisition ns2:acquisitions_common approvalStatus,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalStatus,Acquisition Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common approvalStatus,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalStatus,Acquisition Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"", +anthro_7-0-0 acquisition ns2:acquisitions_common approvalDate,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalDate,Acquisition Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common approvalDate,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalDate,Acquisition Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common approvalNote,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalNote,Acquisition Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common approvalNote,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.approvalNote,Acquisition Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionNote,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionNote,Acquisition Information,"",Note,"",acquisitionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionNote,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionNote,Acquisition Information,"",Note,"",acquisitionNote,string,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionProvisos,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionProvisos,Acquisition Information,"",Provisos,"",acquisitionProvisos,string,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionProvisos,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionProvisos,Acquisition Information,"",Restrictions,"",acquisitionProvisos,string,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionFundingCurrency,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingCurrency,Acquisition Information,Funding,Funding currency,acquisitionFundingList > acquisitionFunding,acquisitionFundingCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionFundingCurrency,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingCurrency,Acquisition Information,Funding,Funding currency,acquisitionFundingList > acquisitionFunding,acquisitionFundingCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionFundingValue,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingValue,Acquisition Information,Funding,Funding value,acquisitionFundingList > acquisitionFunding,acquisitionFundingValue,float,n,n,y,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionFundingValue,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingValue,Acquisition Information,Funding,Funding value,acquisitionFundingList > acquisitionFunding,acquisitionFundingValue,float,n,n,y,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionFundingSource,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSource,Acquisition Information,Funding,Funding source,acquisitionFundingList > acquisitionFunding,acquisitionFundingSource,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionFundingSource,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSource,Acquisition Information,Funding,Funding source,acquisitionFundingList > acquisitionFunding,acquisitionFundingSource,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 acquisition ns2:acquisitions_common acquisitionFundingSourceProvisos,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSourceProvisos,Acquisition Information,Funding,Funding source provisos,acquisitionFundingList > acquisitionFunding,acquisitionFundingSourceProvisos,string,n,n,y,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common acquisitionFundingSourceProvisos,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.acquisitionFundingSourceProvisos,Acquisition Information,Funding,Funding source provisos,acquisitionFundingList > acquisitionFunding,acquisitionFundingSourceProvisos,string,n,n,y,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common creditLine,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.creditLine,Acquisition Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common creditLine,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.creditLine,Acquisition Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +anthro_7-0-0 acquisition ns2:acquisitions_common fieldCollectionEventName,anthro_7-0-0,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","", +ohc_1-0-18_7-2 acquisition ns2:acquisitions_common fieldCollectionEventName,ohc_1-0-18_7-2,acquisition,ns2:acquisitions_common,ns2:acquisitions_common,acquisitions_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","", +anthro_7-0-0 citation ns2:citations_common termDisplayName,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termDisplayName,Citation Information,Term,Term display name,citationTermGroupList > citationTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termDisplayName,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termDisplayName,Citation Information,Term,Term display name,citationTermGroupList > citationTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termStatus,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termStatus,Citation Information,Term,Term status,citationTermGroupList > citationTermGroup,termStatus,string,n,n,y,option list: citationTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 citation ns2:citations_common termStatus,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termStatus,Citation Information,Term,Term status,citationTermGroupList > citationTermGroup,termStatus,string,n,n,y,option list: citationTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 citation ns2:citations_common termType,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termType,Citation Information,Term,Term type,citationTermGroupList > citationTermGroup,termType,string,n,n,y,vocabulary: citationtermtype,"", +ohc_1-0-18_7-2 citation ns2:citations_common termType,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termType,Citation Information,Term,Term type,citationTermGroupList > citationTermGroup,termType,string,n,n,y,vocabulary: citationtermtype,"", +anthro_7-0-0 citation ns2:citations_common termFlag,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termFlag,Citation Information,Term,Term flag,citationTermGroupList > citationTermGroup,termFlag,string,n,n,y,vocabulary: citationtermflag,"", +ohc_1-0-18_7-2 citation ns2:citations_common termFlag,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termFlag,Citation Information,Term,Term flag,citationTermGroupList > citationTermGroup,termFlag,string,n,n,y,vocabulary: citationtermflag,"", +anthro_7-0-0 citation ns2:citations_common termLanguage,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termLanguage,Citation Information,Term,Term language,citationTermGroupList > citationTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 citation ns2:citations_common termLanguage,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termLanguage,Citation Information,Term,Term language,citationTermGroupList > citationTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 citation ns2:citations_common termPrefForLang,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termPrefForLang,Citation Information,Term,Term preferred for lang,citationTermGroupList > citationTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termPrefForLang,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termPrefForLang,Citation Information,Term,Term preferred for lang,citationTermGroupList > citationTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termFullCitation,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termFullCitation,Citation Information,Term,Term full citation,citationTermGroupList > citationTermGroup,termFullCitation,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termFullCitation,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termFullCitation,Citation Information,Term,Term full citation,citationTermGroupList > citationTermGroup,termFullCitation,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termTitle,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termTitle,Citation Information,Term,Term title,citationTermGroupList > citationTermGroup,termTitle,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termTitle,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termTitle,Citation Information,Term,Term title,citationTermGroupList > citationTermGroup,termTitle,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termSubTitle,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSubTitle,Citation Information,Term,Term subtitle,citationTermGroupList > citationTermGroup,termSubTitle,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termSubTitle,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSubTitle,Citation Information,Term,Term subtitle,citationTermGroupList > citationTermGroup,termSubTitle,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termSectionTitle,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSectionTitle,Citation Information,Term,Term section title,citationTermGroupList > citationTermGroup,termSectionTitle,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termSectionTitle,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSectionTitle,Citation Information,Term,Term section title,citationTermGroupList > citationTermGroup,termSectionTitle,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termVolume,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termVolume,Citation Information,Term,Term volume,citationTermGroupList > citationTermGroup,termVolume,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termVolume,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termVolume,Citation Information,Term,Term volume,citationTermGroupList > citationTermGroup,termVolume,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termIssue,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termIssue,Citation Information,Term,Term issue,citationTermGroupList > citationTermGroup,termIssue,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termIssue,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termIssue,Citation Information,Term,Term issue,citationTermGroupList > citationTermGroup,termIssue,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termSource,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSource,Citation Information,Term > Source,Term source name,citationTermGroupList > citationTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 citation ns2:citations_common termSource,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSource,Citation Information,Term > Source,Term source name,citationTermGroupList > citationTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 citation ns2:citations_common termSourceDetail,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceDetail,Citation Information,Term > Source,Term source detail,citationTermGroupList > citationTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termSourceDetail,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceDetail,Citation Information,Term > Source,Term source detail,citationTermGroupList > citationTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termSourceID,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceID,Citation Information,Term > Source,Term source ID,citationTermGroupList > citationTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termSourceID,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceID,Citation Information,Term > Source,Term source ID,citationTermGroupList > citationTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common termSourceNote,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceNote,Citation Information,Term > Source,Term source note,citationTermGroupList > citationTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common termSourceNote,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.termSourceNote,Citation Information,Term > Source,Term source note,citationTermGroupList > citationTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common publisher,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.publisher,Citation Information,Publication,Publisher,citationPublicationInfoGroupList > citationPublicationInfoGroup,publisher,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 citation ns2:citations_common publisher,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.publisher,Citation Information,Publication,Publisher,citationPublicationInfoGroupList > citationPublicationInfoGroup,publisher,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 citation ns2:citations_common publicationPlace,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationPlace,Citation Information,Publication,Publication place,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationPlace,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 citation ns2:citations_common publicationPlace,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationPlace,Citation Information,Publication,Publication place,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationPlace,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 citation ns2:citations_common publicationDate,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationDate,Citation Information,Publication,Publication date,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationDate,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common publicationDate,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.publicationDate,Citation Information,Publication,Publication date,citationPublicationInfoGroupList > citationPublicationInfoGroup,publicationDate,structured date group,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common edition,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.edition,Citation Information,Publication,Publication edition,citationPublicationInfoGroupList > citationPublicationInfoGroup,edition,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common edition,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.edition,Citation Information,Publication,Publication edition,citationPublicationInfoGroupList > citationPublicationInfoGroup,edition,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common pages,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.pages,Citation Information,Publication,Publication page(s),citationPublicationInfoGroupList > citationPublicationInfoGroup,pages,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common pages,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.pages,Citation Information,Publication,Publication page(s),citationPublicationInfoGroupList > citationPublicationInfoGroup,pages,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common agent,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.agent,Citation Information,Agent,Agent name,citationAgentInfoGroupList > citationAgentInfoGroup,agent,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local,"", +ohc_1-0-18_7-2 citation ns2:citations_common agent,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.agent,Citation Information,Agent,Agent name,citationAgentInfoGroupList > citationAgentInfoGroup,agent,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local,"", +anthro_7-0-0 citation ns2:citations_common role,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.role,Citation Information,Agent,Agent role,citationAgentInfoGroupList > citationAgentInfoGroup,role,string,n,n,y,vocabulary: agentinfotype,"", +ohc_1-0-18_7-2 citation ns2:citations_common role,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.role,Citation Information,Agent,Agent role,citationAgentInfoGroupList > citationAgentInfoGroup,role,string,n,n,y,vocabulary: agentinfotype,"", +anthro_7-0-0 citation ns2:citations_common note,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.note,Citation Information,Agent,Agent note,citationAgentInfoGroupList > citationAgentInfoGroup,note,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common note,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.note,Citation Information,Agent,Agent note,citationAgentInfoGroupList > citationAgentInfoGroup,note,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common citationNote,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.citationNote,Citation Information,"",Note,"",citationNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 citation ns2:citations_common citationNote,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.citationNote,Citation Information,"",Note,"",citationNote,string,n,n,n/a,"","", +anthro_7-0-0 citation ns2:citations_common resourceIdent,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.resourceIdent,Citation Information,Resource identifier,Resource identifier,citationResourceIdentGroupList > citationResourceIdentGroup,resourceIdent,string,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common resourceIdent,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.resourceIdent,Citation Information,Resource identifier,Resource identifier,citationResourceIdentGroupList > citationResourceIdentGroup,resourceIdent,string,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common type,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.type,Citation Information,Resource identifier,Resource identifier type,citationResourceIdentGroupList > citationResourceIdentGroup,type,string,n,n,y,vocabulary: resourceidtype,"", +ohc_1-0-18_7-2 citation ns2:citations_common type,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.type,Citation Information,Resource identifier,Resource identifier type,citationResourceIdentGroupList > citationResourceIdentGroup,type,string,n,n,y,vocabulary: resourceidtype,"", +anthro_7-0-0 citation ns2:citations_common captureDate,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.captureDate,Citation Information,Resource identifier,Resource identifier capture date,citationResourceIdentGroupList > citationResourceIdentGroup,captureDate,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 citation ns2:citations_common captureDate,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.captureDate,Citation Information,Resource identifier,Resource identifier capture date,citationResourceIdentGroupList > citationResourceIdentGroup,captureDate,structured date group,n,n,y,"","", +anthro_7-0-0 citation ns2:citations_common relatedTerm,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.relatedTerm,Citation Information,Related term,Related term,citationRelatedTermsGroupList > citationRelatedTermsGroup,relatedTerm,string,n,n,y,authority: concept/associated; authority: concept/activity; authority: concept/material,"", +ohc_1-0-18_7-2 citation ns2:citations_common relatedTerm,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.relatedTerm,Citation Information,Related term,Related term,citationRelatedTermsGroupList > citationRelatedTermsGroup,relatedTerm,string,n,n,y,authority: concept/associated; authority: concept/activity; authority: concept/material,"", +anthro_7-0-0 citation ns2:citations_common relationType,anthro_7-0-0,citation,ns2:citations_common,ns2:citations_common,citations_common.relationType,Citation Information,Related term,Related term type,citationRelatedTermsGroupList > citationRelatedTermsGroup,relationType,string,n,n,y,vocabulary: relationtypetype,"", +ohc_1-0-18_7-2 citation ns2:citations_common relationType,ohc_1-0-18_7-2,citation,ns2:citations_common,ns2:citations_common,citations_common.relationType,Citation Information,Related term,Related term type,citationRelatedTermsGroupList > citationRelatedTermsGroup,relationType,string,n,n,y,vocabulary: relationtypetype,"", +anthro_7-0-0 chronology ns2:chronologies_common termDisplayName,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termDisplayName,Chronology Information,Term,Term display name,chronologyTermGroupList > chronologyTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termDisplayName,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termDisplayName,Chronology Information,Term,Term display name,chronologyTermGroupList > chronologyTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termName,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termName,Chronology Information,Term,Term name,chronologyTermGroupList > chronologyTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termName,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termName,Chronology Information,Term,Term name,chronologyTermGroupList > chronologyTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termQualifier,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termQualifier,Chronology Information,Term,Term qualifier,chronologyTermGroupList > chronologyTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termQualifier,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termQualifier,Chronology Information,Term,Term qualifier,chronologyTermGroupList > chronologyTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termStatus,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termStatus,Chronology Information,Term,Term status,chronologyTermGroupList > chronologyTermGroup,termStatus,string,n,n,y,vocabulary: chronologytermstatus,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termStatus,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termStatus,Chronology Information,Term,Term status,chronologyTermGroupList > chronologyTermGroup,termStatus,string,n,n,y,vocabulary: chronologytermstatus,"", +anthro_7-0-0 chronology ns2:chronologies_common termType,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termType,Chronology Information,Term,Term type,chronologyTermGroupList > chronologyTermGroup,termType,string,n,n,y,vocabulary: chronologytermtype,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termType,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termType,Chronology Information,Term,Term type,chronologyTermGroupList > chronologyTermGroup,termType,string,n,n,y,vocabulary: chronologytermtype,"", +anthro_7-0-0 chronology ns2:chronologies_common termFlag,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termFlag,Chronology Information,Term,Term flag,chronologyTermGroupList > chronologyTermGroup,termFlag,string,n,n,y,vocabulary: chronologytermflag,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termFlag,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termFlag,Chronology Information,Term,Term flag,chronologyTermGroupList > chronologyTermGroup,termFlag,string,n,n,y,vocabulary: chronologytermflag,"", +anthro_7-0-0 chronology ns2:chronologies_common historicalStatus,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.historicalStatus,Chronology Information,Term,Term historical status,chronologyTermGroupList > chronologyTermGroup,historicalStatus,string,n,n,y,vocabulary: chronologyhistoricalstatus,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common historicalStatus,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.historicalStatus,Chronology Information,Term,Term historical status,chronologyTermGroupList > chronologyTermGroup,historicalStatus,string,n,n,y,vocabulary: chronologyhistoricalstatus,"", +anthro_7-0-0 chronology ns2:chronologies_common termLanguage,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termLanguage,Chronology Information,Term,Term language,chronologyTermGroupList > chronologyTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termLanguage,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termLanguage,Chronology Information,Term,Term language,chronologyTermGroupList > chronologyTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 chronology ns2:chronologies_common termPrefForLang,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termPrefForLang,Chronology Information,Term,Term preferred for lang,chronologyTermGroupList > chronologyTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termPrefForLang,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termPrefForLang,Chronology Information,Term,Term preferred for lang,chronologyTermGroupList > chronologyTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termSource,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSource,Chronology Information,Term > Source,Term source name,chronologyTermGroupList > chronologyTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termSource,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSource,Chronology Information,Term > Source,Term source name,chronologyTermGroupList > chronologyTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 chronology ns2:chronologies_common termSourceDetail,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceDetail,Chronology Information,Term > Source,Term source detail,chronologyTermGroupList > chronologyTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termSourceDetail,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceDetail,Chronology Information,Term > Source,Term source detail,chronologyTermGroupList > chronologyTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termSourceID,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceID,Chronology Information,Term > Source,Term source ID,chronologyTermGroupList > chronologyTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termSourceID,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceID,Chronology Information,Term > Source,Term source ID,chronologyTermGroupList > chronologyTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common termSourceNote,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceNote,Chronology Information,Term > Source,Term source note,chronologyTermGroupList > chronologyTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common termSourceNote,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.termSourceNote,Chronology Information,Term > Source,Term source note,chronologyTermGroupList > chronologyTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common primaryDateRangeStructuredDateGroup,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.primaryDateRangeStructuredDateGroup,Chronology Information,"",Primary date range,"",primaryDateRangeStructuredDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common primaryDateRangeStructuredDateGroup,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.primaryDateRangeStructuredDateGroup,Chronology Information,"",Primary date range,"",primaryDateRangeStructuredDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 chronology ns2:chronologies_common chronologyType,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyType,Chronology Information,"",Chronology type,"",chronologyType,string,n,n,n/a,vocabulary: chronologytypes,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common chronologyType,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyType,Chronology Information,"",Chronology type,"",chronologyType,string,n,n,n/a,vocabulary: chronologytypes,"", +anthro_7-0-0 chronology ns2:chronologies_common spatialCoverage,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.spatialCoverage,Chronology Information,"",Spatial coverage,spatialCoverages,spatialCoverage,string,n,y,n,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common spatialCoverage,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.spatialCoverage,Chronology Information,"",Spatial coverage,spatialCoverages,spatialCoverage,string,n,y,n,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 chronology ns2:chronologies_common chronologyDescription,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyDescription,Chronology Information,"",Chronology description,"",chronologyDescription,string,n,n,n/a,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common chronologyDescription,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyDescription,Chronology Information,"",Chronology description,"",chronologyDescription,string,n,n,n/a,"","", +anthro_7-0-0 chronology ns2:chronologies_common chronologyNote,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyNote,Chronology Information,"",Chronology note,"",chronologyNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common chronologyNote,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.chronologyNote,Chronology Information,"",Chronology note,"",chronologyNote,string,n,n,n/a,"","", +anthro_7-0-0 chronology ns2:chronologies_common identifierValue,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierValue,Chronology Information,Resource identifier,Resource identifier value,identifierGroupList > identifierGroup,identifierValue,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common identifierValue,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierValue,Chronology Information,Resource identifier,Resource identifier value,identifierGroupList > identifierGroup,identifierValue,string,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common identifierCitation,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierCitation,Chronology Information,Resource identifier,Resource identifier citation,identifierGroupList > identifierGroup,identifierCitation,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common identifierCitation,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierCitation,Chronology Information,Resource identifier,Resource identifier citation,identifierGroupList > identifierGroup,identifierCitation,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 chronology ns2:chronologies_common identifierDate,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierDate,Chronology Information,Resource identifier,Resource identifier date,identifierGroupList > identifierGroup,identifierDate,date,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common identifierDate,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.identifierDate,Chronology Information,Resource identifier,Resource identifier date,identifierGroupList > identifierGroup,identifierDate,date,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common altDateRangeStructuredDateGroup,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateRangeStructuredDateGroup,Alternative Date Information,Alternative date,Alternative date range,altDateGroupList > altDateGroup,altDateRangeStructuredDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common altDateRangeStructuredDateGroup,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateRangeStructuredDateGroup,Alternative Date Information,Alternative date,Alternative date range,altDateGroupList > altDateGroup,altDateRangeStructuredDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 chronology ns2:chronologies_common altDateSpatialCoverage,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateSpatialCoverage,Alternative Date Information,Alternative date,Alternative date spatial coverage,altDateGroupList > altDateGroup > altDateSpatialCoverages,altDateSpatialCoverage,string,n,y,as part of larger repeating group,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common altDateSpatialCoverage,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateSpatialCoverage,Alternative Date Information,Alternative date,Alternative date spatial coverage,altDateGroupList > altDateGroup > altDateSpatialCoverages,altDateSpatialCoverage,string,n,y,as part of larger repeating group,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 chronology ns2:chronologies_common altDateCitation,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateCitation,Alternative Date Information,Alternative date,Alternative date citation,altDateGroupList > altDateGroup > altDateCitations,altDateCitation,string,n,y,as part of larger repeating group,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 chronology ns2:chronologies_common altDateCitation,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateCitation,Alternative Date Information,Alternative date,Alternative date citation,altDateGroupList > altDateGroup > altDateCitations,altDateCitation,string,n,y,as part of larger repeating group,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 chronology ns2:chronologies_common altDateNote,anthro_7-0-0,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateNote,Alternative Date Information,Alternative date,Alternative date note,altDateGroupList > altDateGroup,altDateNote,string,n,n,y,"","", +ohc_1-0-18_7-2 chronology ns2:chronologies_common altDateNote,ohc_1-0-18_7-2,chronology,ns2:chronologies_common,ns2:chronologies_common,chronologies_common.altDateNote,Alternative Date Information,Alternative date,Alternative date note,altDateGroupList > altDateGroup,altDateNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNumber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNumber,Object Identification Information,"",Identification number,"",objectNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNumber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNumber,Object Identification Information,"",Identification number,"",objectNumber,string,y,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common numberOfObjects,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberOfObjects,Object Identification Information,"",Number of objects,"",numberOfObjects,integer,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common numberOfObjects,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberOfObjects,Object Identification Information,"",Number of objects,"",numberOfObjects,integer,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common numberValue,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberValue,Object Identification Information,Other number,Other number value,otherNumberList > otherNumber,numberValue,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common numberValue,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberValue,Object Identification Information,Other number,Other number value,otherNumberList > otherNumber,numberValue,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common numberType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberType,Object Identification Information,Other number,Other number type,otherNumberList > otherNumber,numberType,string,n,n,y,option list: numberTypes,"associated uuid, barcode, lender, obsolete, previous, serial, unknown", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common numberType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.numberType,Object Identification Information,Other number,Other number type,otherNumberList > otherNumber,numberType,string,n,n,y,option list: numberTypes,"AccessCommingledID, AccessSkeletalID, Additional File Number, Archives/Library Negative Number, Barcode Number, Community NID, Digital Heritage Collection NID, Digital Heritage Item NID, FIPS Number, Field Sheet Number, Fine Arts Card Number, NADB Number, National Historic Landmark Number, National Register Number, OAI Number, OHI Number, OHPOID Number, OhioPix File Name, Old Ledger #1, Old Ledger #2, Original Collection Number, Other Number, Previous Catalog Number, Punch Card Number, Researcher Number, SOD Number, STARid", +anthro_7-0-0 collectionobject ns2:collectionobjects_common responsibleDepartment,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.responsibleDepartment,Object Identification Information,"",Responsible department,responsibleDepartments,responsibleDepartment,string,n,y,n,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common responsibleDepartment,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.responsibleDepartment,Object Identification Information,"",Responsible department,responsibleDepartments,responsibleDepartment,string,n,y,n,option list: departments,"archaeology, archaeology-nagpra, collection-management, design, education, ethnographic, history, naamcc, natural-history, poindexter-village, registrar, sites", +anthro_7-0-0 collectionobject ns2:collectionobjects_common collection,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.collection,Object Identification Information,"",Collection,"",collection,string,n,n,n/a,option list: collections,"library-collection, permanent-collection, study-collection, teaching-collection", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common collection,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.collection,Object Identification Information,"",Collection,"",collection,string,n,n,n/a,option list: collections,"active-use-collection, architectural-salvaged-collection, education-collection, outdoor-collection, permanent-collection, props-and-design, sites-and-facilities", +anthro_7-0-0 collectionobject ns2:collectionobjects_common namedCollection,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.namedCollection,Object Identification Information,"",Named collection,namedCollections,namedCollection,string,n,y,n,authority: work/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common namedCollection,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.namedCollection,Object Identification Information,"",Named collection,namedCollections,namedCollection,string,n,y,n,authority: work/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common descriptionLevel,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.descriptionLevel,Object Identification Information,"",Description level,"",descriptionLevel,string,n,n,n/a,vocabulary: descriptionlevel,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc descriptionLevel,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.descriptionLevel,Object Identification Information,"",Description level,"",descriptionLevel,string,n,n,n/a,vocabulary: descriptionlevel,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common recordStatus,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.recordStatus,Object Identification Information,"",Record status,"",recordStatus,string,n,n,n/a,option list: recordStatuses,"approved, in-process, new, temporary", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common recordStatus,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.recordStatus,Object Identification Information,"",Record status,"",recordStatus,string,n,n,n/a,option list: recordStatuses,"approved, in-process, new, ready-for-review, revision-needed, temporary", +anthro_7-0-0 collectionobject ns2:collectionobjects_common briefDescription,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.briefDescription,Object Identification Information,"",Brief description,briefDescriptions,briefDescription,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common briefDescription,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.briefDescription,Object Identification Information,"",Brief description,briefDescriptions,briefDescription,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common computedCurrentLocation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.computedCurrentLocation,Object Identification Information,"",Computed current location,"",computedCurrentLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common computedCurrentLocation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.computedCurrentLocation,Object Identification Information,"",Computed current location,"",computedCurrentLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro ethnoFileCode,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ethnoFileCode,Object Identification Information,"",Ethnographic file code,ethnoFileCodes,ethnoFileCode,string,n,y,n,authority: concept/ethfilecode,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro ethnoFileCode,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ethnoFileCode,Object Identification Information,"",Ethnographic file code,ethnoFileCodes,ethnoFileCode,string,n,y,n,authority: concept/ethfilecode,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common publishTo,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.publishTo,Object Identification Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common publishTo,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.publishTo,Object Identification Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inventoryStatus,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inventoryStatus,Object Identification Information,"",Inventory status,inventoryStatusList,inventoryStatus,string,n,y,n,vocabulary: inventorystatus,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inventoryStatus,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inventoryStatus,Object Identification Information,"",Inventory status,inventoryStatusList,inventoryStatus,string,n,y,n,vocabulary: inventorystatus,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameCurrency,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameCurrency,Object Identification Information,Object name,Object name currency,objectNameList > objectNameGroup,objectNameCurrency,string,n,n,y,option list: nameCurrencies,"current, out of date, unknown", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameCurrency,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameCurrency,Object Identification Information,Object name,Object name currency,objectNameList > objectNameGroup,objectNameCurrency,string,n,n,y,option list: nameCurrencies,"current, out of date, unknown", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameSystem,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameSystem,Object Identification Information,Object name,Object name system,objectNameList > objectNameGroup,objectNameSystem,string,n,n,y,option list: nameSystems,"AASLH Nomenclature, Bennyhoff Olivella bead typology, Getty Art & Architecture Thesaurus, Gifford worked bone typology, Gifford worked shell typology, Heizer projectile point typology, Justice projectile point typology, Meighan historic glass bead typology, Treganza clay artifact typology, no system", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameSystem,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameSystem,Object Identification Information,Object name,Object name system,objectNameList > objectNameGroup,objectNameSystem,string,n,n,y,option list: nameSystems,"AASLH Nomenclature, Bennyhoff Olivella bead typology, Getty Art & Architecture Thesaurus, Gifford worked bone typology, Gifford worked shell typology, Heizer projectile point typology, Justice projectile point typology, Local OHC, Meighan historic glass bead typology, Treganza clay artifact typology, no system", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameType,Object Identification Information,Object name,Object name type,objectNameList > objectNameGroup,objectNameType,string,n,n,y,option list: nameTypes,"classified, denomination, simple, taxonomic, typological", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameType,Object Identification Information,Object name,Object name type,objectNameList > objectNameGroup,objectNameType,string,n,n,y,option list: nameTypes,"classified, denomination, simple, taxonomic, typological", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameLanguage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLanguage,Object Identification Information,Object name,Object name language,objectNameList > objectNameGroup,objectNameLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameLanguage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameLanguage,Object Identification Information,Object name,Object name language,objectNameList > objectNameGroup,objectNameLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectNameNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameNote,Object Identification Information,Object name,Object name note,objectNameList > objectNameGroup,objectNameNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectNameNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectNameNote,Object Identification Information,Object name,Object name note,objectNameList > objectNameGroup,objectNameNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPeopleType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleType,Object Identification Information,Associated cultural group,Associated cultural group type of assoc.,assocPeopleGroupList > assocPeopleGroup,assocPeopleType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPeopleType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleType,Object Identification Information,Associated cultural group,Associated cultural group type of assoc.,assocPeopleGroupList > assocPeopleGroup,assocPeopleType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPeopleNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleNote,Object Identification Information,Associated cultural group,Associated cultural group note,assocPeopleGroupList > assocPeopleGroup,assocPeopleNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPeopleNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPeopleNote,Object Identification Information,Associated cultural group,Associated cultural group note,assocPeopleGroupList > assocPeopleGroup,assocPeopleNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common comment,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.comment,Object Identification Information,"",Comment,comments,comment,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common comment,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.comment,Object Identification Information,"",Comment,comments,comment,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_annotation annotationType,anthro_7-0-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationType,Object Identification Information,Annotation,Annotation type,annotationGroupList > annotationGroup,annotationType,string,n,n,y,vocabulary: annotationtype,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_annotation annotationType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationType,Object Identification Information,Annotation,Annotation type,annotationGroupList > annotationGroup,annotationType,string,n,n,y,vocabulary: annotationtype,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_annotation annotationNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationNote,Object Identification Information,Annotation,Annotation note,annotationGroupList > annotationGroup,annotationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_annotation annotationNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationNote,Object Identification Information,Annotation,Annotation note,annotationGroupList > annotationGroup,annotationNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_annotation annotationDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationDate,Object Identification Information,Annotation,Annotation date,annotationGroupList > annotationGroup,annotationDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_annotation annotationDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationDate,Object Identification Information,Annotation,Annotation date,annotationGroupList > annotationGroup,annotationDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_annotation annotationAuthor,anthro_7-0-0,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationAuthor,Object Identification Information,Annotation,Annotation author,annotationGroupList > annotationGroup,annotationAuthor,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_annotation annotationAuthor,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_annotation,ns2:collectionobjects_annotation,collectionobjects_annotation.annotationAuthor,Object Identification Information,Annotation,Annotation author,annotationGroupList > annotationGroup,annotationAuthor,string,n,n,y,authority: person/local,"", +anthro_7-0-0 collectionobject ext.dimension measuredPart,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPart,Object Identification Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed", +ohc_1-0-18_7-2 collectionobject ext.dimension measuredPart,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPart,Object Identification Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed", +anthro_7-0-0 collectionobject ext.dimension dimensionSummary,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimensionSummary,Object Identification Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.dimension dimensionSummary,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimensionSummary,Object Identification Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.dimension dimension,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimension,Object Identification Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width", +ohc_1-0-18_7-2 collectionobject ext.dimension dimension,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.dimension,Object Identification Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, length, running-time, target, thickness, volume, weight, width", +anthro_7-0-0 collectionobject ext.dimension measuredBy,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredBy,Object Identification Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ext.dimension measuredBy,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredBy,Object Identification Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ext.dimension measurementMethod,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementMethod,Object Identification Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station", +ohc_1-0-18_7-2 collectionobject ext.dimension measurementMethod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementMethod,Object Identification Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station", +anthro_7-0-0 collectionobject ext.dimension value,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.value,Object Identification Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.dimension value,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.value,Object Identification Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.dimension measurementUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementUnit,Object Identification Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons", +ohc_1-0-18_7-2 collectionobject ext.dimension measurementUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measurementUnit,Object Identification Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"acres, carats, centimeters, cubic-centimeters, feet, grams, inches, kilograms, liters, meters, millimeters, minutes, pixels, pounds, square-feet, stories", +anthro_7-0-0 collectionobject ext.dimension valueQualifier,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueQualifier,Object Identification Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.dimension valueQualifier,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueQualifier,Object Identification Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.dimension valueDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueDate,Object Identification Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.dimension valueDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.valueDate,Object Identification Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ext.dimension measuredPartNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPartNote,Object Identification Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.dimension measuredPartNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ext.dimension,ext.dimension.measuredPartNote,Object Identification Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common materialComponent,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponent,Object Identification Information,Material,Material component,materialGroupList > materialGroup,materialComponent,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common materialComponent,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponent,Object Identification Information,Material,Material component,materialGroupList > materialGroup,materialComponent,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common materialComponentNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponentNote,Object Identification Information,Material,Material component note,materialGroupList > materialGroup,materialComponentNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common materialComponentNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialComponentNote,Object Identification Information,Material,Material component note,materialGroupList > materialGroup,materialComponentNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common materialName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialName,Object Identification Information,Material,Material name,materialGroupList > materialGroup,materialName,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common materialName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialName,Object Identification Information,Material,Material name,materialGroupList > materialGroup,materialName,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common materialSource,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialSource,Object Identification Information,Material,Material source,materialGroupList > materialGroup,materialSource,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common materialSource,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.materialSource,Object Identification Information,Material,Material source,materialGroupList > materialGroup,materialSource,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common title,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.title,Object Identification Information,Title,Title,titleGroupList > titleGroup,title,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common title,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.title,Object Identification Information,Title,Title,titleGroupList > titleGroup,title,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common titleLanguage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleLanguage,Object Identification Information,Title,Title language,titleGroupList > titleGroup,titleLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common titleLanguage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleLanguage,Object Identification Information,Title,Title language,titleGroupList > titleGroup,titleLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common titleType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleType,Object Identification Information,Title,Title type,titleGroupList > titleGroup,titleType,string,n,n,y,option list: titleTypes,"assigned-by-artist, collection, generic, popular, series, trade", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common titleType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleType,Object Identification Information,Title,Title type,titleGroupList > titleGroup,titleType,string,n,n,y,option list: titleTypes,"assigned-by-artist, book-title, collection, site", +anthro_7-0-0 collectionobject ns2:collectionobjects_common titleTranslation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslation,Object Identification Information,Title > Title translation,Title translation,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common titleTranslation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslation,Object Identification Information,Title > Title translation,Title translation,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common titleTranslationLanguage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslationLanguage,Object Identification Information,Title > Title translation,Title translation language,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslationLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common titleTranslationLanguage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.titleTranslationLanguage,Object Identification Information,Title > Title translation,Title translation language,titleGroupList > titleGroup > titleTranslationSubGroupList > titleTranslationSubGroup,titleTranslationLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common usage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usage,Object Identification Information,Context of use,Usage,usageGroupList > usageGroup,usage,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common usage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usage,Object Identification Information,Context of use,Usage,usageGroupList > usageGroup,usage,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common usageNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usageNote,Object Identification Information,Context of use,Usage note,usageGroupList > usageGroup,usageNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common usageNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.usageNote,Object Identification Information,Context of use,Usage note,usageGroupList > usageGroup,usageNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionDateGroup,Object Collection Information,"",Field collection date,"",fieldCollectionDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionDateGroup,Object Collection Information,"",Field collection date,"",fieldCollectionDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionMethod,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionMethod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro fieldLocVerbatim,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.fieldLocVerbatim,Object Collection Information,"",Field collection place (verbatim),"",fieldLocVerbatim,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro fieldLocVerbatim,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.fieldLocVerbatim,Object Collection Information,"",Field collection place (verbatim),"",fieldLocVerbatim,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionSource,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionSource,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollector,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollector,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionNumber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionNumber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldColEventName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldColEventName,Object Collection Information,"",Field collection event name,fieldColEventNames,fieldColEventName,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldColEventName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldColEventName,Object Collection Information,"",Field collection event name,fieldColEventNames,fieldColEventName,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionFeature,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionFeature,Object Collection Information,"",Field collection feature,"",fieldCollectionFeature,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionFeature,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionFeature,Object Collection Information,"",Field collection feature,"",fieldCollectionFeature,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common fieldCollectionNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common fieldCollectionNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionDateGroup,Object Production Information,"",Production date,objectProductionDateGroupList,objectProductionDateGroup,structured date group,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionDateGroup,Object Production Information,"",Production date,objectProductionDateGroupList,objectProductionDateGroup,structured date group,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common technique,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technique,Object Production Information,Production technique,Production technique,techniqueGroupList > techniqueGroup,technique,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common technique,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.technique,Object Production Information,Production technique,Production technique,techniqueGroupList > techniqueGroup,technique,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common techniqueType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.techniqueType,Object Production Information,Production technique,Production technique type,techniqueGroupList > techniqueGroup,techniqueType,string,n,n,y,vocabulary: prodtechniquetype,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common techniqueType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.techniqueType,Object Production Information,Production technique,Production technique type,techniqueGroupList > techniqueGroup,techniqueType,string,n,n,y,vocabulary: prodtechniquetype,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlace,Object Production Information,Production place,Production place,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlace,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlace,Object Production Information,Production place,Production place,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlace,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPlaceRole,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlaceRole,Object Production Information,Production place,Production place role,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlaceRole,string,n,n,y,vocabulary: prodplacerole,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPlaceRole,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPlaceRole,Object Production Information,Production place,Production place role,objectProductionPlaceGroupList > objectProductionPlaceGroup,objectProductionPlaceRole,string,n,n,y,vocabulary: prodplacerole,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionReason,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionReason,Object Production Information,"",Production reason,objectProductionReasons,objectProductionReason,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionReason,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionReason,Object Production Information,"",Production reason,objectProductionReasons,objectProductionReason,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPeople,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeople,Object Production Information,Production cultural group,Production cultural group,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeople,string,n,n,y,authority: concept/archculture; authority: concept/ethculture,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPeople,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeople,Object Production Information,Production cultural group,Production cultural group,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeople,string,n,n,y,authority: concept/archculture; authority: concept/ethculture,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPeopleRole,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeopleRole,Object Production Information,Production cultural group,Production cultural group role,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeopleRole,string,n,n,y,vocabulary: prodpeoplerole,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPeopleRole,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPeopleRole,Object Production Information,Production cultural group,Production cultural group role,objectProductionPeopleGroupList > objectProductionPeopleGroup,objectProductionPeopleRole,string,n,n,y,vocabulary: prodpeoplerole,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPerson,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPerson,Object Production Information,Production person,Production person,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPerson,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPerson,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPerson,Object Production Information,Production person,Production person,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPerson,string,n,n,y,authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionPersonRole,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPersonRole,Object Production Information,Production person,Production person role,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPersonRole,string,n,n,y,vocabulary: prodpersonrole,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionPersonRole,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionPersonRole,Object Production Information,Production person,Production person role,objectProductionPersonGroupList > objectProductionPersonGroup,objectProductionPersonRole,string,n,n,y,vocabulary: prodpersonrole,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionOrganization,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganization,Object Production Information,Production organization,Production organization,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganization,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionOrganization,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganization,Object Production Information,Production organization,Production organization,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganization,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionOrganizationRole,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganizationRole,Object Production Information,Production organization,Production organization role,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganizationRole,string,n,n,y,vocabulary: prodorgrole,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionOrganizationRole,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionOrganizationRole,Object Production Information,Production organization,Production organization role,objectProductionOrganizationGroupList > objectProductionOrganizationGroup,objectProductionOrganizationRole,string,n,n,y,vocabulary: prodorgrole,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectProductionNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionNote,Object Production Information,"",Production note,"",objectProductionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectProductionNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectProductionNote,Object Production Information,"",Production note,"",objectProductionNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraInventoryName,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraInventoryName,Repatriation and NAGPRA Compliance Information,"",NAGPRA inventory,nagpraInventoryNames,nagpraInventoryName,string,n,y,n,vocabulary: nagprainventory,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraInventoryName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraInventoryName,Repatriation and NAGPRA Compliance Information,"",NAGPRA inventory,nagpraInventoryNames,nagpraInventoryName,string,n,y,n,vocabulary: nagprainventory,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraCategory,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCategory,Repatriation and NAGPRA Compliance Information,"",Museum NAGPRA category determination,nagpraCategories,nagpraCategory,string,n,y,n,vocabulary: nagpracategory,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraCategory,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCategory,Repatriation and NAGPRA Compliance Information,"",Museum NAGPRA category determination,nagpraCategories,nagpraCategory,string,n,y,n,vocabulary: nagpracategory,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra graveAssocCode,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.graveAssocCode,Repatriation and NAGPRA Compliance Information,"",Grave association code,graveAssocCodes,graveAssocCode,string,n,y,n,vocabulary: graveassoccode,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra graveAssocCode,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.graveAssocCode,Repatriation and NAGPRA Compliance Information,"",Grave association code,graveAssocCodes,graveAssocCode,string,n,y,n,vocabulary: graveassoccode,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraNote,Repatriation and NAGPRA Compliance Information,"",NAGPRA note,nagpraNotes,nagpraNote,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraNote,Repatriation and NAGPRA Compliance Information,"",NAGPRA note,nagpraNotes,nagpraNote,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra repatriationNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.repatriationNote,Repatriation and NAGPRA Compliance Information,"",Repatriation note,repatriationNotes,repatriationNote,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra repatriationNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.repatriationNote,Repatriation and NAGPRA Compliance Information,"",Repatriation note,repatriationNotes,repatriationNote,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraCulturalDetermination,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCulturalDetermination,Repatriation and NAGPRA Compliance Information,"",NAGPRA cultural determination note,nagpraCulturalDeterminations,nagpraCulturalDetermination,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraCulturalDetermination,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraCulturalDetermination,Repatriation and NAGPRA Compliance Information,"",NAGPRA cultural determination note,nagpraCulturalDeterminations,nagpraCulturalDetermination,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraDetermCulture,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermCulture,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination culture,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermCulture,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraDetermCulture,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermCulture,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination culture,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermCulture,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraDetermType,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermType,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination type,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermType,string,n,n,y,vocabulary: nagpradetermtype,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraDetermType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermType,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination type,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermType,string,n,n,y,vocabulary: nagpradetermtype,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraDetermBy,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermBy,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination by,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraDetermBy,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermBy,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination by,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraDetermNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermNote,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination note,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraDetermNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraDetermNote,Repatriation and NAGPRA Compliance Information,Cultural determination,Cultural determination note,nagpraDetermGroupList > nagpraDetermGroup,nagpraDetermNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraReportFiled,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiled,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiled,boolean,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraReportFiled,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiled,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiled,boolean,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledWith,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledWith,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed with,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledWith,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledWith,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledWith,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed with,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledWith,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledBy,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledBy,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed by,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledBy,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledBy,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed by,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledDate,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed date,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledDate,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledDate,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,NAGPRA report filed date,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledDate,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledNote,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,Reporting note,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_nagpra nagpraReportFiledNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_nagpra,ns2:collectionobjects_nagpra,collectionobjects_nagpra.nagpraReportFiledNote,Repatriation and NAGPRA Compliance Information,Reported to National NAGPRA,Reporting note,nagpraReportFiledGroupList > nagpraReportFiledGroup,nagpraReportFiledNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare culturalCareNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.culturalCareNote,Cultural Care Information,"",Cultural care note,culturalCareNotes,culturalCareNote,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare culturalCareNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.culturalCareNote,Cultural Care Information,"",Cultural care note,culturalCareNotes,culturalCareNote,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare limitationType,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationType,Cultural Care Information,Access limitation,Access limitation type,accessLimitationsGroupList > accessLimitationsGroup,limitationType,string,n,n,y,vocabulary: limitationtype,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare limitationType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationType,Cultural Care Information,Access limitation,Access limitation type,accessLimitationsGroupList > accessLimitationsGroup,limitationType,string,n,n,y,vocabulary: limitationtype,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare limitationLevel,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationLevel,Cultural Care Information,Access limitation,Access limitation level,accessLimitationsGroupList > accessLimitationsGroup,limitationLevel,string,n,n,y,vocabulary: limitationlevel,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare limitationLevel,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationLevel,Cultural Care Information,Access limitation,Access limitation level,accessLimitationsGroupList > accessLimitationsGroup,limitationLevel,string,n,n,y,vocabulary: limitationlevel,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare limitationDetails,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationDetails,Cultural Care Information,Access limitation,Access limitation detail,accessLimitationsGroupList > accessLimitationsGroup,limitationDetails,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare limitationDetails,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.limitationDetails,Cultural Care Information,Access limitation,Access limitation detail,accessLimitationsGroupList > accessLimitationsGroup,limitationDetails,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare requester,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requester,Cultural Care Information,Access limitation,Access limitation requestor,accessLimitationsGroupList > accessLimitationsGroup,requester,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare requester,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requester,Cultural Care Information,Access limitation,Access limitation requestor,accessLimitationsGroupList > accessLimitationsGroup,requester,string,n,n,y,authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare requestOnBehalfOf,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestOnBehalfOf,Cultural Care Information,Access limitation,Access limitation requested on behalf of,accessLimitationsGroupList > accessLimitationsGroup,requestOnBehalfOf,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare requestOnBehalfOf,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestOnBehalfOf,Cultural Care Information,Access limitation,Access limitation requested on behalf of,accessLimitationsGroupList > accessLimitationsGroup,requestOnBehalfOf,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_culturalcare requestDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestDate,Cultural Care Information,Access limitation,Access limitation request date,accessLimitationsGroupList > accessLimitationsGroup,requestDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_culturalcare requestDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_culturalcare,ns2:collectionobjects_culturalcare,collectionobjects_culturalcare.requestDate,Cultural Care Information,Access limitation,Access limitation request date,accessLimitationsGroupList > accessLimitationsGroup,requestDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common form,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.form,Object Description Information,"",Form,forms,form,string,n,y,n,option list: forms,"bagged, bottled, boxed, dry, ground, in can or tin, in drum, mounted, pinned, thin section, unknown, wet, wrapped", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common form,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.form,Object Description Information,"",Form,forms,form,string,n,y,n,option list: forms,"dried fungus, egg, envelope, feather, fossil, fossil tracks, hair, herbarium sheet, liquid preservation, live mount, mineral, nest, ore, pellet, pinned, pressed plant, replica, rock, seeds, shell, skeletal, slide, study skin, tanned hide, wood sample", +anthro_7-0-0 collectionobject ns2:collectionobjects_common copyNumber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.copyNumber,Object Description Information,"",Copy number,"",copyNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common copyNumber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.copyNumber,Object Description Information,"",Copy number,"",copyNumber,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common editionNumber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.editionNumber,Object Description Information,"",Edition number,"",editionNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common editionNumber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.editionNumber,Object Description Information,"",Edition number,"",editionNumber,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common style,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.style,Object Description Information,"",Style,styles,style,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common style,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.style,Object Description Information,"",Style,styles,style,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common color,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.color,Object Description Information,"",Color,colors,color,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common color,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.color,Object Description Information,"",Color,colors,color,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common apparelSize,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.apparelSize,Object Description Information,"",Apparel size,apparelSizes,apparelSize,string,n,y,n,vocabulary: apparelsizes,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_ohc apparelSize,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_ohc,ns2:collectionobjects_ohc,collectionobjects_ohc.apparelSize,Object Description Information,"",Apparel size,apparelSizes,apparelSize,string,n,y,n,vocabulary: apparelsizes,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common physicalDescription,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.physicalDescription,Object Description Information,"",Physical description,"",physicalDescription,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common physicalDescription,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.physicalDescription,Object Description Information,"",Lettered parts,"",physicalDescription,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common distinguishingFeatures,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distinguishingFeatures,Object Description Information,"",Distinguishing features,"",distinguishingFeatures,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common distinguishingFeatures,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.distinguishingFeatures,Object Description Information,"",Distinguishing features,"",distinguishingFeatures,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectComponentName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentName,Object Description Information,Object component,Object component name,objectComponentGroupList > objectComponentGroup,objectComponentName,string,n,n,y,option list: objectComponentNames,"blade, buttonhole, handle, sleeve", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectComponentName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentName,Object Description Information,Object component,Object component name,objectComponentGroupList > objectComponentGroup,objectComponentName,string,n,n,y,option list: objectComponentNames,"blade, buttonhole, handle, sleeve", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectComponentInformation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentInformation,Object Description Information,Object component,Object component information,objectComponentGroupList > objectComponentGroup,objectComponentInformation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectComponentInformation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectComponentInformation,Object Description Information,Object component,Object component information,objectComponentGroupList > objectComponentGroup,objectComponentInformation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common sex,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.sex,Object Description Information,Biological Information,Sex,"",sex,string,n,n,n/a,option list: sexes,"female, male", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common sex,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.sex,Object Description Information,Biological Information,Sex,"",sex,string,n,n,n/a,option list: sexes,"female, indeterminate, male, mixed", +anthro_7-0-0 collectionobject ns2:collectionobjects_common phase,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.phase,Object Description Information,Biological Information,Phase,"",phase,string,n,n,n/a,option list: phases,"adult/mature, egg, indeterminate, larva, multiple, seed, subadult/immature, unknown", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common phase,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.phase,Object Description Information,Biological Information,Phase,"",phase,string,n,n,n/a,option list: phases,"adult/mature, egg, fetus, indeterminate, larva, multiple, pupa, seed, subadult/immature, unknown", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ageQualifier,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageQualifier,Object Description Information,Biological Information > Age,Age qualifier,"",ageQualifier,string,n,n,n/a,vocabulary: agequalifier,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ageQualifier,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageQualifier,Object Description Information,Biological Information > Age,Age qualifier,"",ageQualifier,string,n,n,n/a,vocabulary: agequalifier,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common age,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.age,Object Description Information,Biological Information > Age,Age value,"",age,integer,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common age,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.age,Object Description Information,Biological Information > Age,Age value,"",age,integer,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ageUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageUnit,Object Description Information,Biological Information > Age,Age unit,"",ageUnit,string,n,n,n/a,option list: ageUnits,"days, months, weeks, years", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ageUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ageUnit,Object Description Information,Biological Information > Age,Age unit,"",ageUnit,string,n,n,n/a,option list: ageUnits,"days, months, weeks, years", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension taxon,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.taxon,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification scientific name,taxonomicIdentGroupList > taxonomicIdentGroup,taxon,string,n,n,y,authority: taxon/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension taxon,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.taxon,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification scientific name,taxonomicIdentGroupList > taxonomicIdentGroup,taxon,string,n,n,y,authority: taxon/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension qualifier,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.qualifier,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification qualifier,taxonomicIdentGroupList > taxonomicIdentGroup,qualifier,string,n,n,y,vocabulary: taxonqualifier,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension qualifier,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.qualifier,Object Description Information,Biological Information > Determination history > Taxonomic identification,Taxonomic identification qualifier,taxonomicIdentGroupList > taxonomicIdentGroup,qualifier,string,n,n,y,vocabulary: taxonqualifier,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension identBy,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identBy,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification by,taxonomicIdentGroupList > taxonomicIdentGroup,identBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension identBy,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identBy,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification by,taxonomicIdentGroupList > taxonomicIdentGroup,identBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension identDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identDateGroup,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification date,taxonomicIdentGroupList > taxonomicIdentGroup,identDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension identDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identDateGroup,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification date,taxonomicIdentGroupList > taxonomicIdentGroup,identDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension institution,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.institution,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification institution,taxonomicIdentGroupList > taxonomicIdentGroup,institution,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension institution,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.institution,Object Description Information,Biological Information > Determination history > Identification by,Taxonomic identification institution,taxonomicIdentGroupList > taxonomicIdentGroup,institution,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension identKind,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identKind,Object Description Information,Biological Information > Determination history,Taxonomic identification kind,taxonomicIdentGroupList > taxonomicIdentGroup,identKind,string,n,n,y,vocabulary: taxonkind,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension identKind,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.identKind,Object Description Information,Biological Information > Determination history,Taxonomic identification kind,taxonomicIdentGroupList > taxonomicIdentGroup,identKind,string,n,n,y,vocabulary: taxonkind,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension reference,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.reference,Object Description Information,Biological Information > Determination history > Reference > Bibliographic Reference Information,Taxonomic identification reference source,taxonomicIdentGroupList > taxonomicIdentGroup,reference,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension reference,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.reference,Object Description Information,Biological Information > Determination history > Reference > Bibliographic Reference Information,Taxonomic identification reference source,taxonomicIdentGroupList > taxonomicIdentGroup,reference,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension refPage,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.refPage,Object Description Information,Biological Information > Determination history > Reference,Taxonomic identification reference page,taxonomicIdentGroupList > taxonomicIdentGroup,refPage,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension refPage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.refPage,Object Description Information,Biological Information > Determination history > Reference,Taxonomic identification reference page,taxonomicIdentGroupList > taxonomicIdentGroup,refPage,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_naturalhistory_extension notes,anthro_7-0-0,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.notes,Object Description Information,Biological Information > Determination history,Taxonomic identification note,taxonomicIdentGroupList > taxonomicIdentGroup,notes,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_naturalhistory_extension notes,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_naturalhistory_extension,ns2:collectionobjects_naturalhistory_extension,collectionobjects_naturalhistory_extension.notes,Object Description Information,Biological Information > Determination history,Taxonomic identification note,taxonomicIdentGroupList > taxonomicIdentGroup,notes,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro minIndividuals,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.minIndividuals,Object Description Information,Commingled Remains > Commingled remains,Commingled remains min. number of individuals,commingledRemainsGroupList > commingledRemainsGroup,minIndividuals,integer,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro minIndividuals,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.minIndividuals,Object Description Information,Commingled Remains > Commingled remains,Commingled remains min. number of individuals,commingledRemainsGroupList > commingledRemainsGroup,minIndividuals,integer,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro bone,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.bone,Object Description Information,Commingled Remains > Commingled remains,Commingled remains bone,commingledRemainsGroupList > commingledRemainsGroup,bone,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro bone,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.bone,Object Description Information,Commingled Remains > Commingled remains,Commingled remains bone,commingledRemainsGroupList > commingledRemainsGroup,bone,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro side,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.side,Object Description Information,Commingled Remains > Commingled remains,Commingled remains side,commingledRemainsGroupList > commingledRemainsGroup,side,string,n,n,y,vocabulary: bodyside,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro side,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.side,Object Description Information,Commingled Remains > Commingled remains,Commingled remains side,commingledRemainsGroupList > commingledRemainsGroup,side,string,n,n,y,vocabulary: bodyside,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro count,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.count,Object Description Information,Commingled Remains > Commingled remains,Commingled remains count,commingledRemainsGroupList > commingledRemainsGroup,count,integer,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro count,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.count,Object Description Information,Commingled Remains > Commingled remains,Commingled remains count,commingledRemainsGroupList > commingledRemainsGroup,count,integer,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro dentition,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.dentition,Object Description Information,Commingled Remains > Commingled remains,Commingled remains dentition present?,commingledRemainsGroupList > commingledRemainsGroup,dentition,boolean,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro dentition,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.dentition,Object Description Information,Commingled Remains > Commingled remains,Commingled remains dentition present?,commingledRemainsGroupList > commingledRemainsGroup,dentition,boolean,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro sex,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.sex,Object Description Information,Commingled Remains > Commingled remains,Commingled remains sex,commingledRemainsGroupList > commingledRemainsGroup,sex,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro sex,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.sex,Object Description Information,Commingled Remains > Commingled remains,Commingled remains sex,commingledRemainsGroupList > commingledRemainsGroup,sex,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro ageRange,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ageRange,Object Description Information,Commingled Remains > Commingled remains,Commingled remains age range represented,commingledRemainsGroupList > commingledRemainsGroup,ageRange,string,n,n,y,vocabulary: agerange,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro ageRange,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.ageRange,Object Description Information,Commingled Remains > Commingled remains,Commingled remains age range represented,commingledRemainsGroupList > commingledRemainsGroup,ageRange,string,n,n,y,vocabulary: agerange,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro mortuaryTreatment,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatment,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatment,string,n,n,y,vocabulary: mortuarytreatment,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro mortuaryTreatment,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatment,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatment,string,n,n,y,vocabulary: mortuarytreatment,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro mortuaryTreatmentNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatmentNote,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment note,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatmentNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro mortuaryTreatmentNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.mortuaryTreatmentNote,Object Description Information,Commingled Remains > Commingled remains > Mortuary treatment,Mortuary treatment note,commingledRemainsGroupList > commingledRemainsGroup > mortuaryTreatmentGroupList > mortuaryTreatmentGroup,mortuaryTreatmentNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro behrensmeyerSingleLower,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerSingleLower,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Single/lower,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerSingleLower,string,n,n,y,vocabulary: behrensmeyer,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro behrensmeyerSingleLower,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerSingleLower,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Single/lower,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerSingleLower,string,n,n,y,vocabulary: behrensmeyer,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro behrensmeyerUpper,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerUpper,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Upper,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerUpper,string,n,n,y,vocabulary: behrensmeyer,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro behrensmeyerUpper,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.behrensmeyerUpper,Object Description Information,Commingled Remains > Commingled remains > Behrensmeyer stage,Behrensmeyer stage - Upper,commingledRemainsGroupList > commingledRemainsGroup,behrensmeyerUpper,string,n,n,y,vocabulary: behrensmeyer,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro commingledRemainsNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.commingledRemainsNote,Object Description Information,Commingled Remains > Commingled remains,Commingled remains note,commingledRemainsGroupList > commingledRemainsGroup,commingledRemainsNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro commingledRemainsNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.commingledRemainsNote,Object Description Information,Commingled Remains > Commingled remains,Commingled remains note,commingledRemainsGroupList > commingledRemainsGroup,commingledRemainsNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentDescription,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDescription,Object Description Information,Content,Content description,"",contentDescription,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentDescription,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDescription,Object Description Information,Content,Content description,"",contentDescription,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentLanguage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentLanguage,Object Description Information,Content,Content language,contentLanguages,contentLanguage,string,n,y,n,vocabulary: languages,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentLanguage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentLanguage,Object Description Information,Content,Content language,contentLanguages,contentLanguage,string,n,y,n,vocabulary: languages,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentActivity,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentActivity,Object Description Information,Content,Content activity,contentActivities,contentActivity,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentActivity,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentActivity,Object Description Information,Content,Content activity,contentActivities,contentActivity,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDateGroup,Object Description Information,Content,Content date,"",contentDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentDateGroup,Object Description Information,Content,Content date,"",contentDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentPosition,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPosition,Object Description Information,Content,Content position,contentPositions,contentPosition,string,n,y,n,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentPosition,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPosition,Object Description Information,Content,Content position,contentPositions,contentPosition,string,n,y,n,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentObject,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObject,Object Description Information,Content > Content object,Content object name,contentObjectGroupList > contentObjectGroup,contentObject,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentObject,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObject,Object Description Information,Content > Content object,Content object name,contentObjectGroupList > contentObjectGroup,contentObject,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentObjectType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObjectType,Object Description Information,Content > Content object,Content object type,contentObjectGroupList > contentObjectGroup,contentObjectType,string,n,n,y,option list: contentObjectTypes,"food, furniture", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentObjectType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentObjectType,Object Description Information,Content > Content object,Content object type,contentObjectGroupList > contentObjectGroup,contentObjectType,string,n,n,y,option list: contentObjectTypes,"food, furniture", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentPeople,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPeople,Object Description Information,Content,Content people,contentPeoples,contentPeople,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentPeople,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPeople,Object Description Information,Content,Content people,contentPeoples,contentPeople,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentPerson,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPerson,Object Description Information,Content,Content person,contentPersons,contentPerson,string,n,y,n,authority: person/local; authority: person/ulan,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentPerson,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPerson,Object Description Information,Content,Content person,contentPersons,contentPerson,string,n,y,n,authority: person/local; authority: person/ulan,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPlace,Object Description Information,Content,Content place,contentPlaces,contentPlace,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentPlace,Object Description Information,Content,Content place,contentPlaces,contentPlace,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentScript,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentScript,Object Description Information,Content,Content script,contentScripts,contentScript,string,n,y,n,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentScript,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentScript,Object Description Information,Content,Content script,contentScripts,contentScript,string,n,y,n,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentOrganization,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOrganization,Object Description Information,Content,Content organization,contentOrganizations,contentOrganization,string,n,y,n,authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentOrganization,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOrganization,Object Description Information,Content,Content organization,contentOrganizations,contentOrganization,string,n,y,n,authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentEventName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventName,Object Description Information,Content > Content event,Content event name,contentEventNameGroupList > contentEventNameGroup,contentEventName,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentEventName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventName,Object Description Information,Content > Content event,Content event name,contentEventNameGroupList > contentEventNameGroup,contentEventName,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentEventNameType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventNameType,Object Description Information,Content > Content event,Content event type,contentEventNameGroupList > contentEventNameGroup,contentEventNameType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentEventNameType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentEventNameType,Object Description Information,Content > Content event,Content event type,contentEventNameGroupList > contentEventNameGroup,contentEventNameType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentOther,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOther,Object Description Information,Content > Content other,Content other name,contentOtherGroupList > contentOtherGroup,contentOther,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentOther,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOther,Object Description Information,Content > Content other,Content other name,contentOtherGroupList > contentOtherGroup,contentOther,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentOtherType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOtherType,Object Description Information,Content > Content other,Content other type,contentOtherGroupList > contentOtherGroup,contentOtherType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentOtherType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentOtherType,Object Description Information,Content > Content other,Content other type,contentOtherGroupList > contentOtherGroup,contentOtherType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common contentNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentNote,Object Description Information,Content,Content note,"",contentNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common contentNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.contentNote,Object Description Information,Content,Content note,"",contentNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContent,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContent,Object Description Information,Textual Inscription > Textual inscription,Textual inscription content,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContent,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContent,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContent,Object Description Information,Textual Inscription > Textual inscription,Textual inscription content,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContent,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentInscriber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInscriber,Object Description Information,Textual Inscription > Textual inscription,Textual inscription inscriber,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInscriber,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentInscriber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInscriber,Object Description Information,Textual Inscription > Textual inscription,Textual inscription inscriber,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInscriber,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentLanguage,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentLanguage,Object Description Information,Textual Inscription > Textual inscription,Textual inscription language,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentLanguage,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentLanguage,Object Description Information,Textual Inscription > Textual inscription,Textual inscription language,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentDateGroup,Object Description Information,Textual Inscription > Textual inscription,Textual inscription date,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentDateGroup,Object Description Information,Textual Inscription > Textual inscription,Textual inscription date,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentPosition,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentPosition,Object Description Information,Textual Inscription > Textual inscription,Textual inscription position,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentPosition,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentPosition,Object Description Information,Textual Inscription > Textual inscription,Textual inscription position,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentScript,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentScript,Object Description Information,Textual Inscription > Textual inscription,Textual inscription script,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentScript,string,n,n,y,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentScript,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentScript,Object Description Information,Textual Inscription > Textual inscription,Textual inscription script,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentScript,string,n,n,y,option list: scripts,"carolingian-miniscule, gothic-script, palmer-method, roman-cursive, rustic-capitals, spencerian-method, square-capitals", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentType,Object Description Information,Textual Inscription > Textual inscription,Textual inscription type,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentType,Object Description Information,Textual Inscription > Textual inscription,Textual inscription type,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentMethod,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentMethod,Object Description Information,Textual Inscription > Textual inscription,Textual inscription method,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentMethod,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentMethod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentMethod,Object Description Information,Textual Inscription > Textual inscription,Textual inscription method,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentMethod,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentInterpretation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInterpretation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription interpretation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInterpretation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentInterpretation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentInterpretation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription interpretation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentInterpretation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentTranslation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTranslation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription translation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTranslation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentTranslation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTranslation,Object Description Information,Textual Inscription > Textual inscription,Textual inscription translation,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTranslation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionContentTransliteration,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTransliteration,Object Description Information,Textual Inscription > Textual inscription,Textual inscription transliteration,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTransliteration,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionContentTransliteration,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionContentTransliteration,Object Description Information,Textual Inscription > Textual inscription,Textual inscription transliteration,textualInscriptionGroupList > textualInscriptionGroup,inscriptionContentTransliteration,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescription,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescription,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription description,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescription,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescription,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescription,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription description,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescription,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionInscriber,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInscriber,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription inscriber,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInscriber,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionInscriber,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInscriber,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription inscriber,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInscriber,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionDateGroup,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription date,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionDateGroup,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription date,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionPosition,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionPosition,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription position,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionPosition,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionPosition,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription position,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionPosition,string,n,n,y,option list: positions,"back, base, bottom, front, inside, left, outside, recto, right, rim, top, verso", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionType,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription type,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionType,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription type,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionType,string,n,n,y,option list: inscriptionTypes,"brand, credits, decoration, estate-stamp, graffiti, label, maker's-mark, plaque, signage", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionMethod,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionMethod,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription method,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionMethod,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionMethod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionMethod,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription method,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionMethod,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common inscriptionDescriptionInterpretation,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInterpretation,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription interpretation,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInterpretation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common inscriptionDescriptionInterpretation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.inscriptionDescriptionInterpretation,Object Description Information,Non-Textual Inscription > Non-textual inscription,Non-textual inscription interpretation,nonTextualInscriptionGroupList > nonTextualInscriptionGroup,inscriptionDescriptionInterpretation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocActivity,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivity,Object History and Association Information,Associations > Associated activity,Associated activity,assocActivityGroupList > assocActivityGroup,assocActivity,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocActivity,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivity,Object History and Association Information,Associations > Associated activity,Associated activity,assocActivityGroupList > assocActivityGroup,assocActivity,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocActivityType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityType,Object History and Association Information,Associations > Associated activity,Associated activity type,assocActivityGroupList > assocActivityGroup,assocActivityType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocActivityType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityType,Object History and Association Information,Associations > Associated activity,Associated activity type,assocActivityGroupList > assocActivityGroup,assocActivityType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocActivityNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityNote,Object History and Association Information,Associations > Associated activity,Associated activity note,assocActivityGroupList > assocActivityGroup,assocActivityNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocActivityNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocActivityNote,Object History and Association Information,Associations > Associated activity,Associated activity note,assocActivityGroupList > assocActivityGroup,assocActivityNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocObject,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObject,Object History and Association Information,Associations > Associated object,Associated object,assocObjectGroupList > assocObjectGroup,assocObject,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocObject,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObject,Object History and Association Information,Associations > Associated object,Associated object,assocObjectGroupList > assocObjectGroup,assocObject,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocObjectType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectType,Object History and Association Information,Associations > Associated object,Associated object type,assocObjectGroupList > assocObjectGroup,assocObjectType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocObjectType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectType,Object History and Association Information,Associations > Associated object,Associated object type,assocObjectGroupList > assocObjectGroup,assocObjectType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocObjectNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectNote,Object History and Association Information,Associations > Associated object,Associated object note,assocObjectGroupList > assocObjectGroup,assocObjectNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocObjectNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocObjectNote,Object History and Association Information,Associations > Associated object,Associated object note,assocObjectGroupList > assocObjectGroup,assocObjectNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocConcept,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConcept,Object History and Association Information,Associations > Associated concept,Associated concept,assocConceptGroupList > assocConceptGroup,assocConcept,string,n,n,y,authority: concept/associated,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocConcept,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConcept,Object History and Association Information,Associations > Associated concept,Associated concept,assocConceptGroupList > assocConceptGroup,assocConcept,string,n,n,y,authority: concept/associated,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocConceptType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptType,Object History and Association Information,Associations > Associated concept,Associated concept type,assocConceptGroupList > assocConceptGroup,assocConceptType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocConceptType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptType,Object History and Association Information,Associations > Associated concept,Associated concept type,assocConceptGroupList > assocConceptGroup,assocConceptType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocConceptNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptNote,Object History and Association Information,Associations > Associated concept,Associated concept note,assocConceptGroupList > assocConceptGroup,assocConceptNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocConceptNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocConceptNote,Object History and Association Information,Associations > Associated concept,Associated concept note,assocConceptGroupList > assocConceptGroup,assocConceptNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocCulturalContext,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContext,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContext,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocCulturalContext,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContext,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContext,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocCulturalContextType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextType,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity type,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocCulturalContextType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextType,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity type,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocCulturalContextNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextNote,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity note,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocCulturalContextNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocCulturalContextNote,Object History and Association Information,Associations > Associated cultural affinity,Associated cultural affinity note,assocCulturalContextGroupList > assocCulturalContextGroup,assocCulturalContextNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocOrganization,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganization,Object History and Association Information,Associations > Associated organization,Associated organization,assocOrganizationGroupList > assocOrganizationGroup,assocOrganization,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocOrganization,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganization,Object History and Association Information,Associations > Associated organization,Associated organization,assocOrganizationGroupList > assocOrganizationGroup,assocOrganization,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocOrganizationType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationType,Object History and Association Information,Associations > Associated organization,Associated organization type,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocOrganizationType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationType,Object History and Association Information,Associations > Associated organization,Associated organization type,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocOrganizationNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationNote,Object History and Association Information,Associations > Associated organization,Associated organization note,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocOrganizationNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocOrganizationNote,Object History and Association Information,Associations > Associated organization,Associated organization note,assocOrganizationGroupList > assocOrganizationGroup,assocOrganizationNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPerson,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPerson,Object History and Association Information,Associations > Associated person,Associated person,assocPersonGroupList > assocPersonGroup,assocPerson,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPerson,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPerson,Object History and Association Information,Associations > Associated person,Associated person,assocPersonGroupList > assocPersonGroup,assocPerson,string,n,n,y,authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPersonType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonType,Object History and Association Information,Associations > Associated person,Associated person type,assocPersonGroupList > assocPersonGroup,assocPersonType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPersonType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonType,Object History and Association Information,Associations > Associated person,Associated person type,assocPersonGroupList > assocPersonGroup,assocPersonType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPersonNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonNote,Object History and Association Information,Associations > Associated person,Associated person note,assocPersonGroupList > assocPersonGroup,assocPersonNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPersonNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPersonNote,Object History and Association Information,Associations > Associated person,Associated person note,assocPersonGroupList > assocPersonGroup,assocPersonNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlace,Object History and Association Information,Associations > Associated place,Associated place,assocPlaceGroupList > assocPlaceGroup,assocPlace,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlace,Object History and Association Information,Associations > Associated place,Associated place,assocPlaceGroupList > assocPlaceGroup,assocPlace,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPlaceType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceType,Object History and Association Information,Associations > Associated place,Associated place type,assocPlaceGroupList > assocPlaceGroup,assocPlaceType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPlaceType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceType,Object History and Association Information,Associations > Associated place,Associated place type,assocPlaceGroupList > assocPlaceGroup,assocPlaceType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocPlaceNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceNote,Object History and Association Information,Associations > Associated place,Associated place note,assocPlaceGroupList > assocPlaceGroup,assocPlaceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocPlaceNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocPlaceNote,Object History and Association Information,Associations > Associated place,Associated place note,assocPlaceGroupList > assocPlaceGroup,assocPlaceNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventName,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventName,Object History and Association Information,Associations > Associated event,Associated event,"",assocEventName,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventName,Object History and Association Information,Associations > Associated event,Associated event,"",assocEventName,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventNameType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNameType,Object History and Association Information,Associations > Associated event,Associated event type,"",assocEventNameType,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventNameType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNameType,Object History and Association Information,Associations > Associated event,Associated event type,"",assocEventNameType,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventOrganization,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventOrganization,Object History and Association Information,Associations,Associated event organization,assocEventOrganizations,assocEventOrganization,string,n,y,n,authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventOrganization,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventOrganization,Object History and Association Information,Associations,Associated event organization,assocEventOrganizations,assocEventOrganization,string,n,y,n,authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventPeople,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPeople,Object History and Association Information,Associations,Associated event people,assocEventPeoples,assocEventPeople,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventPeople,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPeople,Object History and Association Information,Associations,Associated event people,assocEventPeoples,assocEventPeople,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventPerson,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPerson,Object History and Association Information,Associations,Associated event person,assocEventPersons,assocEventPerson,string,n,y,n,authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventPerson,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPerson,Object History and Association Information,Associations,Associated event person,assocEventPersons,assocEventPerson,string,n,y,n,authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPlace,Object History and Association Information,Associations,Associated event place,assocEventPlaces,assocEventPlace,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventPlace,Object History and Association Information,Associations,Associated event place,assocEventPlaces,assocEventPlace,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocEventNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNote,Object History and Association Information,Associations,Associated event note,"",assocEventNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocEventNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocEventNote,Object History and Association Information,Associations,Associated event note,"",assocEventNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocStructuredDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocStructuredDateGroup,Object History and Association Information,Associations > Associated date,Associated date value,assocDateGroupList > assocDateGroup,assocStructuredDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocStructuredDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocStructuredDateGroup,Object History and Association Information,Associations > Associated date,Associated date value,assocDateGroupList > assocDateGroup,assocStructuredDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocDateType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateType,Object History and Association Information,Associations > Associated date,Associated date type,assocDateGroupList > assocDateGroup,assocDateType,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocDateType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateType,Object History and Association Information,Associations > Associated date,Associated date type,assocDateGroupList > assocDateGroup,assocDateType,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common assocDateNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateNote,Object History and Association Information,Associations > Associated date,Associated date note,assocDateGroupList > assocDateGroup,assocDateNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common assocDateNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.assocDateNote,Object History and Association Information,Associations > Associated date,Associated date note,assocDateGroupList > assocDateGroup,assocDateNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common objectHistoryNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectHistoryNote,Object History and Association Information,"",Object history note,"",objectHistoryNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common objectHistoryNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.objectHistoryNote,Object History and Association Information,"",Object history note,"",objectHistoryNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwner,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwner,Object History and Association Information,Previous ownership,Previous owner name,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwner,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwner,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwner,Object History and Association Information,Previous ownership,Previous owner name,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwner,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipDateGroup,Object History and Association Information,Previous ownership,Previous ownership date,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipDateGroup,Object History and Association Information,Previous ownership,Previous ownership date,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipCategory,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipCategory,Object History and Association Information,Previous ownership,Previous ownership category,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipCategory,string,n,n,y,option list: ownershipCategories,"company, private, public", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipCategory,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipCategory,Object History and Association Information,Previous ownership,Previous ownership category,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipCategory,string,n,n,y,option list: ownershipCategories,"company, private, public", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPlace,Object History and Association Information,Previous ownership,Previous ownership place,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPlace,string,n,n,y,authority: place/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPlace,Object History and Association Information,Previous ownership,Previous ownership place,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPlace,string,n,n,y,authority: place/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipMethod,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipMethod,Object History and Association Information,Previous ownership,Previous ownership exchange method,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipMethod,string,n,n,y,option list: ownershipExchangeMethods,"bequest, exchange, gift, purchase, transfer, treasure", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipMethod,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipMethod,Object History and Association Information,Previous ownership,Previous ownership exchange method,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipMethod,string,n,n,y,option list: ownershipExchangeMethods,"bequest, exchange, gift, purchase, transfer, treasure", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceCurrency,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceCurrency,Object History and Association Information,Previous ownership,Previous ownership exchange price currency,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceCurrency,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceCurrency,Object History and Association Information,Previous ownership,Previous ownership exchange price currency,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceAmount,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceAmount,Object History and Association Information,Previous ownership,Previous ownership exchange price amount,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceAmount,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipPriceAmount,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipPriceAmount,Object History and Association Information,Previous ownership,Previous ownership exchange price amount,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipPriceAmount,float,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_anthro anthroOwnershipNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipNote,Object History and Association Information,Previous ownership,Previous ownership note,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_anthro anthroOwnershipNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ns2:collectionobjects_anthro,collectionobjects_anthro.anthroOwnershipNote,Object History and Association Information,Previous ownership,Previous ownership note,anthroOwnershipGroupList > anthroOwnershipGroup,anthroOwnershipNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ownersPersonalExperience,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalExperience,Object Owner's Contribution Information,"",Owner's personal experience,"",ownersPersonalExperience,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ownersPersonalExperience,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalExperience,Object Owner's Contribution Information,"",Owner's personal experience,"",ownersPersonalExperience,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ownersPersonalResponse,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalResponse,Object Owner's Contribution Information,"",Owner's personal response,"",ownersPersonalResponse,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ownersPersonalResponse,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersPersonalResponse,Object Owner's Contribution Information,"",Owner's personal response,"",ownersPersonalResponse,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ownersReference,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersReference,Object Owner's Contribution Information,"",Owner's reference,ownersReferences,ownersReference,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ownersReference,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersReference,Object Owner's Contribution Information,"",Owner's reference,ownersReferences,ownersReference,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common ownersContributionNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersContributionNote,Object Owner's Contribution Information,"",Owner's contribution note,"",ownersContributionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common ownersContributionNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.ownersContributionNote,Object Owner's Contribution Information,"",Owner's contribution note,"",ownersContributionNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common viewersRole,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersRole,Object Viewer's Contribution Information,"",Viewer's role,"",viewersRole,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common viewersRole,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersRole,Object Viewer's Contribution Information,"",Viewer's role,"",viewersRole,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common viewersPersonalExperience,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalExperience,Object Viewer's Contribution Information,"",Viewer's personal experience,"",viewersPersonalExperience,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common viewersPersonalExperience,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalExperience,Object Viewer's Contribution Information,"",Viewer's personal experience,"",viewersPersonalExperience,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common viewersPersonalResponse,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalResponse,Object Viewer's Contribution Information,"",Viewer's personal response,"",viewersPersonalResponse,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common viewersPersonalResponse,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersPersonalResponse,Object Viewer's Contribution Information,"",Viewer's personal response,"",viewersPersonalResponse,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common viewersReference,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersReference,Object Viewer's Contribution Information,"",Viewer's reference,viewersReferences,viewersReference,string,n,y,n,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common viewersReference,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersReference,Object Viewer's Contribution Information,"",Viewer's reference,viewersReferences,viewersReference,string,n,y,n,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common viewersContributionNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersContributionNote,Object Viewer's Contribution Information,"",Viewer's contribution note,"",viewersContributionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common viewersContributionNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.viewersContributionNote,Object Viewer's Contribution Information,"",Viewer's contribution note,"",viewersContributionNote,string,n,n,n/a,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common reference,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.reference,Bibliographic Reference Information,Reference > Bibliographic Reference Information,Reference,referenceGroupList > referenceGroup,reference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common reference,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.reference,Bibliographic Reference Information,Reference > Bibliographic Reference Information,Reference,referenceGroupList > referenceGroup,reference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common referenceNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.referenceNote,Bibliographic Reference Information,Reference,Reference note,referenceGroupList > referenceGroup,referenceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common referenceNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.referenceNote,Bibliographic Reference Information,Reference,Reference note,referenceGroupList > referenceGroup,referenceNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality fieldLocVerbatim,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocVerbatim,Locality Information,Locality,Field collection location verbatim,localityGroupList > localityGroup,fieldLocVerbatim,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocVerbatim,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocVerbatim,Locality Information,Locality,Field collection location verbatim,localityGroupList > localityGroup,fieldLocVerbatim,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality fieldLocPlace,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocPlace,Locality Information,Locality,Field collection place,localityGroupList > localityGroup,fieldLocPlace,string,n,n,y,authority: place/local,"", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocPlace,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocPlace,Locality Information,Locality,Field collection place,localityGroupList > localityGroup,fieldLocPlace,string,n,n,y,authority: place/local,"", +anthro_7-0-0 collectionobject ext.locality taxonomicRange,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.taxonomicRange,Locality Information,Locality,Geographic range of taxon,localityGroupList > localityGroup,taxonomicRange,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality taxonomicRange,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.taxonomicRange,Locality Information,Locality,Geographic range of taxon,localityGroupList > localityGroup,taxonomicRange,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality fieldLocCounty,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCounty,Locality Information,Locality,County,localityGroupList > localityGroup,fieldLocCounty,string,n,n,y,option list: counties,"Abbeville, Aberdeenshire (UK), Acadia, Acaponeta, Accomack, Ada, Adair, Adams, Addison, Agusan del Norte, Ahuacatlan, Aiken, Aitkin, Alachua, Alamance, Alameda, Alamosa, Albany, Albemarle, Alcona, Alcorn, Aleutians East, Aleutians West, Alexander, Alexandria, Alfalfa, Alger, Allamakee, Allegan, Allegany, Alleghany, Allegheny, Allen, Allendale, Alpena, Alpine, Amador, Amazonas, Amelia, Amherst, Amite, Anchorage, Anderson, Andrew, Andrews, Androscoggin, Angelina, Anglesey, Anglesey (UK), Angus (Forfarshire) (UK), Anne Arundel, Anoka, Anson, Antelope, Antonina, Antrim, Antrim (UK), Apache, Appanoose, Appling, Appomattox, Aransas, Arapahoe, Archer, Archuleta, Arenac, Argyll (Argyllshire) (UK), Arkansas, Arlington, Armagh (UK), Armstrong, Aroostook, Arran, Island of, Arthur, Ascension, Ashe, Ashland, Ashley, Ashtabula, Asotin, Assumption, Atascosa, Atchison, Athens, Atkinson, Atlantic, Atoka, Attala, Audrain, Audubon, Auglaize, Augusta, Aurora, Austin, Autauga, Avery, Avoyelles, Ayopaya, Ayrshire (UK), Ba, Baca, Bacon, Bagua, Bailey, Baker, Baldwin, Ballard, Baltimore, Bamberg, Bandera, Banffshire (UK), Banks, Banner, Bannock, Baraga, Barber, Barbour, Barnes, Barnstable, Barnwell, Barreiras, Barren, Barron, Barrow, Barry, Bartholomew, Barton, Bartow, Bastrop, Bates, Bath, Baxter, Bay, Bayfield, Baylor, Beadle, Bear Lake, Beaufort, Beauregard, Beaver, Beaverhead, Becker, Beckham, Bedford, Bedfordshire (UK), Bee, Belknap, Bell, Belmont, Beltrami, Ben Hill, Benewah, Bennett, Bennington, Benson, Bent, Benton, Benzie, Bergen, Berkeley, Berks, Berkshire, Berkshire (UK), Bernalillo, Berrien, Bertie, Berwickshire (UK), Bethel, Bexar, Bibb, Bienville, Big Horn, Big Stone, Billings, Bingham, Black Hawk, Blackford, Bladen, Blaine, Blair, Blanco, Bland, Bleckley, Bledsoe, Blount, Blue Earth, Boise, Bolivar, Bollinger, Bon Homme, Bonaventure, Bond, Bongara, Bonner, Bonneville, Boone, Borden, Bosque, Bossier, Botetourt, Bothwell Municipality, Bottineau, Boulder, Boundary, Bourbon, Bowie, Bowman, Box Butte, Box Elder, Boyd, Boyle, Bracken, Bradford, Bradley, Branch, Brantley, Braxton, Brazoria, Brazos, Breathitt, Breckinridge, Brecknockshire (Breconshire) (UK), Bremer, Brevard, Brewster, Briscoe, Bristol, Bristol Bay, Broadwater, Bronx, Brooke, Brookings, Brooks, Broome, Broomfield, Broward, Brown, Brule, Brunswick, Bryan, Buchanan, Buckingham, Buckinghamshire (UK), Bucks, Buena Vista, Buffalo, Bullitt, Bulloch, Bullock, Buncombe, Bureau, Burke, Burleigh, Burleson, Burlington, Burnet, Burnett, Burnie Municipality, Burt, Buteshire (UK), Butler, Butte, Butts, Cabarrus, Cabell, Cache, Caddo, Caernarfonshire (Carnarvonshire) (UK), Caithness (UK), Cajamarca, Calaveras, Calcasieu, Caldwell, Caledonia, Calhoun, Callahan, Callaway, Calloway, Calumet, Calvert, Camas, Cambria, Cambridgeshire (UK), Camden, Cameron, Camp, Campbell, Canadian, Candelaria, Candler, Cannon, Canyon, Cape Girardeau, Cape May, Capiz, Carangola, Carbon, Cardiganshire (UK), Caribou, Carlisle, Carlton, Carmarthenshire (UK), Caroline, Carroll, Carson, Carson City, Carter, Carteret, Carver, Cascade, Casey, Cass, Cassia, Castro, Castrovirreina, Caswell, Catahoula, Catawba, Catoosa, Catron, Cattaraugus, Cautin, Cavalier, Cayuga, Cecil, Cedar, Celendin, Centre, Cerro Gordo, Chachapoyas, Chaffee, Chambers, Champaign, Chariton, Charles, Charles City, Charles Mix, Charleston, Charlevoix, Charlotte, Charlottesville, Charlton, Chase, Chatham, Chattahoochee, Chattooga, Chautauqua, Chaves, Cheatham, Cheboygan, Chelan, Chemung, Chenango, Cherokee, Cherry, Chesapeake, Cheshire, Cheshire (UK), Chester, Chesterfield, Cheyenne, Chiang Mai, Changwat, Chickasaw, Chicligasta, Chicot, Childress, Chilton, Chippewa, Chisago, Chittenden, Choctaw, Chouteau, Chowan, Christian, Churchill, Cibola, Cimarron, Citrus, Clackamas, Clackmannanshire (UK), Claiborne, Clallam, Clare, Clarendon, Clarion, Clark, Clarke, Clatsop, Clay, Clayton, Clear Creek, Clearfield, Clearwater, Cleburne, Clermont, Cleveland, Clinch, Clinton, Cloud, Coahoma, Coal, Cobb, Cochise, Cochran, Cocke, Coconino, Codington, Coffee, Coffey, Coke, Colbert, Cole, Coleman, Coles, Colfax, Colleton, Collier, Collin, Collingsworth, Colonial Heights, Colorado, Colquitt, Columbia, Columbiana, Columbus, Colusa, Comal, Comanche, Comondú, Compostela, Concho, Concordia, Conecuh, Conejos, Contra Costa, Converse, Conway, Cook, Cooke, Cooper, Coos, Coosa, Copiah, Cornwall, Cornwall (UK), Corson, Cortland, Corumba, Coryell, Coshocton, Costilla, Cottle, Cotton, Cottonwood, Covington, Coweta, Cowley, Cowlitz, Craig, Craighead, Crane, Craven, Crawford, Creek, Crenshaw, Crisp, Crittenden, Crockett, Cromartyshire (UK), Crook, Crosby, Cross, Crow Wing, Crowley, Culberson, Cullman, Culpeper, Cumberland, Cumberland (UK), Cuming, Currituck, Curry, Custer, Cuyahoga, Dade, Daggett, Dakota, Dale, Dallam, Dallas, Dane, Daniels, Danville, Dare, Darke, Darlington, Dauphin, Davidson, Davie, Daviess, Davis, Davison, Dawes, Dawson, Day, De Baca, De Kalb, De Soto, De Witt, DeKalb, DeSoto, DeWitt, Deaf Smith, Dearborn, Decatur, Deer Lodge, Defiance, Del Norte, Delaware, Deloraine Municipality, Delta, Denali, Denbighshire (UK), Dent, Denton, Denver, Derbyshire (UK), Des Moines, Deschutes, Desha, Deuel, Devon (UK), Dewey, Diamantina, Dickens, Dickenson, Dickey, Dickinson, Dickson, Dillingham, Dillon, Dimmit, Dinwiddie, District of Columbia, Divide, Dixie, Dixon, Doddridge, Dodge, Dolores, Dona Ana, Doniphan, Donley, Dooly, Door, Dorchester, Dorset (UK), Dougherty, Douglas, Down (UK), Doña Ana, Drew, Du Page, DuPage, Dubois, Dubuque, Duchesne, Dukes, Dumbartonshire (UK), Dumfriesshire (UK), Dundy, Dunklin, Dunn, Duplin, Durham, Durham (UK), Dutchess, Duval, Dyer, Eagle, Early, East Baton Rouge, East Carroll, East Feliciana, East Lothian (UK), Eastland, Eaton, Eau Claire, Echols, Ector, Eddy, Edgar, Edgecombe, Edgefield, Edmonson, Edmunds, Edwards, Effingham, El Dorado, El Paso, Elbert, Elk, Elkhart, Elko, Elliott, Ellis, Ellsworth, Elmore, Emanuel, Emery, Emmet, Emmons, Emporia, Ensenada, Erath, Erie, Escambia, Esmeralda, Esmeraldas, Esperance Municipality, Essex, Essex (MA), Essex (UK), Estill, Etowah, Eureka, Evangeline, Evans, Fairbanks North Star, Fairfax, Fairfield, Fall River, Fallon, Falls, Falls Church, Fannin, Faribault, Faulk, Faulkner, Fauquier, Fayette, Fentress, Fergus, Fermanagh (UK), Ferry, Fife (UK), Fillmore, Fingal Municipality, Finney, Fisher, Flagler, Flathead, Fleming, Flintshire (UK), Florence, Florida, Floyd, Fluvanna, Foard, Fond Du Lac, Fond du Lac, Ford, Forest, Forrest, Forsyth, Fort Bend, Foster, Fountain, Franklin, Frederick, Fredericksburg, Freeborn, Freestone, Fremont, Fresno, Frio, Frontier, Fulton, Furnas, Gadsden, Gage, Gaines, Galapagos, Galax, Gallatin, Gallia, Galveston, Galway, Garden, Garfield, Garland, Garrard, Garrett, Garvin, Garza, Gasconade, Gaston, Gates, Geary, Geauga, Gem, Genesee, Geneva, Gentry, George, Georgetown, Gibson, Gila, Gilchrist, Giles, Gillespie, Gilliam, Gilmer, Gilpin, Glacier, Glades, Gladwin, Glamorgan (UK), Glamorgan Municipality, Glascock, Glasscock, Glenn, Glenorchy Municipality, Gloucester, Gloucestershire (UK), Glynn, Gogebic, Golden Valley, Goliad, Gonzales, Goochland, Goodhue, Gooding, Gordon, Gormanston Municipality, Goshen, Gosper, Gouveia, Gove, Grady, Grafton, Graham, Grainger, Grand, Grand Forks, Grand Isle, Grand Traverse, Granite, Grant, Granville, Gratiot, Graves, Gray, Grays Harbor, Grayson, Greeley, Green, Green Lake, Greenbrier, Greene, Greenlee, Greensville, Greenup, Greenville, Greenwood, Greer, Gregg, Gregory, Grenada, Griggs, Grimes, Grundy, Guadalupe, Guaraquecaba, Guaratuba, Guernsey, Guilford, Gulf, Gunnison, Guthrie, Gwinnett, Haakon, Habersham, Haines, Hale, Halifax, Hall, Hamblen, Hamilton, Hamilton Municipality, Hamlin, Hampden, Hampshire, Hampshire (UK), Hampton, Hancock, Hand, Hanover, Hansford, Hanson, Haralson, Hardee, Hardeman, Hardin, Harding, Hardy, Harford, Harlan, Harmon, Harnett, Harney, Harper, Harris, Harrison, Harrisonburg, Hart, Hartford, Hartley, Harvey, Haskell, Hawaii, Hawkins, Hayes, Hays, Haywood, Heard, Hemphill, Hempstead, Henderson, Hendricks, Hendry, Hennepin, Henrico, Henry, Herefordshire (UK), Herkimer, Hernando, Hertford, Hertfordshire (UK), Hettinger, Hickman, Hickory, Hidalgo, Highland, Highlands, Hill, Hillsborough, Hillsdale, Hinds, Hinsdale, Hitchcock, Hobart Municipality, Hocking, Hockley, Hodgeman, Hoke, Holmes, Holt, Honolulu, Hood, Hood River, Hooker, Hoonah–Angoon, Hopewell, Hopkins, Horry, Hot Spring, Hot Springs, Houghton, Houston, Howard, Howell, Huancabamba, Huanuco, Hubbard, Hudson, Hudspeth, Huerfano, Hughes, Humboldt, Humphreys, Hunt, Hunterdon, Huntingdon, Huntingdonshire (UK), Huntington, Huron, Hutchinson, Hyde, Iberia, Iberville, Ida, Idaho, Imperial, Independence, Indian River, Indiana, Ingham, Inverness-shire (UK), Inyo, Ionia, Iosco, Iowa, Iredell, Irion, Iron, Iroquois, Irwin, Isabella, Isanti, Island, Isle of Wight, Issaquena, Itasca, Itawamba, Ixtlan, Izard, Jack, Jackson, Jaguariaiya, Jalisco, James City, Jasper, Jay, Jeff Davis, Jefferson, Jefferson Davis, Jenkins, Jennings, Jerauld, Jerome, Jersey, Jessamine, Jewell, Jim Hogg, Jim Wells, Jo Daviess, Johnson, Johnston, Jolo Group, Jones, Josephine, Juab, Judith Basin, Juneau, Juniata, Juquila, Kalamazoo, Kalawao, Kalkaska, Kanabec, Kanawha, Kandavu, Kandiyohi, Kane, Kankakee, Karnes, Kauai, Kaufman, Kay, Kearney, Kearny, Keith, Kemper, Kenai Peninsula, Kendall, Kenedy, Kennebec, Kenosha, Kent, Kent (UK), Kentish Municipality, Kenton, Keokuk, Kepulauan, Kepulauan Kangean Islands, Kern, Kerr, Kershaw, Ketchikan Gateway, Kewaunee, Keweenaw, Keya Paha, Kidder, Kimball, Kimble, Kincardineshire (UK), King, King George, King William, King and Queen, Kingborough Municipality, Kingfisher, Kingman, Kings, Kingsbury, Kinney, Kinross-shire (UK), Kiowa, Kirkcudbrightshire (UK), Kit Carson, Kitsap, Kittitas, Kittson, Klamath, Kleberg, Klickitat, Knott, Knox, Kodiak Island, Koochiching, Kootenai, Korinthos, Koro, Kosciusko, Kossuth, La Crosse, La Paz, La Plata, La Salle, LaGrange, LaMoure, LaPorte, LaRue, LaSalle, Labette, Lac qui Parle, Lackawanna, Laclede, Lafayette, Lafourche, Lake, Lake and Peninsula, Lake of the Woods, Lamar, Lamas, Lamb, Lamoille, Lampasas, Lanarkshire (UK), Lancashire (UK), Lancaster, Lander, Lane, Langlade, Lanier, Lapeer, Laramie, Larecaja, Larimer, Las Animas, Lassen, Latah, Latimer, Lauderdale, Launceston Municipality, Laurel, Laurens, Lavaca, Lawrence, Le Flore, Le Sueur, Lea, Leake, Leavenworth, Lebanon, Lee, Leelanau, Leflore, Lehigh, Leicestershire (UK), Lemhi, Lenawee, Lenoir, Leon, Leslie, Letcher, Levy, Lewis, Lewis and Clark, Lexington, Liberty, Licking, Lilydale Municipality, Limestone, Lincoln, Lincolnshire (UK), Linn, Lipscomb, Litchfield, Little River, Live Oak, Livingston, Llano, Logan, Loja, Londonderry (UK), Long, Longford Municipality, Lonoke, Lorain, Loreto, Los Alamos, Los Angeles, Los Cabos, Loudon, Loudoun, Louisa, Loup, Love, Loving, Lowndes, Lubbock, Lucas, Luce, Lumpkin, Luna, Lunenburg, Luzerne, Lycoming, Lyman, Lynchburg, Lynn, Lyon, Mackinac, Macomb, Macon, Macoupin, Madera, Madison, Magoffin, Mahaska, Mahnomen, Mahoning, Major, Malheur, Manabi, Manassas, Manassas Park, Manatee, Manistee, Manitowoc, Marathon, Marengo, Maricopa, Maries, Marin, Marinette, Marion, Mariposa, Marlboro, Marquette, Marshall, Martin, Martinsville, Mason, Massac, Matagorda, Matanuska-Susitna, Mathews, Maui, Maury, Maverick, Mayes, McClain, McCone, McCook, McCormick, McCracken, McCreary, McCulloch, McCurtain, McDonald, McDonough, McDowell, McDuffie, McHenry, McIntosh, McKean, McKenzie, McKinley, McLean, McLennan, McLeod, McMinn, McMullen, McNairy, McPherson, Meade, Meagher, Mecklenburg, Mecosta, Medina, Meeker, Meigs, Mellette, Menard, Mendocino, Menifee, Menominee, Merced, Mercer, Merionethshire (UK), Meriwether, Merrick, Merrimack, Mesa, Metcalfe, Mexicali, Miahuatlan, Miami, Miami-Dade, Middlesex, Middlesex (UK), Midland, Midlothian (UK), Mifflin, Milam, Millard, Mille Lacs, Miller, Mills, Milwaukee, Miner, Mineral, Mingo, Minidoka, Minnehaha, Missaukee, Mississippi, Missoula, Mitchell, Mizque, Mobile, Modoc, Moffat, Mohave, Moniteau, Monmouth, Monmouthshire (UK), Mono, Monona, Monongalia, Monroe, Montague, Montcalm, Monterey, Montezuma, Montgomery, Montgomeryshire (UK), Montmorency, Montour, Montrose, Moody, Moore, Mora, Morayshire (UK), Morehouse, Morgan, Morrill, Morris, Morrison, Morro do Chapeu, Morrow, Morton, Motley, Moultrie, Mountrail, Mower, Muhlenberg, Mulegé, Multnomah, Murray, Muscatine, Muscogee, Muskegon, Muskingum, Muskogee, Musselshell, Nacogdoches, Nairnshire (UK), Nakhon Ratchasima, Changwat, Nance, Nantucket, Nantucket (MA), Napa, Nash, Nassau, Natchitoches, Natrona, Navajo, Navarro, Nelson, Nemaha, Neosho, Neshoba, Ness, Nevada, New Castle, New Hanover, New Haven, New Kent, New London, New Madrid, New Norfolk Municipality, New York, Newaygo, Newberry, Newport, Newport News, Newton, Nez Perc, Nez Perce, Niagara, Nicholas, Nicholson, Nicollet, Niobrara, Noble, Nobles, Nodaway, Nolan, Nome, Norfolk, Norfolk (UK), Norman, North Slope, Northampton, Northamptonshire (UK), Northumberland, Northumberland (UK), Northwest Arctic, Norton, Nottinghamshire (UK), Nottoway, Nowata, Noxubee, Nuckolls, Nueces, Nueva Vizcaya, Nye, O'Brien, Oakland, Oatlands Municipality, Obion, Ocean, Oceana, Ochiltree, Oconee, Oconto, Ogemaw, Ogle, Oglethorpe, Ohio, Okaloosa, Okanogan, Okeechobee, Okfuskee, Oklahoma, Okmulgee, Oktibbeha, Oldham, Oliver, Olmsted, Oneida, Onondaga, Onslow, Ontario, Ontonagon, Orange, Orangeburg, Oregon, Orkney (UK), Orleans, Osage, Osborne, Osceola, Oscoda, Oswego, Otero, Otoe, Otsego, Ottawa, Otter Tail, Ouachita, Ouray, Outagamie, Overton, Owen, Owsley, Owyhee, Oxford, Oxfordshire (UK), Ozark, Ozaukee, Pacific, Page, Palm Beach, Palmeira, Palo Alto, Palo Pinto, Pamlico, Pampanga, Pangasinan, Panola, Paranagua, Park, Parke, Parker, Parmer, Pasco, Pasquotank, Passaic, Patrick, Paulding, Pawnee, Payette, Payne, Peach, Pearl River, Pecos, Peeblesshire (UK), Pembina, Pembrokeshire (UK), Pemiscot, Pend Oreille, Pender, Pendleton, Penguin Municipality, Pennington, Penobscot, Peoria, Pepin, Perkins, Perquimans, Perry, Pershing, Person, Perthshire (UK), Petersburg, Petroleum, Pettis, Phelps, Philadelphia, Phillips, Piatt, Pickaway, Pickens, Pickett, Pierce, Pike, Pima, Pinal, Pine, Pinellas, Pipestone, Piscataquis, Pitkin, Pitt, Pittsburg, Pittsylvania, Piura, Piute, Placer, Plaquemines, Platte, Pleasants, Plumas, Plymouth, Pocahontas, Pochutla, Poinsett, Pointe Coupee, Polk, Pondera, Pontotoc, Pope, Poquoson, Portage, Porter, Portland Municipality, Portsmouth, Posey, Pottawatomie, Pottawattamie, Potter, Powder River, Powell, Power, Poweshiek, Powhatan, Prairie, Pratt, Preble, Prentiss, Presidio, Presque Isle, Preston, Price, Prince Edward, Prince George, Prince George's, Prince William, Prince of Wales-Hyder, Providence, Prowers, Pueblo, Pujili, Pulaski, Pushmataha, Putnam, Quay, Queen Anne's, Queen Elizabeth Islands, Queens, Quezon, Quitman, Quito, Rabun, Racine, Radford, Radnorshire (UK), Raiatea, Rains, Raleigh, Ralls, Ramsey, Randall, Randolph, Rankin, Ransom, Rapides, Rappahannock, Rarotonga, Ravalli, Rawlins, Ray, Reagan, Real, Red Lake, Red River, Red Willow, Redwood, Reeves, Refugio, Renfrewshire (UK), Reno, Rensselaer, Renville, Republic, Rewa, Reynolds, Rhea, Rice, Rich, Richardson, Richland, Richmond, Riley, Ringarooma Municipality, Ringgold, Rio Arriba, Rio Blanco, Rio Branco, Rio Grande, Rio Verde, Ripley, Ritchie, Riverside, Rizal, Roane, Roanoke, Roberts, Robertson, Robeson, Rock, Rock Island, Rockbridge, Rockcastle, Rockdale, Rockingham, Rockland, Rockwall, Roger Mills, Rogers, Rolette, Rooks, Roosevelt, Rosarito, Playas de, Roscommon, Roseau, Rosebud, Ross, Ross Municipality, Ross-shire (UK), Routt, Rowan, Roxburghshire (UK), Runnels, Rush, Rusk, Russell, Russell Islands, Rutherford, Rutland, Rutland (UK), Sabah, Sabine, Sac, Sacramento, Sagadahoc, Saginaw, Saguache, Salem, Saline, Salt Lake, Saluda, Sampson, San Augustine, San Benito, San Bernardino, San Blas, San Diego, San Francisco, San Ignacio, San Jacinto, San Joaquin, San Juan, San Luis Obispo, San Mateo, San Miguel, San Patricio, San Pedro Lagunillas, San Pedro Lagunitas, San Saba, Sanborn, Sanders, Sandoval, Sandusky, Sangamon, Sanilac, Sanpete, Santa Barbara, Santa Clara, Santa Cruz, Santa Fe, Santa Maria del Oro, Santa Rosa, Santa Victoria, Sarasota, Saratoga, Sarawak, Sargent, Sarpy, Sauk, Saunders, Sawyer, Schenectady, Schleicher, Schley, Schoharie, Schoolcraft, Schuyler, Schuylkill, Scioto, Scotland, Scott, Scotts Bluff, Scottsdale Municipality, Screven, Scurry, Searcy, Sebastian, Sedgwick, Selkirkshire (UK), Seminole, Seneca, Senyavin Islands, Sequatchie, Sequoyah, Sevier, Seward, Shackelford, Shannon, Sharkey, Sharp, Shasta, Shawano, Shawnee, Sheboygan, Sheffield Municipality, Shelby, Shenandoah, Sherburne, Sheridan, Sherman, Shetland (UK), Shiawassee, Shoshone, Shropshire (UK), Sibley, Sierra, Silver Bow, Simpson, Sioux, Siskiyou, Sitka, Skagit, Skagway, Skamania, Slope, Smith, Smyth, Snohomish, Snyder, Socorro, Sola de Vega, Solano, Somerset, Somerset (UK), Somervell, Sonoma, Sorell Municipality, Southampton, Southeast Fairbanks, Spalding, Spartanburg, Spencer, Spink, Spokane, Spotsylvania, Spring Bay Municipality, St. Bernard, St. Charles, St. Clair, St. Croix, St. Francis, St. Francois, St. Helena, St. James, St. John the Baptist, St. Johns, St. Joseph, St. Landry, St. Lawrence, St. Leonards Municipality, St. Louis, St. Lucie, St. Martin, St. Mary, St. Mary's, St. Tammany, Stafford, Staffordshire (UK), Stanislaus, Stanley, Stanly, Stanton, Stark, Starke, Starr, Staunton, Ste. Genevieve, Stearns, Steele, Stephens, Stephenson, Sterling, Steuben, Stevens, Stewart, Stillwater, Stirlingshire (UK), Stoddard, Stokes, Stone, Stonewall, Storey, Story, Strafford, Stutsman, Sublette, Sud Yungas, Suffolk, Suffolk (UK), Sullivan, Sully, Summers, Summit, Sumner, Sumter, Sunflower, Surrey (UK), Surry, Susquehanna, Sussex, Sussex (UK), Sutherland (UK), Sutter, Sutton, Suwannee, Swain, Sweet Grass, Sweetwater, Swift, Swisher, Switzerland, Tahiti, Talbot, Taliaferro, Talladega, Tallahatchie, Tallapoosa, Taltal, Tama, Taney, Tangipahoa, Taos, Tarrant, Tasman Municipality, Tate, Tattnall, Taylor, Tazewell, Tecate, Tehama, Telfair, Teller, Tensas, Tepic, Terrebonne, Terrell, Terry, Teton, Texas, Thayer, Thomas, Throckmorton, Thurston, Tift, Tijuana, Tillamook, Tillman, Tioga, Tippah, Tippecanoe, Tipton, Tishomingo, Titus, Todd, Tolland, Tom Green, Tompkins, Tompkins (NY), Tooele, Toole, Toombs, Torrance, Towner, Towns, Traill, Transylvania, Traverse, Travis, Treasure, Trego, Trempealeau, Treutlen, Trigg, Trimble, Trinity, Tripp, Troup, Trousdale, Trumbull, Tucker, Tulare, Tulsa, Tunica, Tuolumne, Turner, Tuscaloosa, Tuscarawas, Tuscola, Twiggs, Twin Falls, Tyler, Tyrone (UK), Tyrrell, Uinta, Uintah, Ulster, Ulverstone Municipality, Umatilla, Unicoi, Union, Unknown, Unknown, Upshur, Upson, Upton, Urubamba, Utah, Uvalde, Val Verde, Valdez–Cordova, Valencia, Valley, Van Buren, Van Wert, Van Zandt, Vance, Vanderburgh, Vanua Levu, Venango, Ventura, Vermilion, Vermillion, Vernon, Victoria, Vigo, Vilas, Vinton, Virginia Beach, Viti Levu, Volusia, Wabash, Wabasha, Wabaunsee, Wade Hampton, Wadena, Wagoner, Wahkiakum, Wake, Wakulla, Waldo, Walker, Walla Walla, Wallace, Waller, Wallowa, Walsh, Walthall, Walton, Walworth, Wapello, Waratah Municipality, Ward, Ware, Warren, Warrick, Warwickshire (UK), Wasatch, Wasco, Waseca, Washakie, Washburn, Washington, Washita, Washoe, Washtenaw, Watauga, Watonwan, Waukesha, Waupaca, Waushara, Wayne, Waynesboro, Weakley, Webb, Weber, Webster, Weld, Wells, West Baton Rouge, West Carroll, West Feliciana, West Lothian (Linlithgowshire) (UK), Westchester, Westmoreland, Westmorland (UK), Weston, Wetzel, Wexford, Wharton, Whatcom, Wheatland, Wheeler, White, White Pine, Whiteside, Whitfield, Whitley, Whitman, Wibaux, Wichita, Wicomico, Wigtownshire (UK), Wilbarger, Wilcox, Wilkes, Wilkin, Wilkinson, Will, Will (IL), Willacy, Williams, Williamsburg, Williamson, Wilson, Wiltshire (UK), Winchester, Windham, Windsor, Winkler, Winn, Winnebago, Winneshiek, Winona, Winston, Wirt, Wise, Wolfe, Wood, Woodbury, Woodford, Woodruff, Woods, Woodson, Woodward, Worcester, Worcestershire (UK), Worth, Wrangell, Wright, Wyandot, Wyandotte, Wyoming, Wythe, Yadkin, Yakima, Yakutat, Yalobusha, Yamhill, Yancey, Yankton, Yates, Yavapai, Yazoo, Yell, Yellow Medicine, Yellowstone, Yoakum, Yolo, York, Yorkshire (UK), Young, Yuba, Yukon–Koyukuk, Yuma, Zambales, Zapata, Zavala, Zeehan Municipality, Zhongdian, Ziebach", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocCounty,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCounty,Locality Information,Locality,County,localityGroupList > localityGroup,fieldLocCounty,string,n,n,y,option list: counties,"Abbeville, Aberdeenshire (UK), Acadia, Acaponeta, Accomack, Ada, Adair, Adams, Addison, Agusan del Norte, Ahuacatlan, Aiken, Aitkin, Alachua, Alamance, Alameda, Alamosa, Albany, Albemarle, Alcona, Alcorn, Aleutians East, Aleutians West, Alexander, Alexandria, Alfalfa, Alger, Allamakee, Allegan, Allegany, Alleghany, Allegheny, Allen, Allendale, Alpena, Alpine, Amador, Amazonas, Amelia, Amherst, Amite, Anchorage, Anderson, Andrew, Andrews, Androscoggin, Angelina, Anglesey, Anglesey (UK), Angus (Forfarshire) (UK), Anne Arundel, Anoka, Anson, Antelope, Antonina, Antrim, Antrim (UK), Apache, Appanoose, Appling, Appomattox, Aransas, Arapahoe, Archer, Archuleta, Arenac, Argyll (Argyllshire) (UK), Arkansas, Arlington, Armagh (UK), Armstrong, Aroostook, Arran, Island of, Arthur, Ascension, Ashe, Ashland, Ashley, Ashtabula, Asotin, Assumption, Atascosa, Atchison, Athens, Atkinson, Atlantic, Atoka, Attala, Audrain, Audubon, Auglaize, Augusta, Aurora, Austin, Autauga, Avery, Avoyelles, Ayopaya, Ayrshire (UK), Ba, Baca, Bacon, Bagua, Bailey, Baker, Baldwin, Ballard, Baltimore, Bamberg, Bandera, Banffshire (UK), Banks, Banner, Bannock, Baraga, Barber, Barbour, Barnes, Barnstable, Barnwell, Barreiras, Barren, Barron, Barrow, Barry, Bartholomew, Barton, Bartow, Bastrop, Bates, Bath, Baxter, Bay, Bayfield, Baylor, Beadle, Bear Lake, Beaufort, Beauregard, Beaver, Beaverhead, Becker, Beckham, Bedford, Bedfordshire (UK), Bee, Belknap, Bell, Belmont, Beltrami, Ben Hill, Benewah, Bennett, Bennington, Benson, Bent, Benton, Benzie, Bergen, Berkeley, Berks, Berkshire, Berkshire (UK), Bernalillo, Berrien, Bertie, Berwickshire (UK), Bethel, Bexar, Bibb, Bienville, Big Horn, Big Stone, Billings, Bingham, Black Hawk, Blackford, Bladen, Blaine, Blair, Blanco, Bland, Bleckley, Bledsoe, Blount, Blue Earth, Boise, Bolivar, Bollinger, Bon Homme, Bonaventure, Bond, Bongara, Bonner, Bonneville, Boone, Borden, Bosque, Bossier, Botetourt, Bothwell Municipality, Bottineau, Boulder, Boundary, Bourbon, Bowie, Bowman, Box Butte, Box Elder, Boyd, Boyle, Bracken, Bradford, Bradley, Branch, Brantley, Braxton, Brazoria, Brazos, Breathitt, Breckinridge, Brecknockshire (Breconshire) (UK), Bremer, Brevard, Brewster, Briscoe, Bristol, Bristol Bay, Broadwater, Bronx, Brooke, Brookings, Brooks, Broome, Broomfield, Broward, Brown, Brule, Brunswick, Bryan, Buchanan, Buckingham, Buckinghamshire (UK), Bucks, Buena Vista, Buffalo, Bullitt, Bulloch, Bullock, Buncombe, Bureau, Burke, Burleigh, Burleson, Burlington, Burnet, Burnett, Burnie Municipality, Burt, Buteshire (UK), Butler, Butte, Butts, Cabarrus, Cabell, Cache, Caddo, Caernarfonshire (Carnarvonshire) (UK), Caithness (UK), Cajamarca, Calaveras, Calcasieu, Caldwell, Caledonia, Calhoun, Callahan, Callaway, Calloway, Calumet, Calvert, Camas, Cambria, Cambridgeshire (UK), Camden, Cameron, Camp, Campbell, Canadian, Candelaria, Candler, Cannon, Canyon, Cape Girardeau, Cape May, Capiz, Carangola, Carbon, Cardiganshire (UK), Caribou, Carlisle, Carlton, Carmarthenshire (UK), Caroline, Carroll, Carson, Carson City, Carter, Carteret, Carver, Cascade, Casey, Cass, Cassia, Castro, Castrovirreina, Caswell, Catahoula, Catawba, Catoosa, Catron, Cattaraugus, Cautin, Cavalier, Cayuga, Cecil, Cedar, Celendin, Centre, Cerro Gordo, Chachapoyas, Chaffee, Chambers, Champaign, Chariton, Charles, Charles City, Charles Mix, Charleston, Charlevoix, Charlotte, Charlottesville, Charlton, Chase, Chatham, Chattahoochee, Chattooga, Chautauqua, Chaves, Cheatham, Cheboygan, Chelan, Chemung, Chenango, Cherokee, Cherry, Chesapeake, Cheshire, Cheshire (UK), Chester, Chesterfield, Cheyenne, Chiang Mai, Changwat, Chickasaw, Chicligasta, Chicot, Childress, Chilton, Chippewa, Chisago, Chittenden, Choctaw, Chouteau, Chowan, Christian, Churchill, Cibola, Cimarron, Citrus, Clackamas, Clackmannanshire (UK), Claiborne, Clallam, Clare, Clarendon, Clarion, Clark, Clarke, Clatsop, Clay, Clayton, Clear Creek, Clearfield, Clearwater, Cleburne, Clermont, Cleveland, Clinch, Clinton, Cloud, Coahoma, Coal, Cobb, Cochise, Cochran, Cocke, Coconino, Codington, Coffee, Coffey, Coke, Colbert, Cole, Coleman, Coles, Colfax, Colleton, Collier, Collin, Collingsworth, Colonial Heights, Colorado, Colquitt, Columbia, Columbiana, Columbus, Colusa, Comal, Comanche, Comondú, Compostela, Concho, Concordia, Conecuh, Conejos, Contra Costa, Converse, Conway, Cook, Cooke, Cooper, Coos, Coosa, Copiah, Cornwall, Cornwall (UK), Corson, Cortland, Corumba, Coryell, Coshocton, Costilla, Cottle, Cotton, Cottonwood, Covington, Coweta, Cowley, Cowlitz, Craig, Craighead, Crane, Craven, Crawford, Creek, Crenshaw, Crisp, Crittenden, Crockett, Cromartyshire (UK), Crook, Crosby, Cross, Crow Wing, Crowley, Culberson, Cullman, Culpeper, Cumberland, Cumberland (UK), Cuming, Currituck, Curry, Custer, Cuyahoga, Dade, Daggett, Dakota, Dale, Dallam, Dallas, Dane, Daniels, Danville, Dare, Darke, Darlington, Dauphin, Davidson, Davie, Daviess, Davis, Davison, Dawes, Dawson, Day, De Baca, De Kalb, De Soto, De Witt, DeKalb, DeSoto, DeWitt, Deaf Smith, Dearborn, Decatur, Deer Lodge, Defiance, Del Norte, Delaware, Deloraine Municipality, Delta, Denali, Denbighshire (UK), Dent, Denton, Denver, Derbyshire (UK), Des Moines, Deschutes, Desha, Deuel, Devon (UK), Dewey, Diamantina, Dickens, Dickenson, Dickey, Dickinson, Dickson, Dillingham, Dillon, Dimmit, Dinwiddie, District of Columbia, Divide, Dixie, Dixon, Doddridge, Dodge, Dolores, Dona Ana, Doniphan, Donley, Dooly, Door, Dorchester, Dorset (UK), Dougherty, Douglas, Down (UK), Doña Ana, Drew, Du Page, DuPage, Dubois, Dubuque, Duchesne, Dukes, Dumbartonshire (UK), Dumfriesshire (UK), Dundy, Dunklin, Dunn, Duplin, Durham, Durham (UK), Dutchess, Duval, Dyer, Eagle, Early, East Baton Rouge, East Carroll, East Feliciana, East Lothian (UK), Eastland, Eaton, Eau Claire, Echols, Ector, Eddy, Edgar, Edgecombe, Edgefield, Edmonson, Edmunds, Edwards, Effingham, El Dorado, El Paso, Elbert, Elk, Elkhart, Elko, Elliott, Ellis, Ellsworth, Elmore, Emanuel, Emery, Emmet, Emmons, Emporia, Ensenada, Erath, Erie, Escambia, Esmeralda, Esmeraldas, Esperance Municipality, Essex, Essex (MA), Essex (UK), Estill, Etowah, Eureka, Evangeline, Evans, Fairbanks North Star, Fairfax, Fairfield, Fall River, Fallon, Falls, Falls Church, Fannin, Faribault, Faulk, Faulkner, Fauquier, Fayette, Fentress, Fergus, Fermanagh (UK), Ferry, Fife (UK), Fillmore, Fingal Municipality, Finney, Fisher, Flagler, Flathead, Fleming, Flintshire (UK), Florence, Florida, Floyd, Fluvanna, Foard, Fond Du Lac, Fond du Lac, Ford, Forest, Forrest, Forsyth, Fort Bend, Foster, Fountain, Franklin, Frederick, Fredericksburg, Freeborn, Freestone, Fremont, Fresno, Frio, Frontier, Fulton, Furnas, Gadsden, Gage, Gaines, Galapagos, Galax, Gallatin, Gallia, Galveston, Galway, Garden, Garfield, Garland, Garrard, Garrett, Garvin, Garza, Gasconade, Gaston, Gates, Geary, Geauga, Gem, Genesee, Geneva, Gentry, George, Georgetown, Gibson, Gila, Gilchrist, Giles, Gillespie, Gilliam, Gilmer, Gilpin, Glacier, Glades, Gladwin, Glamorgan (UK), Glamorgan Municipality, Glascock, Glasscock, Glenn, Glenorchy Municipality, Gloucester, Gloucestershire (UK), Glynn, Gogebic, Golden Valley, Goliad, Gonzales, Goochland, Goodhue, Gooding, Gordon, Gormanston Municipality, Goshen, Gosper, Gouveia, Gove, Grady, Grafton, Graham, Grainger, Grand, Grand Forks, Grand Isle, Grand Traverse, Granite, Grant, Granville, Gratiot, Graves, Gray, Grays Harbor, Grayson, Greeley, Green, Green Lake, Greenbrier, Greene, Greenlee, Greensville, Greenup, Greenville, Greenwood, Greer, Gregg, Gregory, Grenada, Griggs, Grimes, Grundy, Guadalupe, Guaraquecaba, Guaratuba, Guernsey, Guilford, Gulf, Gunnison, Guthrie, Gwinnett, Haakon, Habersham, Haines, Hale, Halifax, Hall, Hamblen, Hamilton, Hamilton Municipality, Hamlin, Hampden, Hampshire, Hampshire (UK), Hampton, Hancock, Hand, Hanover, Hansford, Hanson, Haralson, Hardee, Hardeman, Hardin, Harding, Hardy, Harford, Harlan, Harmon, Harnett, Harney, Harper, Harris, Harrison, Harrisonburg, Hart, Hartford, Hartley, Harvey, Haskell, Hawaii, Hawkins, Hayes, Hays, Haywood, Heard, Hemphill, Hempstead, Henderson, Hendricks, Hendry, Hennepin, Henrico, Henry, Herefordshire (UK), Herkimer, Hernando, Hertford, Hertfordshire (UK), Hettinger, Hickman, Hickory, Hidalgo, Highland, Highlands, Hill, Hillsborough, Hillsdale, Hinds, Hinsdale, Hitchcock, Hobart Municipality, Hocking, Hockley, Hodgeman, Hoke, Holmes, Holt, Honolulu, Hood, Hood River, Hooker, Hoonah–Angoon, Hopewell, Hopkins, Horry, Hot Spring, Hot Springs, Houghton, Houston, Howard, Howell, Huancabamba, Huanuco, Hubbard, Hudson, Hudspeth, Huerfano, Hughes, Humboldt, Humphreys, Hunt, Hunterdon, Huntingdon, Huntingdonshire (UK), Huntington, Huron, Hutchinson, Hyde, Iberia, Iberville, Ida, Idaho, Imperial, Independence, Indian River, Indiana, Ingham, Inverness-shire (UK), Inyo, Ionia, Iosco, Iowa, Iredell, Irion, Iron, Iroquois, Irwin, Isabella, Isanti, Island, Isle of Wight, Issaquena, Itasca, Itawamba, Ixtlan, Izard, Jack, Jackson, Jaguariaiya, Jalisco, James City, Jasper, Jay, Jeff Davis, Jefferson, Jefferson Davis, Jenkins, Jennings, Jerauld, Jerome, Jersey, Jessamine, Jewell, Jim Hogg, Jim Wells, Jo Daviess, Johnson, Johnston, Jolo Group, Jones, Josephine, Juab, Judith Basin, Juneau, Juniata, Juquila, Kalamazoo, Kalawao, Kalkaska, Kanabec, Kanawha, Kandavu, Kandiyohi, Kane, Kankakee, Karnes, Kauai, Kaufman, Kay, Kearney, Kearny, Keith, Kemper, Kenai Peninsula, Kendall, Kenedy, Kennebec, Kenosha, Kent, Kent (UK), Kentish Municipality, Kenton, Keokuk, Kepulauan, Kepulauan Kangean Islands, Kern, Kerr, Kershaw, Ketchikan Gateway, Kewaunee, Keweenaw, Keya Paha, Kidder, Kimball, Kimble, Kincardineshire (UK), King, King George, King William, King and Queen, Kingborough Municipality, Kingfisher, Kingman, Kings, Kingsbury, Kinney, Kinross-shire (UK), Kiowa, Kirkcudbrightshire (UK), Kit Carson, Kitsap, Kittitas, Kittson, Klamath, Kleberg, Klickitat, Knott, Knox, Kodiak Island, Koochiching, Kootenai, Korinthos, Koro, Kosciusko, Kossuth, La Crosse, La Paz, La Plata, La Salle, LaGrange, LaMoure, LaPorte, LaRue, LaSalle, Labette, Lac qui Parle, Lackawanna, Laclede, Lafayette, Lafourche, Lake, Lake and Peninsula, Lake of the Woods, Lamar, Lamas, Lamb, Lamoille, Lampasas, Lanarkshire (UK), Lancashire (UK), Lancaster, Lander, Lane, Langlade, Lanier, Lapeer, Laramie, Larecaja, Larimer, Las Animas, Lassen, Latah, Latimer, Lauderdale, Launceston Municipality, Laurel, Laurens, Lavaca, Lawrence, Le Flore, Le Sueur, Lea, Leake, Leavenworth, Lebanon, Lee, Leelanau, Leflore, Lehigh, Leicestershire (UK), Lemhi, Lenawee, Lenoir, Leon, Leslie, Letcher, Levy, Lewis, Lewis and Clark, Lexington, Liberty, Licking, Lilydale Municipality, Limestone, Lincoln, Lincolnshire (UK), Linn, Lipscomb, Litchfield, Little River, Live Oak, Livingston, Llano, Logan, Loja, Londonderry (UK), Long, Longford Municipality, Lonoke, Lorain, Loreto, Los Alamos, Los Angeles, Los Cabos, Loudon, Loudoun, Louisa, Loup, Love, Loving, Lowndes, Lubbock, Lucas, Luce, Lumpkin, Luna, Lunenburg, Luzerne, Lycoming, Lyman, Lynchburg, Lynn, Lyon, Mackinac, Macomb, Macon, Macoupin, Madera, Madison, Magoffin, Mahaska, Mahnomen, Mahoning, Major, Malheur, Manabi, Manassas, Manassas Park, Manatee, Manistee, Manitowoc, Marathon, Marengo, Maricopa, Maries, Marin, Marinette, Marion, Mariposa, Marlboro, Marquette, Marshall, Martin, Martinsville, Mason, Massac, Matagorda, Matanuska-Susitna, Mathews, Maui, Maury, Maverick, Mayes, McClain, McCone, McCook, McCormick, McCracken, McCreary, McCulloch, McCurtain, McDonald, McDonough, McDowell, McDuffie, McHenry, McIntosh, McKean, McKenzie, McKinley, McLean, McLennan, McLeod, McMinn, McMullen, McNairy, McPherson, Meade, Meagher, Mecklenburg, Mecosta, Medina, Meeker, Meigs, Mellette, Menard, Mendocino, Menifee, Menominee, Merced, Mercer, Merionethshire (UK), Meriwether, Merrick, Merrimack, Mesa, Metcalfe, Mexicali, Miahuatlan, Miami, Miami-Dade, Middlesex, Middlesex (UK), Midland, Midlothian (UK), Mifflin, Milam, Millard, Mille Lacs, Miller, Mills, Milwaukee, Miner, Mineral, Mingo, Minidoka, Minnehaha, Missaukee, Mississippi, Missoula, Mitchell, Mizque, Mobile, Modoc, Moffat, Mohave, Moniteau, Monmouth, Monmouthshire (UK), Mono, Monona, Monongalia, Monroe, Montague, Montcalm, Monterey, Montezuma, Montgomery, Montgomeryshire (UK), Montmorency, Montour, Montrose, Moody, Moore, Mora, Morayshire (UK), Morehouse, Morgan, Morrill, Morris, Morrison, Morro do Chapeu, Morrow, Morton, Motley, Moultrie, Mountrail, Mower, Muhlenberg, Mulegé, Multnomah, Murray, Muscatine, Muscogee, Muskegon, Muskingum, Muskogee, Musselshell, Nacogdoches, Nairnshire (UK), Nakhon Ratchasima, Changwat, Nance, Nantucket, Nantucket (MA), Napa, Nash, Nassau, Natchitoches, Natrona, Navajo, Navarro, Nelson, Nemaha, Neosho, Neshoba, Ness, Nevada, New Castle, New Hanover, New Haven, New Kent, New London, New Madrid, New Norfolk Municipality, New York, Newaygo, Newberry, Newport, Newport News, Newton, Nez Perc, Nez Perce, Niagara, Nicholas, Nicholson, Nicollet, Niobrara, Noble, Nobles, Nodaway, Nolan, Nome, Norfolk, Norfolk (UK), Norman, North Slope, Northampton, Northamptonshire (UK), Northumberland, Northumberland (UK), Northwest Arctic, Norton, Nottinghamshire (UK), Nottoway, Nowata, Noxubee, Nuckolls, Nueces, Nueva Vizcaya, Nye, O'Brien, Oakland, Oatlands Municipality, Obion, Ocean, Oceana, Ochiltree, Oconee, Oconto, Ogemaw, Ogle, Oglethorpe, Ohio, Okaloosa, Okanogan, Okeechobee, Okfuskee, Oklahoma, Okmulgee, Oktibbeha, Oldham, Oliver, Olmsted, Oneida, Onondaga, Onslow, Ontario, Ontonagon, Orange, Orangeburg, Oregon, Orkney (UK), Orleans, Osage, Osborne, Osceola, Oscoda, Oswego, Otero, Otoe, Otsego, Ottawa, Otter Tail, Ouachita, Ouray, Outagamie, Overton, Owen, Owsley, Owyhee, Oxford, Oxfordshire (UK), Ozark, Ozaukee, Pacific, Page, Palm Beach, Palmeira, Palo Alto, Palo Pinto, Pamlico, Pampanga, Pangasinan, Panola, Paranagua, Park, Parke, Parker, Parmer, Pasco, Pasquotank, Passaic, Patrick, Paulding, Pawnee, Payette, Payne, Peach, Pearl River, Pecos, Peeblesshire (UK), Pembina, Pembrokeshire (UK), Pemiscot, Pend Oreille, Pender, Pendleton, Penguin Municipality, Pennington, Penobscot, Peoria, Pepin, Perkins, Perquimans, Perry, Pershing, Person, Perthshire (UK), Petersburg, Petroleum, Pettis, Phelps, Philadelphia, Phillips, Piatt, Pickaway, Pickens, Pickett, Pierce, Pike, Pima, Pinal, Pine, Pinellas, Pipestone, Piscataquis, Pitkin, Pitt, Pittsburg, Pittsylvania, Piura, Piute, Placer, Plaquemines, Platte, Pleasants, Plumas, Plymouth, Pocahontas, Pochutla, Poinsett, Pointe Coupee, Polk, Pondera, Pontotoc, Pope, Poquoson, Portage, Porter, Portland Municipality, Portsmouth, Posey, Pottawatomie, Pottawattamie, Potter, Powder River, Powell, Power, Poweshiek, Powhatan, Prairie, Pratt, Preble, Prentiss, Presidio, Presque Isle, Preston, Price, Prince Edward, Prince George, Prince George's, Prince William, Prince of Wales-Hyder, Providence, Prowers, Pueblo, Pujili, Pulaski, Pushmataha, Putnam, Quay, Queen Anne's, Queen Elizabeth Islands, Queens, Quezon, Quitman, Quito, Rabun, Racine, Radford, Radnorshire (UK), Raiatea, Rains, Raleigh, Ralls, Ramsey, Randall, Randolph, Rankin, Ransom, Rapides, Rappahannock, Rarotonga, Ravalli, Rawlins, Ray, Reagan, Real, Red Lake, Red River, Red Willow, Redwood, Reeves, Refugio, Renfrewshire (UK), Reno, Rensselaer, Renville, Republic, Rewa, Reynolds, Rhea, Rice, Rich, Richardson, Richland, Richmond, Riley, Ringarooma Municipality, Ringgold, Rio Arriba, Rio Blanco, Rio Branco, Rio Grande, Rio Verde, Ripley, Ritchie, Riverside, Rizal, Roane, Roanoke, Roberts, Robertson, Robeson, Rock, Rock Island, Rockbridge, Rockcastle, Rockdale, Rockingham, Rockland, Rockwall, Roger Mills, Rogers, Rolette, Rooks, Roosevelt, Rosarito, Playas de, Roscommon, Roseau, Rosebud, Ross, Ross Municipality, Ross-shire (UK), Routt, Rowan, Roxburghshire (UK), Runnels, Rush, Rusk, Russell, Russell Islands, Rutherford, Rutland, Rutland (UK), Sabah, Sabine, Sac, Sacramento, Sagadahoc, Saginaw, Saguache, Salem, Saline, Salt Lake, Saluda, Sampson, San Augustine, San Benito, San Bernardino, San Blas, San Diego, San Francisco, San Ignacio, San Jacinto, San Joaquin, San Juan, San Luis Obispo, San Mateo, San Miguel, San Patricio, San Pedro Lagunillas, San Pedro Lagunitas, San Saba, Sanborn, Sanders, Sandoval, Sandusky, Sangamon, Sanilac, Sanpete, Santa Barbara, Santa Clara, Santa Cruz, Santa Fe, Santa Maria del Oro, Santa Rosa, Santa Victoria, Sarasota, Saratoga, Sarawak, Sargent, Sarpy, Sauk, Saunders, Sawyer, Schenectady, Schleicher, Schley, Schoharie, Schoolcraft, Schuyler, Schuylkill, Scioto, Scotland, Scott, Scotts Bluff, Scottsdale Municipality, Screven, Scurry, Searcy, Sebastian, Sedgwick, Selkirkshire (UK), Seminole, Seneca, Senyavin Islands, Sequatchie, Sequoyah, Sevier, Seward, Shackelford, Shannon, Sharkey, Sharp, Shasta, Shawano, Shawnee, Sheboygan, Sheffield Municipality, Shelby, Shenandoah, Sherburne, Sheridan, Sherman, Shetland (UK), Shiawassee, Shoshone, Shropshire (UK), Sibley, Sierra, Silver Bow, Simpson, Sioux, Siskiyou, Sitka, Skagit, Skagway, Skamania, Slope, Smith, Smyth, Snohomish, Snyder, Socorro, Sola de Vega, Solano, Somerset, Somerset (UK), Somervell, Sonoma, Sorell Municipality, Southampton, Southeast Fairbanks, Spalding, Spartanburg, Spencer, Spink, Spokane, Spotsylvania, Spring Bay Municipality, St. Bernard, St. Charles, St. Clair, St. Croix, St. Francis, St. Francois, St. Helena, St. James, St. John the Baptist, St. Johns, St. Joseph, St. Landry, St. Lawrence, St. Leonards Municipality, St. Louis, St. Lucie, St. Martin, St. Mary, St. Mary's, St. Tammany, Stafford, Staffordshire (UK), Stanislaus, Stanley, Stanly, Stanton, Stark, Starke, Starr, Staunton, Ste. Genevieve, Stearns, Steele, Stephens, Stephenson, Sterling, Steuben, Stevens, Stewart, Stillwater, Stirlingshire (UK), Stoddard, Stokes, Stone, Stonewall, Storey, Story, Strafford, Stutsman, Sublette, Sud Yungas, Suffolk, Suffolk (UK), Sullivan, Sully, Summers, Summit, Sumner, Sumter, Sunflower, Surrey (UK), Surry, Susquehanna, Sussex, Sussex (UK), Sutherland (UK), Sutter, Sutton, Suwannee, Swain, Sweet Grass, Sweetwater, Swift, Swisher, Switzerland, Tahiti, Talbot, Taliaferro, Talladega, Tallahatchie, Tallapoosa, Taltal, Tama, Taney, Tangipahoa, Taos, Tarrant, Tasman Municipality, Tate, Tattnall, Taylor, Tazewell, Tecate, Tehama, Telfair, Teller, Tensas, Tepic, Terrebonne, Terrell, Terry, Teton, Texas, Thayer, Thomas, Throckmorton, Thurston, Tift, Tijuana, Tillamook, Tillman, Tioga, Tippah, Tippecanoe, Tipton, Tishomingo, Titus, Todd, Tolland, Tom Green, Tompkins, Tompkins (NY), Tooele, Toole, Toombs, Torrance, Towner, Towns, Traill, Transylvania, Traverse, Travis, Treasure, Trego, Trempealeau, Treutlen, Trigg, Trimble, Trinity, Tripp, Troup, Trousdale, Trumbull, Tucker, Tulare, Tulsa, Tunica, Tuolumne, Turner, Tuscaloosa, Tuscarawas, Tuscola, Twiggs, Twin Falls, Tyler, Tyrone (UK), Tyrrell, Uinta, Uintah, Ulster, Ulverstone Municipality, Umatilla, Unicoi, Union, Unknown, Unknown, Upshur, Upson, Upton, Urubamba, Utah, Uvalde, Val Verde, Valdez–Cordova, Valencia, Valley, Van Buren, Van Wert, Van Zandt, Vance, Vanderburgh, Vanua Levu, Venango, Ventura, Vermilion, Vermillion, Vernon, Victoria, Vigo, Vilas, Vinton, Virginia Beach, Viti Levu, Volusia, Wabash, Wabasha, Wabaunsee, Wade Hampton, Wadena, Wagoner, Wahkiakum, Wake, Wakulla, Waldo, Walker, Walla Walla, Wallace, Waller, Wallowa, Walsh, Walthall, Walton, Walworth, Wapello, Waratah Municipality, Ward, Ware, Warren, Warrick, Warwickshire (UK), Wasatch, Wasco, Waseca, Washakie, Washburn, Washington, Washita, Washoe, Washtenaw, Watauga, Watonwan, Waukesha, Waupaca, Waushara, Wayne, Waynesboro, Weakley, Webb, Weber, Webster, Weld, Wells, West Baton Rouge, West Carroll, West Feliciana, West Lothian (Linlithgowshire) (UK), Westchester, Westmoreland, Westmorland (UK), Weston, Wetzel, Wexford, Wharton, Whatcom, Wheatland, Wheeler, White, White Pine, Whiteside, Whitfield, Whitley, Whitman, Wibaux, Wichita, Wicomico, Wigtownshire (UK), Wilbarger, Wilcox, Wilkes, Wilkin, Wilkinson, Will, Will (IL), Willacy, Williams, Williamsburg, Williamson, Wilson, Wiltshire (UK), Winchester, Windham, Windsor, Winkler, Winn, Winnebago, Winneshiek, Winona, Winston, Wirt, Wise, Wolfe, Wood, Woodbury, Woodford, Woodruff, Woods, Woodson, Woodward, Worcester, Worcestershire (UK), Worth, Wrangell, Wright, Wyandot, Wyandotte, Wyoming, Wythe, Yadkin, Yakima, Yakutat, Yalobusha, Yamhill, Yancey, Yankton, Yates, Yavapai, Yazoo, Yell, Yellow Medicine, Yellowstone, Yoakum, Yolo, York, Yorkshire (UK), Young, Yuba, Yukon–Koyukuk, Yuma, Zambales, Zapata, Zavala, Zeehan Municipality, Zhongdian, Ziebach", +anthro_7-0-0 collectionobject ext.locality fieldLocState,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocState,Locality Information,Locality,State,localityGroupList > localityGroup,fieldLocState,string,n,n,y,option list: states,"'Eua, AK, AL, ALB, AR, ARIZ, AZ, AZ Territory, Aamzonas, Acre, Alajuela, Alajuelo, Alberta, Alger, Alta Verapaz, Amazonas, Ancash, Anhui, Antioquia, Antofagasta, Apurimac, Aragua, Araucania, Arequipa, Artigas, Atacama, Atlantida, Ayacucho, Azuay, B.C.S., BCS, BN, Bac Phan, Bahia, Baja California, Baja California Sur, Baja Verapaz, Baleares, Baluchistan, Banguey Island, Barinas, Benguet, Binh Tri Thien, Tinh, Biobio, Regio del, Bismarck Archipelago, Bohol, Bolivar, Boyaca, British Columbia, Brunei, Buenos Aires, Bulacan, CA, CHI, CO, CO Territory, COCA, COL, COP, CT, Cajamarca, Campeche, Canar, Cape Province, Carchi, Caroline Islands, Cartago, Cascajal, Cataluna, Cauca, Cebu, Central, Chalatenango, Chia, Chiang Mai, Changwat, Chiapas, Chihuahua, Chimaltenango, Chimborazo, Chinandega, Chiriqui, Chontales, Chupadero, Chuquisaca, Coahuila, Cochabamba, Cocle, Colima, Comayagua, Concepcion, Coquimbo, Cordoba, Cortes, Costa, Cotopaxi, Cundinamarca, Cuzco, DE, DUR, Darien, Dept. La e, Dept. Mag, Distrito Federal, Durango, East Malaysia, East Sepik, Eastern Division, Eastern Divsion, El Progreso, Esmeraldas, Esteli, FL, Florida, Fujian, GA, GRO, GUAM, Gansu, Goias, Golestan, Granada, Guanacaste, Guanajuato, Guangdong, Guatemala, Guayas, Guerrero, Guizhou, HI, Ha Bach, Tinh, Hainan, Halland, Hamadan, Heidelberg, Heredia, Hidalgo, Honshu, Huancabamba, Huancavelica, Huanuco, Hubei, Huehuetena, Huehuetenango, Humacao, IA, ID, IL, IN, Idaho, Insular, Ipiros, Iqnique Province, Iringa, Isabela, Izabel, JAL, Jalisco, Jalsico, Jawa Timur, Jiangsu, Jujuy, Junin, KS, KY, Kangean, Khorasan Province, Kkanh Hoa, KwaZulu-Natal, LA, LASAN, La Habana, La Libertad, La Paz, La Vega, Lambayeque, Las Villas, Leon, Lima, Limon, Loja, Loreto, Luzon, MA, MD, ME, MI, MIC, MICH, MN, MO, MON, MS, MT, MX, Madre de Dios, Magdalena, Maldonado, Manabi, Manitoba, Mariana Islands, Mato Grosso, Matto Grosso, Mayaguez, Mazandaran, Merida, Meta, Mexico, Michoacan, Minas Gerais, Mindanao, Misiones, Montevideo, Morazan, Morelos, N. Segovia, NAY, NC, ND, NE, NH, NJ, NL, NM, NM-TX, NV, NY, Narino, Nayarit, Neuvo Leon, Nevada, New Brunswick, New South Wales, Newfoundland, Nord, Norte, Norte de Santander, North Ayrshire, Northeastern, Northern, Northern Division, Northern Territory, Northwest Frontier, Northwest Territories, Nova Scotia, Nuevo Leon, Nunavut, O, OH, OK, OR, OR (?), OR or WA, Oaxaca, Ontario, Oregon, Oriente, Otuzco, PA, PE, PMG, PRE, PUE, Palawan, Panama, Panay, Paraguari, Parana, Paris, Pasco, Pataz, Peloponnisos, Peten, Pichincha, Piura, Pohnpei, Pomeroon-Supernaam, Portuguesa, Potosi, Prince Edward Island, Puebla, Puerto Rico, Puno, Puntarenas, Quang Ngai, Quebec, Queensland, Quezaltenango, Quezon, Quiche, RI, Rio de Janeiro, Rizal, S Catarina, S L Potosi, S.L. Potos, SC, SD, SIN, SL Potosi, SON, Sabah, Salta, Samar, San Blas, San Jose, San Luis, San Luis Potosi, San Luis a, San Martin, San Miguel, San Pedro, Santa Barbara, Santa Catarina, Santa Cruz, Santander, Santiago, Region Met, Sao Paulo, Sarawak, Saskatchewan, Savaii Island, Scotland, Semnan, Seybo, Sichuan, Sierra, Sinaloa, Societe, Iles de la, Societe, Isles de la, Sonora, Sonsonate, South Australia, Southern Cook Island, St. Andrew, St. Croix, Stann Creek, Sulu, Sumatera, TAB, TAM, TN, TX, TX , TX-NM, Tabasco, Tachira, Tacna, Tamaulipas, Tarank Province, Tarija, Tarma, Tasmania, Tehran, Tierra del Fuego, Tlaxcala, Toledo, Tongatapu, Trelawny, Trujillo, Tuamotu, Archipel de, Tubuai, Iles, Tucuman, Tutuila Island, UT, Unknown, Upolu Island, Utah, VA, VT, Valle, Valparaiso, Vaupes, Veracruz, Verguas, Victoria, WA, WA Territory, WAS, WI, WN, WV, WY, Wales, Western Australia, Western Cape, Wyoming, Xizang, Yaracuy, Yoro, Yucatan, Yukon Territory, Yunnan, Zacatecas, Zhejiang, Zulia, w TX to NM, w. TX - El Paso, NM, w. TX - El Paso,NM", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocState,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocState,Locality Information,Locality,State,localityGroupList > localityGroup,fieldLocState,string,n,n,y,option list: states,"'Eua, AK, AL, ALB, AR, ARIZ, AZ, AZ Territory, Aamzonas, Acre, Alajuela, Alajuelo, Alberta, Alger, Alta Verapaz, Amazonas, Ancash, Anhui, Antioquia, Antofagasta, Apurimac, Aragua, Araucania, Arequipa, Artigas, Atacama, Atlantida, Ayacucho, Azuay, B.C.S., BCS, BN, Bac Phan, Bahia, Baja California, Baja California Sur, Baja Verapaz, Baleares, Baluchistan, Banguey Island, Barinas, Benguet, Binh Tri Thien, Tinh, Biobio, Regio del, Bismarck Archipelago, Bohol, Bolivar, Boyaca, British Columbia, Brunei, Buenos Aires, Bulacan, CA, CHI, CO, CO Territory, COCA, COL, COP, CT, Cajamarca, Campeche, Canar, Cape Province, Carchi, Caroline Islands, Cartago, Cascajal, Cataluna, Cauca, Cebu, Central, Chalatenango, Chia, Chiang Mai, Changwat, Chiapas, Chihuahua, Chimaltenango, Chimborazo, Chinandega, Chiriqui, Chontales, Chupadero, Chuquisaca, Coahuila, Cochabamba, Cocle, Colima, Comayagua, Concepcion, Coquimbo, Cordoba, Cortes, Costa, Cotopaxi, Cundinamarca, Cuzco, DE, DUR, Darien, Dept. La e, Dept. Mag, Distrito Federal, Durango, East Malaysia, East Sepik, Eastern Division, Eastern Divsion, El Progreso, Esmeraldas, Esteli, FL, Florida, Fujian, GA, GRO, GUAM, Gansu, Goias, Golestan, Granada, Guanacaste, Guanajuato, Guangdong, Guatemala, Guayas, Guerrero, Guizhou, HI, Ha Bach, Tinh, Hainan, Halland, Hamadan, Heidelberg, Heredia, Hidalgo, Honshu, Huancabamba, Huancavelica, Huanuco, Hubei, Huehuetena, Huehuetenango, Humacao, IA, ID, IL, IN, Idaho, Insular, Ipiros, Iqnique Province, Iringa, Isabela, Izabel, JAL, Jalisco, Jalsico, Jawa Timur, Jiangsu, Jujuy, Junin, KS, KY, Kangean, Khorasan Province, Kkanh Hoa, KwaZulu-Natal, LA, LASAN, La Habana, La Libertad, La Paz, La Vega, Lambayeque, Las Villas, Leon, Lima, Limon, Loja, Loreto, Luzon, MA, MD, ME, MI, MIC, MICH, MN, MO, MON, MS, MT, MX, Madre de Dios, Magdalena, Maldonado, Manabi, Manitoba, Mariana Islands, Mato Grosso, Matto Grosso, Mayaguez, Mazandaran, Merida, Meta, Mexico, Michoacan, Minas Gerais, Mindanao, Misiones, Montevideo, Morazan, Morelos, N. Segovia, NAY, NC, ND, NE, NH, NJ, NL, NM, NM-TX, NV, NY, Narino, Nayarit, Neuvo Leon, Nevada, New Brunswick, New South Wales, Newfoundland, Nord, Norte, Norte de Santander, North Ayrshire, Northeastern, Northern, Northern Division, Northern Territory, Northwest Frontier, Northwest Territories, Nova Scotia, Nuevo Leon, Nunavut, O, OH, OK, OR, OR (?), OR or WA, Oaxaca, Ontario, Oregon, Oriente, Otuzco, PA, PE, PMG, PRE, PUE, Palawan, Panama, Panay, Paraguari, Parana, Paris, Pasco, Pataz, Peloponnisos, Peten, Pichincha, Piura, Pohnpei, Pomeroon-Supernaam, Portuguesa, Potosi, Prince Edward Island, Puebla, Puerto Rico, Puno, Puntarenas, Quang Ngai, Quebec, Queensland, Quezaltenango, Quezon, Quiche, RI, Rio de Janeiro, Rizal, S Catarina, S L Potosi, S.L. Potos, SC, SD, SIN, SL Potosi, SON, Sabah, Salta, Samar, San Blas, San Jose, San Luis, San Luis Potosi, San Luis a, San Martin, San Miguel, San Pedro, Santa Barbara, Santa Catarina, Santa Cruz, Santander, Santiago, Region Met, Sao Paulo, Sarawak, Saskatchewan, Savaii Island, Scotland, Semnan, Seybo, Sichuan, Sierra, Sinaloa, Societe, Iles de la, Societe, Isles de la, Sonora, Sonsonate, South Australia, Southern Cook Island, St. Andrew, St. Croix, Stann Creek, Sulu, Sumatera, TAB, TAM, TN, TX, TX , TX-NM, Tabasco, Tachira, Tacna, Tamaulipas, Tarank Province, Tarija, Tarma, Tasmania, Tehran, Tierra del Fuego, Tlaxcala, Toledo, Tongatapu, Trelawny, Trujillo, Tuamotu, Archipel de, Tubuai, Iles, Tucuman, Tutuila Island, UT, Unknown, Upolu Island, Utah, VA, VT, Valle, Valparaiso, Vaupes, Veracruz, Verguas, Victoria, WA, WA Territory, WAS, WI, WN, WV, WY, Wales, Western Australia, Western Cape, Wyoming, Xizang, Yaracuy, Yoro, Yucatan, Yukon Territory, Yunnan, Zacatecas, Zhejiang, Zulia, w TX to NM, w. TX - El Paso, NM, w. TX - El Paso,NM", +anthro_7-0-0 collectionobject ext.locality fieldLocCountry,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCountry,Locality Information,Locality,Country,localityGroupList > localityGroup,fieldLocCountry,string,n,n,y,option list: countries,"AD, AE, AI, AL, AO, AQ, AT, AW, AX, AZ, Afghanistan, Algeria, American Samoa, Antigua, Antigua and Barbuda, Argentina, Armenia, Australia, BA, BB, BD, BF, BG, BH, BI, BJ, BL, BQ, BS, BT, BV, BW, BY, Belgium, Belize, Bermuda, Bolivia, Borneo, Brazil, Brunei, CC, CF, CG, CH, CI, CV, CW, CX, CY, CZ, Cambodia, Cameroon, Canada, Chile, China, Colombia, Cook Islands, Costa Rica, Croatia, Cuba, D R Congo, DJ, DM, Denmark, Dominican Republic, EE, EG, EH, ER, ET, Ecuador, El Salvador, Ellas, Equatorial Guinea, Espana, FK, FO, Fiji, Finland, France, GA, GD, GE, GF, GG, GH, GI, GM, GN, GS, GU, GW, Germany, Greenland, Guadeloupe, Guatemala, Guyana, HK, HM, HN, Haiti, Hispaniola, Honduras, IM, IO, IQ, Iceland, India, Indonesia, Iran, Ireland, Israel, Italy, JE, Jamaica, Japan, Jordan, KG, KI, KM, KN, KP, KW, KY, KZ, Kenya, LA, LI, LR, LS, LT, LU, LV, LY, Lebanon, MC, MD, ME, MF, MK, ML, MO, MP, MQ, MR, MS, MT, MU, MV, MZ, Madagascar, Malawi, Malaysia, Marshall Islands, Mexico, Micronesia, Mongolia, Morocco, Myanmar, NE, NF, NG, NR, Namibia, Nepal, Netherlands, Netherlands Antilles, New Caledonia, New Zealand, Nicaragua, Nihon, Niue, Norway, OM, PF, PL, PM, PN, PS, PW, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, Polynesia, Polynesie francaise, Portugal, Prathet Thai, Puerto Rico, QA, RO, RS, RW, Republica Dominicana, Reunion, Russia, SA, SG, SJ, SK, SL, SM, SN, SO, SS, ST, SX, SZ, Saint Helena, Saint Lucia, Samoa, Scotland, Seychelles, Slovenia, Solomon Islands, South Africa, South Korea, Spain, Sri Lanka, Sudan, Suriname, Sweden, Syria, TC, TD, TF, TG, TJ, TK, TL, TM, TN, TV, Taiwan, Tanzania, Thailand, Tonga, Trinidad and Tobago, Turkey, UA, UM, USA, UZ, Uganda, United Kingdom, Uruguay, VA, VC, VG, Vanuatu, Venezuela, Viet Nam, Virgin Islands, WF, Western Samoa, YE, YT, ZM, ZW, Zhonghua, unknown", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocCountry,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocCountry,Locality Information,Locality,Country,localityGroupList > localityGroup,fieldLocCountry,string,n,n,y,option list: countries,"AD, AE, AI, AL, AO, AQ, AT, AW, AX, AZ, Afghanistan, Algeria, American Samoa, Antigua, Antigua and Barbuda, Argentina, Armenia, Australia, BA, BB, BD, BF, BG, BH, BI, BJ, BL, BQ, BS, BT, BV, BW, BY, Belgium, Belize, Bermuda, Bolivia, Borneo, Brazil, Brunei, CC, CF, CG, CH, CI, CV, CW, CX, CY, CZ, Cambodia, Cameroon, Canada, Chile, China, Colombia, Cook Islands, Costa Rica, Croatia, Cuba, D R Congo, DJ, DM, Denmark, Dominican Republic, EE, EG, EH, ER, ET, Ecuador, El Salvador, Ellas, Equatorial Guinea, Espana, FK, FO, Fiji, Finland, France, GA, GD, GE, GF, GG, GH, GI, GM, GN, GS, GU, GW, Germany, Greenland, Guadeloupe, Guatemala, Guyana, HK, HM, HN, Haiti, Hispaniola, Honduras, IM, IO, IQ, Iceland, India, Indonesia, Iran, Ireland, Israel, Italy, JE, Jamaica, Japan, Jordan, KG, KI, KM, KN, KP, KW, KY, KZ, Kenya, LA, LI, LR, LS, LT, LU, LV, LY, Lebanon, MC, MD, ME, MF, MK, ML, MO, MP, MQ, MR, MS, MT, MU, MV, MZ, Madagascar, Malawi, Malaysia, Marshall Islands, Mexico, Micronesia, Mongolia, Morocco, Myanmar, NE, NF, NG, NR, Namibia, Nepal, Netherlands, Netherlands Antilles, New Caledonia, New Zealand, Nicaragua, Nihon, Niue, Norway, OM, PF, PL, PM, PN, PS, PW, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, Polynesia, Polynesie francaise, Portugal, Prathet Thai, Puerto Rico, QA, RO, RS, RW, Republica Dominicana, Reunion, Russia, SA, SG, SJ, SK, SL, SM, SN, SO, SS, ST, SX, SZ, Saint Helena, Saint Lucia, Samoa, Scotland, Seychelles, Slovenia, Solomon Islands, South Africa, South Korea, Spain, Sri Lanka, Sudan, Suriname, Sweden, Syria, TC, TD, TF, TG, TJ, TK, TL, TM, TN, TV, Taiwan, Tanzania, Thailand, Tonga, Trinidad and Tobago, Turkey, UA, UM, USA, UZ, Uganda, United Kingdom, Uruguay, VA, VC, VG, Vanuatu, Venezuela, Viet Nam, Virgin Islands, WF, Western Samoa, YE, YT, ZM, ZW, Zhonghua, unknown", +anthro_7-0-0 collectionobject ext.locality fieldLocHigherGeography,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocHigherGeography,Locality Information,Locality,Higher geography,localityGroupList > localityGroup,fieldLocHigherGeography,string,n,n,y,option list: higherGeographies,"North America, pacificocean", +ohc_1-0-18_7-2 collectionobject ext.locality fieldLocHigherGeography,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.fieldLocHigherGeography,Locality Information,Locality,Higher geography,localityGroupList > localityGroup,fieldLocHigherGeography,string,n,n,y,option list: higherGeographies,"North America, pacificocean", +anthro_7-0-0 collectionobject ext.locality vLatitude,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLatitude,Locality Information,Locality,Verbatim latitude,localityGroupList > localityGroup,vLatitude,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vLatitude,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLatitude,Locality Information,Locality,Verbatim latitude,localityGroupList > localityGroup,vLatitude,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality vLongitude,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLongitude,Locality Information,Locality,Verbatim longitude,localityGroupList > localityGroup,vLongitude,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vLongitude,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vLongitude,Locality Information,Locality,Verbatim longitude,localityGroupList > localityGroup,vLongitude,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality vCoordinates,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordinates,Locality Information,Locality,TRS,localityGroupList > localityGroup,vCoordinates,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vCoordinates,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordinates,Locality Information,Locality,TRS,localityGroupList > localityGroup,vCoordinates,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality vOtherCoords,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vOtherCoords,Locality Information,Locality,Other coords,localityGroupList > localityGroup,vOtherCoords,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vOtherCoords,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vOtherCoords,Locality Information,Locality,Other coords,localityGroupList > localityGroup,vOtherCoords,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality vCoordSys,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordSys,Locality Information,Locality,Other coords system,localityGroupList > localityGroup,vCoordSys,string,n,n,y,vocabulary: vcoordsys,"", +ohc_1-0-18_7-2 collectionobject ext.locality vCoordSys,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vCoordSys,Locality Information,Locality,Other coords system,localityGroupList > localityGroup,vCoordSys,string,n,n,y,vocabulary: vcoordsys,"", +anthro_7-0-0 collectionobject ext.locality decimalLatitude,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLatitude,Locality Information,Locality,Decimal latitude,localityGroupList > localityGroup,decimalLatitude,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality decimalLatitude,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLatitude,Locality Information,Locality,Decimal latitude,localityGroupList > localityGroup,decimalLatitude,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality decimalLongitude,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLongitude,Locality Information,Locality,Decimal longitude,localityGroupList > localityGroup,decimalLongitude,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality decimalLongitude,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.decimalLongitude,Locality Information,Locality,Decimal longitude,localityGroupList > localityGroup,decimalLongitude,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geodeticDatum,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geodeticDatum,Locality Information,Locality,Datum,localityGroupList > localityGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84", +ohc_1-0-18_7-2 collectionobject ext.locality geodeticDatum,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geodeticDatum,Locality Information,Locality,Datum,localityGroupList > localityGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84", +anthro_7-0-0 collectionobject ext.locality coordUncertainty,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertainty,Locality Information,Locality,Coord uncertainty,localityGroupList > localityGroup,coordUncertainty,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality coordUncertainty,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertainty,Locality Information,Locality,Coord uncertainty,localityGroupList > localityGroup,coordUncertainty,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality coordUncertaintyUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertaintyUnit,Locality Information,Locality,Coord uncertainty unit,localityGroupList > localityGroup,coordUncertaintyUnit,string,n,n,y,option list: coordUncertaintyUnits,"feet, kilometers, meters, miles, unknown", +ohc_1-0-18_7-2 collectionobject ext.locality coordUncertaintyUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordUncertaintyUnit,Locality Information,Locality,Coord uncertainty unit,localityGroupList > localityGroup,coordUncertaintyUnit,string,n,n,y,option list: coordUncertaintyUnits,"feet, kilometers, meters, miles, unknown", +anthro_7-0-0 collectionobject ext.locality vDepth,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDepth,Locality Information,Locality > Depth,Depth verbatim,localityGroupList > localityGroup,vDepth,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vDepth,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDepth,Locality Information,Locality > Depth,Depth verbatim,localityGroupList > localityGroup,vDepth,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality minDepth,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDepth,Locality Information,Locality > Depth,Depth min,localityGroupList > localityGroup,minDepth,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality minDepth,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDepth,Locality Information,Locality > Depth,Depth min,localityGroupList > localityGroup,minDepth,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality maxDepth,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDepth,Locality Information,Locality > Depth,Depth max,localityGroupList > localityGroup,maxDepth,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality maxDepth,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDepth,Locality Information,Locality > Depth,Depth max,localityGroupList > localityGroup,maxDepth,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality depthUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.depthUnit,Locality Information,Locality > Depth,Depth unit,localityGroupList > localityGroup,depthUnit,string,n,n,y,option list: depthUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain", +ohc_1-0-18_7-2 collectionobject ext.locality depthUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.depthUnit,Locality Information,Locality > Depth,Depth unit,localityGroupList > localityGroup,depthUnit,string,n,n,y,option list: depthUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain", +anthro_7-0-0 collectionobject ext.locality vElevation,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vElevation,Locality Information,Locality > Elevation,Elevation verbatim,localityGroupList > localityGroup,vElevation,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vElevation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vElevation,Locality Information,Locality > Elevation,Elevation verbatim,localityGroupList > localityGroup,vElevation,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality minElevation,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minElevation,Locality Information,Locality > Elevation,Elevation min,localityGroupList > localityGroup,minElevation,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality minElevation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minElevation,Locality Information,Locality > Elevation,Elevation min,localityGroupList > localityGroup,minElevation,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality maxElevation,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxElevation,Locality Information,Locality > Elevation,Elevation max,localityGroupList > localityGroup,maxElevation,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality maxElevation,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxElevation,Locality Information,Locality > Elevation,Elevation max,localityGroupList > localityGroup,maxElevation,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality elevationUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.elevationUnit,Locality Information,Locality > Elevation,Elevation unit,localityGroupList > localityGroup,elevationUnit,string,n,n,y,option list: elevationUnits,"feet, meters, uncertain", +ohc_1-0-18_7-2 collectionobject ext.locality elevationUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.elevationUnit,Locality Information,Locality > Elevation,Elevation unit,localityGroupList > localityGroup,elevationUnit,string,n,n,y,option list: elevationUnits,"feet, meters, uncertain", +anthro_7-0-0 collectionobject ext.locality vDistanceAboveSurface,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface verbatim,localityGroupList > localityGroup,vDistanceAboveSurface,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality vDistanceAboveSurface,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.vDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface verbatim,localityGroupList > localityGroup,vDistanceAboveSurface,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality minDistanceAboveSurface,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface min,localityGroupList > localityGroup,minDistanceAboveSurface,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality minDistanceAboveSurface,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.minDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface min,localityGroupList > localityGroup,minDistanceAboveSurface,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality maxDistanceAboveSurface,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface max,localityGroupList > localityGroup,maxDistanceAboveSurface,float,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality maxDistanceAboveSurface,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.maxDistanceAboveSurface,Locality Information,Locality > Distance above surface,Distance above surface max,localityGroupList > localityGroup,maxDistanceAboveSurface,float,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality distanceAboveSurfaceUnit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.distanceAboveSurfaceUnit,Locality Information,Locality > Distance above surface,Distance above surface unit,localityGroupList > localityGroup,distanceAboveSurfaceUnit,string,n,n,y,option list: distanceAboveSurfaceUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain", +ohc_1-0-18_7-2 collectionobject ext.locality distanceAboveSurfaceUnit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.distanceAboveSurfaceUnit,Locality Information,Locality > Distance above surface,Distance above surface unit,localityGroupList > localityGroup,distanceAboveSurfaceUnit,string,n,n,y,option list: distanceAboveSurfaceUnits,"centimeters, fathoms, feet, furlongs, inches, kilometers, meters, miles, rods, uncertain", +anthro_7-0-0 collectionobject ext.locality localityNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localityNote,Locality Information,Locality,Locality note,localityGroupList > localityGroup,localityNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality localityNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localityNote,Locality Information,Locality,Locality note,localityGroupList > localityGroup,localityNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality localitySource,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySource,Locality Information,Locality,Locality source,localityGroupList > localityGroup,localitySource,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality localitySource,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySource,Locality Information,Locality,Locality source,localityGroupList > localityGroup,localitySource,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality localitySourceDetail,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySourceDetail,Locality Information,Locality,Locality source detail,localityGroupList > localityGroup,localitySourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality localitySourceDetail,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.localitySourceDetail,Locality Information,Locality,Locality source detail,localityGroupList > localityGroup,localitySourceDetail,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality pointRadiusSpatialFit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.pointRadiusSpatialFit,Locality Information,Locality > Georeference Detail,Pt. radius sp. fit,localityGroupList > localityGroup,pointRadiusSpatialFit,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality pointRadiusSpatialFit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.pointRadiusSpatialFit,Locality Information,Locality > Georeference Detail,Pt. radius sp. fit,localityGroupList > localityGroup,pointRadiusSpatialFit,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality footprintWKT,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintWKT,Locality Information,Locality > Georeference Detail,Footprint WKT,localityGroupList > localityGroup,footprintWKT,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality footprintWKT,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintWKT,Locality Information,Locality > Georeference Detail,Footprint WKT,localityGroupList > localityGroup,footprintWKT,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality footprintSRS,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSRS,Locality Information,Locality > Georeference Detail,Footprint SRS,localityGroupList > localityGroup,footprintSRS,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality footprintSRS,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSRS,Locality Information,Locality > Georeference Detail,Footprint SRS,localityGroupList > localityGroup,footprintSRS,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality footprintSpatialFit,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSpatialFit,Locality Information,Locality > Georeference Detail,Footprint sp. fit,localityGroupList > localityGroup,footprintSpatialFit,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality footprintSpatialFit,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.footprintSpatialFit,Locality Information,Locality > Georeference Detail,Footprint sp. fit,localityGroupList > localityGroup,footprintSpatialFit,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality coordPrecision,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordPrecision,Locality Information,Locality > Georeference Detail,Coord precision,localityGroupList > localityGroup,coordPrecision,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality coordPrecision,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.coordPrecision,Locality Information,Locality > Georeference Detail,Coord precision,localityGroupList > localityGroup,coordPrecision,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geoRefencedBy,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefencedBy,Locality Information,Locality > Georeference Detail,Georeference by,localityGroupList > localityGroup,geoRefencedBy,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefencedBy,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefencedBy,Locality Information,Locality > Georeference Detail,Georeference by,localityGroupList > localityGroup,geoRefencedBy,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geoRefDateGroup,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefDateGroup,Locality Information,Locality > Georeference Detail,Georeference date,localityGroupList > localityGroup,geoRefDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefDateGroup,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefDateGroup,Locality Information,Locality > Georeference Detail,Georeference date,localityGroupList > localityGroup,geoRefDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geoRefProtocol,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefProtocol,Locality Information,Locality > Georeference Detail,Georeference protocol,localityGroupList > localityGroup,geoRefProtocol,string,n,n,y,option list: georefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefProtocol,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefProtocol,Locality Information,Locality > Georeference Detail,Georeference protocol,localityGroupList > localityGroup,geoRefProtocol,string,n,n,y,option list: georefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines", +anthro_7-0-0 collectionobject ext.locality geoRefSource,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefSource,Locality Information,Locality > Georeference Detail,Georeference source,localityGroupList > localityGroup,geoRefSource,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefSource,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefSource,Locality Information,Locality > Georeference Detail,Georeference source,localityGroupList > localityGroup,geoRefSource,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geoRefVerificationStatus,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefVerificationStatus,Locality Information,Locality > Georeference Detail,Georeference verification,localityGroupList > localityGroup,geoRefVerificationStatus,string,n,n,y,option list: georefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefVerificationStatus,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefVerificationStatus,Locality Information,Locality > Georeference Detail,Georeference verification,localityGroupList > localityGroup,geoRefVerificationStatus,string,n,n,y,option list: georefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian", +anthro_7-0-0 collectionobject ext.locality geoRefRemarks,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefRemarks,Locality Information,Locality > Georeference Detail,Georeference note,localityGroupList > localityGroup,geoRefRemarks,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefRemarks,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefRemarks,Locality Information,Locality > Georeference Detail,Georeference note,localityGroupList > localityGroup,geoRefRemarks,string,n,n,y,"","", +anthro_7-0-0 collectionobject ext.locality geoRefPlaceName,anthro_7-0-0,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefPlaceName,Locality Information,Locality > Georeference Detail,Georeference place name,localityGroupList > localityGroup,geoRefPlaceName,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ext.locality geoRefPlaceName,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_anthro,ext.locality,ext.locality.geoRefPlaceName,Locality Information,Locality > Georeference Detail,Georeference place name,localityGroupList > localityGroup,geoRefPlaceName,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightType,Rights Management Information,"",Right type,rightsGroupList > rightsGroup,rightType,string,n,n,y,vocabulary: rightstype,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightType,Rights Management Information,"",Right type,rightsGroupList > rightsGroup,rightType,string,n,n,y,vocabulary: rightstype,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightBeginDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightBeginDate,Rights Management Information,"",Right begin date,rightsGroupList > rightsGroup,rightBeginDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightBeginDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightBeginDate,Rights Management Information,"",Right begin date,rightsGroupList > rightsGroup,rightBeginDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightEndDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightEndDate,Rights Management Information,"",Right end date,rightsGroupList > rightsGroup,rightEndDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightEndDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightEndDate,Rights Management Information,"",Right end date,rightsGroupList > rightsGroup,rightEndDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightHolder,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolder,Rights Management Information,Right holder,Right holder name,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolder,string,n,n,y,authority: organization/local; authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightHolder,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolder,Rights Management Information,Right holder,Right holder name,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolder,string,n,n,y,authority: organization/local; authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightHolderContact,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolderContact,Rights Management Information,Right holder,Right holder contact,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolderContact,string,n,n,y,authority: organization/local; authority: person/local,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightHolderContact,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightHolderContact,Rights Management Information,Right holder,Right holder contact,rightsGroupList > rightsGroup > rightHolderGroupList > rightHolderGroup,rightHolderContact,string,n,n,y,authority: organization/local; authority: person/local,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightJurisdiction,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightJurisdiction,Rights Management Information,"",Right jurisdiction,rightsGroupList > rightsGroup,rightJurisdiction,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightJurisdiction,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightJurisdiction,Rights Management Information,"",Right jurisdiction,rightsGroupList > rightsGroup,rightJurisdiction,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +anthro_7-0-0 collectionobject ns2:collectionobjects_common standardizedRightStatement,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.standardizedRightStatement,Rights Management Information,"",Standardized right statement,rightsGroupList > rightsGroup,standardizedRightStatement,string,n,n,y,vocabulary: standardizedrightstatement,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common standardizedRightStatement,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.standardizedRightStatement,Rights Management Information,"",Standardized right statement,rightsGroupList > rightsGroup,standardizedRightStatement,string,n,n,y,vocabulary: standardizedrightstatement,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightStatement,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightStatement,Rights Management Information,"",Right statement,rightsGroupList > rightsGroup,rightStatement,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightStatement,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightStatement,Rights Management Information,"",Right statement,rightsGroupList > rightsGroup,rightStatement,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightNote,Rights Management Information,"",Right note,rightsGroupList > rightsGroup,rightNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightNote,Rights Management Information,"",Right note,rightsGroupList > rightsGroup,rightNote,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightInType,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInType,Rights In Management Information,"",Right in type,rightsInGroupList > rightsInGroup > rightInTypes,rightInType,string,n,y,as part of larger repeating group,vocabulary: rightsin,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightInType,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInType,Rights In Management Information,"",Right in type,rightsInGroupList > rightsInGroup > rightInTypes,rightInType,string,n,y,as part of larger repeating group,vocabulary: rightsin,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightInBeginDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInBeginDate,Rights In Management Information,"",Right in begin date,rightsInGroupList > rightsInGroup,rightInBeginDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightInBeginDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInBeginDate,Rights In Management Information,"",Right in begin date,rightsInGroupList > rightsInGroup,rightInBeginDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightInEndDate,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInEndDate,Rights In Management Information,"",Right in end date,rightsInGroupList > rightsInGroup,rightInEndDate,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightInEndDate,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInEndDate,Rights In Management Information,"",Right in end date,rightsInGroupList > rightsInGroup,rightInEndDate,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common agreementSent,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSent,Rights In Management Information,"",Right in agreement sent,rightsInGroupList > rightsInGroup,agreementSent,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common agreementSent,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSent,Rights In Management Information,"",Right in agreement sent,rightsInGroupList > rightsInGroup,agreementSent,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common agreementReceived,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementReceived,Rights In Management Information,"",Right in agreement received,rightsInGroupList > rightsInGroup,agreementReceived,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common agreementReceived,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementReceived,Rights In Management Information,"",Right in agreement received,rightsInGroupList > rightsInGroup,agreementReceived,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common agreementSigned,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSigned,Rights In Management Information,"",Right in agreement signed,rightsInGroupList > rightsInGroup,agreementSigned,date,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common agreementSigned,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.agreementSigned,Rights In Management Information,"",Right in agreement signed,rightsInGroupList > rightsInGroup,agreementSigned,date,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightInRestriction,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInRestriction,Rights In Management Information,"",Right in restriction,rightsInGroupList > rightsInGroup > rightInRestrictions,rightInRestriction,string,n,y,as part of larger repeating group,vocabulary: rightsinrestriction,"", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightInRestriction,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInRestriction,Rights In Management Information,"",Right in restriction,rightsInGroupList > rightsInGroup > rightInRestrictions,rightInRestriction,string,n,y,as part of larger repeating group,vocabulary: rightsinrestriction,"", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightReproductionStatement,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightReproductionStatement,Rights In Management Information,"",Right statement for reproduction,rightsInGroupList > rightsInGroup,rightReproductionStatement,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightReproductionStatement,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightReproductionStatement,Rights In Management Information,"",Right statement for reproduction,rightsInGroupList > rightsInGroup,rightReproductionStatement,string,n,n,y,"","", +anthro_7-0-0 collectionobject ns2:collectionobjects_common rightInNote,anthro_7-0-0,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInNote,Rights In Management Information,"",Right in note,rightsInGroupList > rightsInGroup,rightInNote,string,n,n,y,"","", +ohc_1-0-18_7-2 collectionobject ns2:collectionobjects_common rightInNote,ohc_1-0-18_7-2,collectionobject,ns2:collectionobjects_common,ns2:collectionobjects_common,collectionobjects_common.rightInNote,Rights In Management Information,"",Right in note,rightsInGroupList > rightsInGroup,rightInNote,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termDisplayName,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termDisplayName,Concept Information,Term,Term display name,conceptTermGroupList > conceptTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termDisplayName,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termDisplayName,Concept Information,Term,Term display name,conceptTermGroupList > conceptTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termName,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termName,Concept Information,Term,Term name,conceptTermGroupList > conceptTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termName,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termName,Concept Information,Term,Term name,conceptTermGroupList > conceptTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termQualifier,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termQualifier,Concept Information,Term,Term qualifier,conceptTermGroupList > conceptTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termQualifier,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termQualifier,Concept Information,Term,Term qualifier,conceptTermGroupList > conceptTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termStatus,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termStatus,Concept Information,Term,Term status,conceptTermGroupList > conceptTermGroup,termStatus,string,n,n,y,option list: conceptTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 concept ns2:concepts_common termStatus,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termStatus,Concept Information,Term,Term status,conceptTermGroupList > conceptTermGroup,termStatus,string,n,n,y,option list: conceptTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 concept ns2:concepts_common termType,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termType,Concept Information,Term,Term type,conceptTermGroupList > conceptTermGroup,termType,string,n,n,y,option list: conceptTermTypes,"alternate descriptor, descriptor, used for term", +ohc_1-0-18_7-2 concept ns2:concepts_common termType,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termType,Concept Information,Term,Term type,conceptTermGroupList > conceptTermGroup,termType,string,n,n,y,option list: conceptTermTypes,"alternate descriptor, descriptor, used for term", +anthro_7-0-0 concept ns2:concepts_common termFlag,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termFlag,Concept Information,Term,Term flag,conceptTermGroupList > conceptTermGroup,termFlag,string,n,n,y,vocabulary: concepttermflag,"", +ohc_1-0-18_7-2 concept ns2:concepts_common termFlag,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termFlag,Concept Information,Term,Term flag,conceptTermGroupList > conceptTermGroup,termFlag,string,n,n,y,vocabulary: concepttermflag,"", +anthro_7-0-0 concept ns2:concepts_common historicalStatus,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.historicalStatus,Concept Information,Term,Term historical status,conceptTermGroupList > conceptTermGroup,historicalStatus,string,n,n,y,option list: conceptHistoricalStatuses,"both, current, historical, unknown", +ohc_1-0-18_7-2 concept ns2:concepts_common historicalStatus,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.historicalStatus,Concept Information,Term,Term historical status,conceptTermGroupList > conceptTermGroup,historicalStatus,string,n,n,y,option list: conceptHistoricalStatuses,"both, current, historical, unknown", +anthro_7-0-0 concept ns2:concepts_common termLanguage,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termLanguage,Concept Information,Term,Term language,conceptTermGroupList > conceptTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 concept ns2:concepts_common termLanguage,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termLanguage,Concept Information,Term,Term language,conceptTermGroupList > conceptTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 concept ns2:concepts_common termPrefForLang,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termPrefForLang,Concept Information,Term,Term preferred for lang,conceptTermGroupList > conceptTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termPrefForLang,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termPrefForLang,Concept Information,Term,Term preferred for lang,conceptTermGroupList > conceptTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termSource,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSource,Concept Information,Term > Source,Term source name,conceptTermGroupList > conceptTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 concept ns2:concepts_common termSource,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSource,Concept Information,Term > Source,Term source name,conceptTermGroupList > conceptTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 concept ns2:concepts_common termSourceDetail,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceDetail,Concept Information,Term > Source,Term source detail,conceptTermGroupList > conceptTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termSourceDetail,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceDetail,Concept Information,Term > Source,Term source detail,conceptTermGroupList > conceptTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termSourceID,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceID,Concept Information,Term > Source,Term source ID,conceptTermGroupList > conceptTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termSourceID,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceID,Concept Information,Term > Source,Term source ID,conceptTermGroupList > conceptTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common termSourceNote,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceNote,Concept Information,Term > Source,Term source note,conceptTermGroupList > conceptTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common termSourceNote,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.termSourceNote,Concept Information,Term > Source,Term source note,conceptTermGroupList > conceptTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common conceptRecordType,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.conceptRecordType,Concept Information,"",Concept type,conceptRecordTypes,conceptRecordType,string,n,y,n,vocabulary: concepttype,"", +ohc_1-0-18_7-2 concept ns2:concepts_common conceptRecordType,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.conceptRecordType,Concept Information,"",Concept type,conceptRecordTypes,conceptRecordType,string,n,y,n,vocabulary: concepttype,"", +anthro_7-0-0 concept ns2:concepts_common scopeNote,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNote,Concept Information,Scope note,Scope note,"",scopeNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common scopeNote,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNote,Concept Information,Scope note,Scope note,"",scopeNote,string,n,n,n/a,"","", +anthro_7-0-0 concept ns2:concepts_common scopeNoteSource,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSource,Concept Information,Scope note,Scope note source,"",scopeNoteSource,string,n,n,n/a,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common scopeNoteSource,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSource,Concept Information,Scope note,Scope note source,"",scopeNoteSource,string,n,n,n/a,"","", +anthro_7-0-0 concept ns2:concepts_common scopeNoteSourceDetail,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSourceDetail,Concept Information,Scope note,Scope note source detail,"",scopeNoteSourceDetail,string,n,n,n/a,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common scopeNoteSourceDetail,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.scopeNoteSourceDetail,Concept Information,Scope note,Scope note source detail,"",scopeNoteSourceDetail,string,n,n,n/a,"","", +anthro_7-0-0 concept ns2:concepts_common citationSource,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSource,Concept Information,Citation,Citation source,citationGroupList > citationGroup,citationSource,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common citationSource,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSource,Concept Information,Citation,Citation source,citationGroupList > citationGroup,citationSource,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common citationSourceDetail,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSourceDetail,Concept Information,Citation,Citation source detail,citationGroupList > citationGroup,citationSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common citationSourceDetail,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.citationSourceDetail,Concept Information,Citation,Citation source detail,citationGroupList > citationGroup,citationSourceDetail,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common additionalSource,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSource,Concept Information,Additional source,Additional source,additionalSourceGroupList > additionalSourceGroup,additionalSource,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common additionalSource,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSource,Concept Information,Additional source,Additional source,additionalSourceGroupList > additionalSourceGroup,additionalSource,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common additionalSourceDetail,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceDetail,Concept Information,Additional source,Additional source detail,additionalSourceGroupList > additionalSourceGroup,additionalSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common additionalSourceDetail,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceDetail,Concept Information,Additional source,Additional source detail,additionalSourceGroupList > additionalSourceGroup,additionalSourceDetail,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common additionalSourceID,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceID,Concept Information,Additional source,Additional source ID,additionalSourceGroupList > additionalSourceGroup,additionalSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common additionalSourceID,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceID,Concept Information,Additional source,Additional source ID,additionalSourceGroupList > additionalSourceGroup,additionalSourceID,string,n,n,y,"","", +anthro_7-0-0 concept ns2:concepts_common additionalSourceNote,anthro_7-0-0,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceNote,Concept Information,Additional source,Additional source note,additionalSourceGroupList > additionalSourceGroup,additionalSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 concept ns2:concepts_common additionalSourceNote,ohc_1-0-18_7-2,concept,ns2:concepts_common,ns2:concepts_common,concepts_common.additionalSourceNote,Concept Information,Additional source,Additional source note,additionalSourceGroupList > additionalSourceGroup,additionalSourceNote,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionCheckRefNumber,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckRefNumber,Condition Check/Technical Assessment Information,"",Reference number,"",conditionCheckRefNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionCheckRefNumber,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckRefNumber,Condition Check/Technical Assessment Information,"",Reference number,"",conditionCheckRefNumber,string,y,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionCheckAssessmentDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckAssessmentDate,Condition Check/Technical Assessment Information,"",Check/assessment date,"",conditionCheckAssessmentDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionCheckAssessmentDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckAssessmentDate,Condition Check/Technical Assessment Information,"",Check/assessment date,"",conditionCheckAssessmentDate,date,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionCheckMethod,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckMethod,Condition Check/Technical Assessment Information,"",Method,"",conditionCheckMethod,string,n,n,n/a,option list: conditionCheckMethods,"observed, xrayed", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionCheckMethod,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckMethod,Condition Check/Technical Assessment Information,"",Method,"",conditionCheckMethod,string,n,n,n/a,option list: conditionCheckMethods,"observed, xrayed", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionCheckReason,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckReason,Condition Check/Technical Assessment Information,"",Reason,"",conditionCheckReason,string,n,n,n/a,option list: conditionCheckReasons,"conservation, damagedintransit, exhibition, loanin, newacquisition", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionCheckReason,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckReason,Condition Check/Technical Assessment Information,"",Reason,"",conditionCheckReason,string,n,n,n/a,option list: conditionCheckReasons,"candidate for deaccession, conservation, consideration, damaged, exhibit, exhibit preparation, inquiry, inventory/recataloging, loanin, loanout", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionChecker,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionChecker,Condition Check/Technical Assessment Information,"",Checker/assessor,"",conditionChecker,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionChecker,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionChecker,Condition Check/Technical Assessment Information,"",Checker/assessor,"",conditionChecker,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionCheckNote,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckNote,Condition Check/Technical Assessment Information,"",Note,"",conditionCheckNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionCheckNote,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionCheckNote,Condition Check/Technical Assessment Information,"",Note,"",conditionCheckNote,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common objectAuditCategory,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.objectAuditCategory,Object Condition Information,"",Object audit category,"",objectAuditCategory,string,n,n,n/a,option list: objectAuditCategories,"high, low, medium", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common objectAuditCategory,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.objectAuditCategory,Object Condition Information,"",Object audit category,"",objectAuditCategory,string,n,n,n/a,option list: objectAuditCategories,"high, low, medium", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conservationTreatmentPriority,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conservationTreatmentPriority,Object Condition Information,"",Conservation treatment priority,"",conservationTreatmentPriority,string,n,n,n/a,option list: conservationTreatmentPriorities,"high, low, medium", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conservationTreatmentPriority,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conservationTreatmentPriority,Object Condition Information,"",Conservation treatment priority,"",conservationTreatmentPriority,string,n,n,n/a,option list: conservationTreatmentPriorities,"high, low, medium", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common nextConditionCheckDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.nextConditionCheckDate,Object Condition Information,"",Next check/assessment date,"",nextConditionCheckDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common nextConditionCheckDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.nextConditionCheckDate,Object Condition Information,"",Next check/assessment date,"",nextConditionCheckDate,date,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common completeness,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completeness,Object Condition Information,Completeness,Completeness description,completenessGroupList > completenessGroup,completeness,string,n,n,y,option list: completenessLevels,"complete, fragmented, incomplete", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common completeness,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completeness,Object Condition Information,Completeness,Completeness description,completenessGroupList > completenessGroup,completeness,string,n,n,y,option list: completenessLevels,"complete, fragmented, incomplete", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common completenessDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessDate,Object Condition Information,Completeness,Completeness date,completenessGroupList > completenessGroup,completenessDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common completenessDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessDate,Object Condition Information,Completeness,Completeness date,completenessGroupList > completenessGroup,completenessDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common completenessNote,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessNote,Object Condition Information,Completeness,Completeness note,completenessGroupList > completenessGroup,completenessNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common completenessNote,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.completenessNote,Object Condition Information,Completeness,Completeness note,completenessGroupList > completenessGroup,completenessNote,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common hazard,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazard,Object Condition Information,Hazard,Hazard description,hazardGroupList > hazardGroup,hazard,string,n,n,y,option list: hazards,"poisonous, radioactive", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common hazard,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazard,Object Condition Information,Hazard,Hazard description,hazardGroupList > hazardGroup,hazard,string,n,n,y,option list: hazards,"arsenic, asbestos, corrosive, flammable, guano, insects, lead, mercury, mold or mildew, oxidation, oxidation, poisonous, radioactive, scat, sharp protrusion, unstable component, vermin", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common hazardDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardDate,Object Condition Information,Hazard,Hazard date,hazardGroupList > hazardGroup,hazardDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common hazardDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardDate,Object Condition Information,Hazard,Hazard date,hazardGroupList > hazardGroup,hazardDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common hazardNote,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardNote,Object Condition Information,Hazard,Hazard note,hazardGroupList > hazardGroup,hazardNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common hazardNote,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.hazardNote,Object Condition Information,Hazard,Hazard note,hazardGroupList > hazardGroup,hazardNote,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common techAssessment,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessment,Object Condition Information,Technical assessment,Technical assessment description,techAssessmentGroupList > techAssessmentGroup,techAssessment,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common techAssessment,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessment,Object Condition Information,Technical assessment,Technical assessment description,techAssessmentGroupList > techAssessmentGroup,techAssessment,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common techAssessmentDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessmentDate,Object Condition Information,Technical assessment,Technical assessment date,techAssessmentGroupList > techAssessmentGroup,techAssessmentDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common techAssessmentDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.techAssessmentDate,Object Condition Information,Technical assessment,Technical assessment date,techAssessmentGroupList > techAssessmentGroup,techAssessmentDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common condition,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.condition,Object Condition Information,Condition,Condition description,conditionCheckGroupList > conditionCheckGroup,condition,string,n,n,y,option list: conditions,"exhibitableneedswork, injeopardy, needsnowork, notexhibitablestable", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common condition,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.condition,Object Condition Information,Condition,Condition description,conditionCheckGroupList > conditionCheckGroup,condition,string,n,n,y,option list: conditions,"exhibitableneedswork, injeopardy, needsnowork, notexhibitablestable", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionDate,Object Condition Information,Condition,Condition date,conditionCheckGroupList > conditionCheckGroup,conditionDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionDate,Object Condition Information,Condition,Condition date,conditionCheckGroupList > conditionCheckGroup,conditionDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common conditionNote,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionNote,Object Condition Information,Condition,Condition note,conditionCheckGroupList > conditionCheckGroup,conditionNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common conditionNote,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.conditionNote,Object Condition Information,Condition,Condition note,conditionCheckGroupList > conditionCheckGroup,conditionNote,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common envConditionNote,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNote,Object Condition Information,Environmental condition,Environmental condition note,envConditionNoteGroupList > envConditionNoteGroup,envConditionNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common envConditionNote,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNote,Object Condition Information,Environmental condition,Environmental condition note,envConditionNoteGroupList > envConditionNoteGroup,envConditionNote,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common envConditionNoteDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNoteDate,Object Condition Information,Environmental condition,Environmental condition date,envConditionNoteGroupList > envConditionNoteGroup,envConditionNoteDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common envConditionNoteDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envConditionNoteDate,Object Condition Information,Environmental condition,Environmental condition date,envConditionNoteGroupList > envConditionNoteGroup,envConditionNoteDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common displayRecommendations,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.displayRecommendations,Object Recommendation/Requirement Information,"",Display recommendation,"",displayRecommendations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common displayRecommendations,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.displayRecommendations,Object Recommendation/Requirement Information,"",Display recommendation,"",displayRecommendations,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common handlingRecommendations,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.handlingRecommendations,Object Recommendation/Requirement Information,"",Handling recommendation,"",handlingRecommendations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common handlingRecommendations,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.handlingRecommendations,Object Recommendation/Requirement Information,"",Handling recommendation,"",handlingRecommendations,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common securityRecommendations,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.securityRecommendations,Object Recommendation/Requirement Information,"",Security recommendation,"",securityRecommendations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common securityRecommendations,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.securityRecommendations,Object Recommendation/Requirement Information,"",Security recommendation,"",securityRecommendations,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common storageRequirements,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.storageRequirements,Object Recommendation/Requirement Information,"",Storage recommendation,"",storageRequirements,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common storageRequirements,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.storageRequirements,Object Recommendation/Requirement Information,"",Storage recommendation,"",storageRequirements,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common envRecommendations,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envRecommendations,Object Recommendation/Requirement Information,"",Environmental recommendation,"",envRecommendations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common envRecommendations,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.envRecommendations,Object Recommendation/Requirement Information,"",Environmental recommendation,"",envRecommendations,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common packingRecommendations,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.packingRecommendations,Object Recommendation/Requirement Information,"",Packing recommendation,"",packingRecommendations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common packingRecommendations,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.packingRecommendations,Object Recommendation/Requirement Information,"",Packing recommendation,"",packingRecommendations,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common specialRequirements,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.specialRequirements,Object Recommendation/Requirement Information,"",Special requirement,"",specialRequirements,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common specialRequirements,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.specialRequirements,Object Recommendation/Requirement Information,"",Special requirement,"",specialRequirements,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalRequirements,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalRequirements,Object Recommendation/Requirement Information,"",Legal requirement,"",legalRequirements,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalRequirements,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalRequirements,Object Recommendation/Requirement Information,"",Legal requirement,"",legalRequirements,string,n,n,n/a,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalReqsHeld,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeld,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held description,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeld,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalReqsHeld,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeld,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held description,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeld,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalReqsHeldBeginDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldBeginDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held begin date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldBeginDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalReqsHeldBeginDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldBeginDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held begin date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldBeginDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalReqsHeldEndDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldEndDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held end date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldEndDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalReqsHeldEndDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldEndDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held end date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldEndDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalReqsHeldNumber,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldNumber,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held number,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalReqsHeldNumber,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldNumber,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held number,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldNumber,string,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common legalReqsHeldRenewDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldRenewDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held renewal date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldRenewDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common legalReqsHeldRenewDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.legalReqsHeldRenewDate,Object Recommendation/Requirement Information,Legal/license requirement held,Legal/license requirement held renewal date,legalReqsHeldGroupList > legalReqsHeldGroup,legalReqsHeldRenewDate,date,n,n,y,"","", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common salvagePriorityCode,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCode,Object Recommendation/Requirement Information,Salvage priority,Salvage priority code,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCode,string,n,n,y,option list: salvagePriorityCodes,"high, low, medium", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common salvagePriorityCode,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCode,Object Recommendation/Requirement Information,Salvage priority,Salvage priority code,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCode,string,n,n,y,option list: salvagePriorityCodes,"high, low, medium", +anthro_7-0-0 conditioncheck ns2:conditionchecks_common salvagePriorityCodeDate,anthro_7-0-0,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCodeDate,Object Recommendation/Requirement Information,Salvage priority,Salvage priority date,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCodeDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conditioncheck ns2:conditionchecks_common salvagePriorityCodeDate,ohc_1-0-18_7-2,conditioncheck,ns2:conditionchecks_common,ns2:conditionchecks_common,conditionchecks_common.salvagePriorityCodeDate,Object Recommendation/Requirement Information,Salvage priority,Salvage priority date,salvagePriorityCodeGroupList > salvagePriorityCodeGroup,salvagePriorityCodeDate,date,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common conservationNumber,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservationNumber,Conservation Treatment Information,"",Reference number,"",conservationNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common conservationNumber,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservationNumber,Conservation Treatment Information,"",Reference number,"",conservationNumber,string,y,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common status,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.status,Conservation Treatment Information,Procedural status,Procedural status,conservationStatusGroupList > conservationStatusGroup,status,string,n,n,y,vocabulary: conservationstatus,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common status,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.status,Conservation Treatment Information,Procedural status,Procedural status,conservationStatusGroupList > conservationStatusGroup,status,string,n,n,y,vocabulary: conservationstatus,"", +anthro_7-0-0 conservation ns2:conservation_common statusDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.statusDate,Conservation Treatment Information,Procedural status,Procedural status date,conservationStatusGroupList > conservationStatusGroup,statusDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common statusDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.statusDate,Conservation Treatment Information,Procedural status,Procedural status date,conservationStatusGroupList > conservationStatusGroup,statusDate,date,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common treatmentPurpose,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentPurpose,Conservation Treatment Information,"",Treatment purpose,"",treatmentPurpose,string,n,n,n/a,vocabulary: treatmentpurpose,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common treatmentPurpose,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentPurpose,Conservation Treatment Information,"",Treatment purpose,"",treatmentPurpose,string,n,n,n/a,vocabulary: treatmentpurpose,"", +anthro_7-0-0 conservation ns2:conservation_common conservator,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservator,Conservation Treatment Information,"",Conservator,conservators,conservator,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common conservator,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.conservator,Conservation Treatment Information,"",Conservator,conservators,conservator,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 conservation ns2:conservation_common otherParty,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherParty,Conservation Treatment Information,Other treatment party,Other treatment party name,otherPartyGroupList > otherPartyGroup,otherParty,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common otherParty,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherParty,Conservation Treatment Information,Other treatment party,Other treatment party name,otherPartyGroupList > otherPartyGroup,otherParty,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 conservation ns2:conservation_common otherPartyRole,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyRole,Conservation Treatment Information,Other treatment party,Other treatment party role,otherPartyGroupList > otherPartyGroup,otherPartyRole,string,n,n,y,vocabulary: otherpartyrole,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common otherPartyRole,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyRole,Conservation Treatment Information,Other treatment party,Other treatment party role,otherPartyGroupList > otherPartyGroup,otherPartyRole,string,n,n,y,vocabulary: otherpartyrole,"", +anthro_7-0-0 conservation ns2:conservation_common otherPartyNote,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyNote,Conservation Treatment Information,Other treatment party,Other treatment party note,otherPartyGroupList > otherPartyGroup,otherPartyNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common otherPartyNote,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.otherPartyNote,Conservation Treatment Information,Other treatment party,Other treatment party note,otherPartyGroupList > otherPartyGroup,otherPartyNote,string,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common examinationStaff,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationStaff,Conservation Treatment Information,Examination,Examination staff,examinationGroupList > examinationGroup,examinationStaff,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common examinationStaff,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationStaff,Conservation Treatment Information,Examination,Examination staff,examinationGroupList > examinationGroup,examinationStaff,string,n,n,y,authority: person/local,"", +anthro_7-0-0 conservation ns2:conservation_common examinationPhase,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationPhase,Conservation Treatment Information,Examination,Examination phase of treatment,examinationGroupList > examinationGroup,examinationPhase,string,n,n,y,vocabulary: examinationphase,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common examinationPhase,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationPhase,Conservation Treatment Information,Examination,Examination phase of treatment,examinationGroupList > examinationGroup,examinationPhase,string,n,n,y,vocabulary: examinationphase,"", +anthro_7-0-0 conservation ns2:conservation_common examinationDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationDate,Conservation Treatment Information,Examination,Examination date,examinationGroupList > examinationGroup,examinationDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common examinationDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationDate,Conservation Treatment Information,Examination,Examination date,examinationGroupList > examinationGroup,examinationDate,date,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common examinationNote,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationNote,Conservation Treatment Information,Examination,Examination note,examinationGroupList > examinationGroup,examinationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common examinationNote,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.examinationNote,Conservation Treatment Information,Examination,Examination note,examinationGroupList > examinationGroup,examinationNote,string,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common fabricationNote,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.fabricationNote,Conservation Treatment Information,"",Fabrication note,"",fabricationNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common fabricationNote,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.fabricationNote,Conservation Treatment Information,"",Fabrication note,"",fabricationNote,string,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common proposedTreatment,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedTreatment,Conservation Treatment Information,"",Proposed treatment,"",proposedTreatment,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common proposedTreatment,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedTreatment,Conservation Treatment Information,"",Proposed treatment,"",proposedTreatment,string,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common approvedBy,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedBy,Conservation Treatment Information,"",Approved by,"",approvedBy,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common approvedBy,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedBy,Conservation Treatment Information,"",Approved by,"",approvedBy,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 conservation ns2:conservation_common approvedDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedDate,Conservation Treatment Information,"",Approval date,"",approvedDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common approvedDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.approvedDate,Conservation Treatment Information,"",Approval date,"",approvedDate,date,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common treatmentStartDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentStartDate,Conservation Treatment Information,"",Treatment start date,"",treatmentStartDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common treatmentStartDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentStartDate,Conservation Treatment Information,"",Treatment start date,"",treatmentStartDate,date,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common treatmentEndDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentEndDate,Conservation Treatment Information,"",Treatment end date,"",treatmentEndDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common treatmentEndDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentEndDate,Conservation Treatment Information,"",Treatment end date,"",treatmentEndDate,date,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common treatmentSummary,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentSummary,Conservation Treatment Information,"",Treatment summary,"",treatmentSummary,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common treatmentSummary,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.treatmentSummary,Conservation Treatment Information,"",Treatment summary,"",treatmentSummary,string,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common proposedAnalysis,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysis,Object Analysis Information,"",Proposed analysis,"",proposedAnalysis,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common proposedAnalysis,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysis,Object Analysis Information,"",Proposed analysis,"",proposedAnalysis,string,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common researcher,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.researcher,Object Analysis Information,"",Analysis researcher,"",researcher,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common researcher,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.researcher,Object Analysis Information,"",Analysis researcher,"",researcher,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 conservation ns2:conservation_common proposedAnalysisDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysisDate,Object Analysis Information,"",Analysis proposal date,"",proposedAnalysisDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common proposedAnalysisDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.proposedAnalysisDate,Object Analysis Information,"",Analysis proposal date,"",proposedAnalysisDate,date,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common destAnalysisApprovedDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovedDate,Object Analysis Information,Destructive analysis,Destructive analysis approval date,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovedDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common destAnalysisApprovedDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovedDate,Object Analysis Information,Destructive analysis,Destructive analysis approval date,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovedDate,date,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common destAnalysisApprovalNote,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovalNote,Object Analysis Information,Destructive analysis,Destructive analysis approval note,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovalNote,string,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common destAnalysisApprovalNote,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.destAnalysisApprovalNote,Object Analysis Information,Destructive analysis,Destructive analysis approval note,destAnalysisGroupList > destAnalysisGroup,destAnalysisApprovalNote,string,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common sampleBy,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleBy,Object Analysis Information,Destructive analysis,Destructive analysis sample taken by,destAnalysisGroupList > destAnalysisGroup,sampleBy,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 conservation ns2:conservation_common sampleBy,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleBy,Object Analysis Information,Destructive analysis,Destructive analysis sample taken by,destAnalysisGroupList > destAnalysisGroup,sampleBy,string,n,n,y,authority: person/local,"", +anthro_7-0-0 conservation ns2:conservation_common sampleDate,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDate,Object Analysis Information,Destructive analysis,Destructive analysis sample date,destAnalysisGroupList > destAnalysisGroup,sampleDate,date,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common sampleDate,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDate,Object Analysis Information,Destructive analysis,Destructive analysis sample date,destAnalysisGroupList > destAnalysisGroup,sampleDate,date,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common sampleDescription,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDescription,Object Analysis Information,Destructive analysis,Destructive analysis sample description,destAnalysisGroupList > destAnalysisGroup,sampleDescription,string,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common sampleDescription,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleDescription,Object Analysis Information,Destructive analysis,Destructive analysis sample description,destAnalysisGroupList > destAnalysisGroup,sampleDescription,string,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common sampleReturned,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturned,Object Analysis Information,Destructive analysis,Destructive analysis sample returned,destAnalysisGroupList > destAnalysisGroup,sampleReturned,boolean,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common sampleReturned,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturned,Object Analysis Information,Destructive analysis,Destructive analysis sample returned,destAnalysisGroupList > destAnalysisGroup,sampleReturned,boolean,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common sampleReturnedLocation,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturnedLocation,Object Analysis Information,Destructive analysis,Destructive analysis sample returned location,destAnalysisGroupList > destAnalysisGroup,sampleReturnedLocation,string,n,n,y,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common sampleReturnedLocation,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.sampleReturnedLocation,Object Analysis Information,Destructive analysis,Destructive analysis sample returned location,destAnalysisGroupList > destAnalysisGroup,sampleReturnedLocation,string,n,n,y,"","", +anthro_7-0-0 conservation ns2:conservation_common analysisMethod,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisMethod,Object Analysis Information,"",Analytical methodology,"",analysisMethod,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common analysisMethod,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisMethod,Object Analysis Information,"",Analytical methodology,"",analysisMethod,string,n,n,n/a,"","", +anthro_7-0-0 conservation ns2:conservation_common analysisResults,anthro_7-0-0,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisResults,Object Analysis Information,"",Analytical result,"",analysisResults,string,n,n,n/a,"","", +ohc_1-0-18_7-2 conservation ns2:conservation_common analysisResults,ohc_1-0-18_7-2,conservation,ns2:conservation_common,ns2:conservation_common,conservation_common.analysisResults,Object Analysis Information,"",Analytical result,"",analysisResults,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionNumber,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionNumber,Exhibition Information,"",Exhibition number,"",exhibitionNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionNumber,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionNumber,Exhibition Information,"",Exhibition number,"",exhibitionNumber,string,y,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common type,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.type,Exhibition Information,"",Type,"",type,string,n,n,n/a,vocabulary: exhibitiontype,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common type,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.type,Exhibition Information,"",Type,"",type,string,n,n,n/a,vocabulary: exhibitiontype,"", +anthro_7-0-0 exhibition ns2:exhibitions_common title,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.title,Exhibition Information,"",Title,"",title,string,n,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common title,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.title,Exhibition Information,"",Title,"",title,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common sponsor,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.sponsor,Exhibition Information,"",Sponsor,sponsors,sponsor,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common sponsor,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.sponsor,Exhibition Information,"",Sponsor,sponsors,sponsor,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 exhibition ns2:exhibitions_common organizer,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.organizer,Exhibition Information,"",Organizer,organizers,organizer,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common organizer,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.organizer,Exhibition Information,"",Organizer,organizers,organizer,string,n,y,n,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 exhibition ns2:exhibitions_common publishTo,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.publishTo,Exhibition Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common publishTo,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.publishTo,Exhibition Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +anthro_7-0-0 exhibition ns2:exhibitions_common venue,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venue,Exhibition Information,Venue,Venue name,venueGroupList > venueGroup,venue,string,n,n,y,authority: organization/local; authority: organization/ulan; authority: location/local; authority: location/offsite; authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common venue,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venue,Exhibition Information,Venue,Venue name,venueGroupList > venueGroup,venue,string,n,n,y,authority: organization/local; authority: organization/ulan; authority: location/local; authority: location/offsite; authority: place/local; authority: place/tgn,"", +anthro_7-0-0 exhibition ns2:exhibitions_common venueOpeningDate,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueOpeningDate,Exhibition Information,Venue,Venue opening date,venueGroupList > venueGroup,venueOpeningDate,date,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common venueOpeningDate,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueOpeningDate,Exhibition Information,Venue,Venue opening date,venueGroupList > venueGroup,venueOpeningDate,date,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common venueClosingDate,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueClosingDate,Exhibition Information,Venue,Venue closing date,venueGroupList > venueGroup,venueClosingDate,date,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common venueClosingDate,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueClosingDate,Exhibition Information,Venue,Venue closing date,venueGroupList > venueGroup,venueClosingDate,date,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common venueAttendance,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueAttendance,Exhibition Information,Venue,Venue attendance,venueGroupList > venueGroup,venueAttendance,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common venueAttendance,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueAttendance,Exhibition Information,Venue,Venue attendance,venueGroupList > venueGroup,venueAttendance,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common venueUrl,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueUrl,Exhibition Information,Venue,Venue web address,venueGroupList > venueGroup,venueUrl,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common venueUrl,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.venueUrl,Exhibition Information,Venue,Venue web address,venueGroupList > venueGroup,venueUrl,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common workingGroupTitle,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupTitle,Exhibition Information,Working group,Working group title,workingGroupList > workingGroup,workingGroupTitle,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common workingGroupTitle,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupTitle,Exhibition Information,Working group,Working group title,workingGroupList > workingGroup,workingGroupTitle,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common workingGroupNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupNote,Exhibition Information,Working group,Working group note,workingGroupList > workingGroup,workingGroupNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common workingGroupNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.workingGroupNote,Exhibition Information,Working group,Working group note,workingGroupList > workingGroup,workingGroupNote,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionPerson,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPerson,Exhibition Information,Working group > Working group member,Working group member name,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPerson,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionPerson,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPerson,Exhibition Information,Working group > Working group member,Working group member name,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPerson,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionPersonRole,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPersonRole,Exhibition Information,Working group > Working group member,Working group member role,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPersonRole,string,n,n,y,vocabulary: exhibitionpersonrole,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionPersonRole,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionPersonRole,Exhibition Information,Working group > Working group member,Working group member role,workingGroupList > workingGroup > exhibitionPersonGroupList > exhibitionPersonGroup,exhibitionPersonRole,string,n,n,y,vocabulary: exhibitionpersonrole,"", +anthro_7-0-0 exhibition ns2:exhibitions_common planningNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.planningNote,Exhibition Information,"",Planning note,"",planningNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common planningNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.planningNote,Exhibition Information,"",Planning note,"",planningNote,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common curatorialNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.curatorialNote,Exhibition Information,"",Curatorial note,"",curatorialNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common curatorialNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.curatorialNote,Exhibition Information,"",Curatorial note,"",curatorialNote,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common generalNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.generalNote,Exhibition Information,"",General note,"",generalNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common generalNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.generalNote,Exhibition Information,"",General note,"",generalNote,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common boilerplateText,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.boilerplateText,Exhibition Information,"",Boilerplate text,"",boilerplateText,string,n,n,n/a,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common boilerplateText,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.boilerplateText,Exhibition Information,"",Boilerplate text,"",boilerplateText,string,n,n,n/a,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common galleryRotationName,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationName,Exhibition Information,Gallery rotation,Gallery rotation name,galleryRotationGroupList > galleryRotationGroup,galleryRotationName,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common galleryRotationName,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationName,Exhibition Information,Gallery rotation,Gallery rotation name,galleryRotationGroupList > galleryRotationGroup,galleryRotationName,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common galleryRotationStartDateGroup,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationStartDateGroup,Exhibition Information,Gallery rotation,Gallery rotation start date,galleryRotationGroupList > galleryRotationGroup,galleryRotationStartDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common galleryRotationStartDateGroup,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationStartDateGroup,Exhibition Information,Gallery rotation,Gallery rotation start date,galleryRotationGroupList > galleryRotationGroup,galleryRotationStartDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common galleryRotationEndDateGroup,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationEndDateGroup,Exhibition Information,Gallery rotation,Gallery rotation end date,galleryRotationGroupList > galleryRotationGroup,galleryRotationEndDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common galleryRotationEndDateGroup,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationEndDateGroup,Exhibition Information,Gallery rotation,Gallery rotation end date,galleryRotationGroupList > galleryRotationGroup,galleryRotationEndDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common galleryRotationNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationNote,Exhibition Information,Gallery rotation,Gallery rotation note,galleryRotationGroupList > galleryRotationGroup,galleryRotationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common galleryRotationNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.galleryRotationNote,Exhibition Information,Gallery rotation,Gallery rotation note,galleryRotationGroupList > galleryRotationGroup,galleryRotationNote,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionReference,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReference,Exhibition Information,Bibliographic reference,Bibliographic reference,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionReference,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReference,Exhibition Information,Bibliographic reference,Bibliographic reference,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionReferenceType,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceType,Exhibition Information,Bibliographic reference,Bibliographic reference type,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceType,string,n,n,y,vocabulary: exhibitionreferencetype,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionReferenceType,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceType,Exhibition Information,Bibliographic reference,Bibliographic reference type,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceType,string,n,n,y,vocabulary: exhibitionreferencetype,"", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionReferenceNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceNote,Exhibition Information,Bibliographic reference,Bibliographic reference note,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionReferenceNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionReferenceNote,Exhibition Information,Bibliographic reference,Bibliographic reference note,exhibitionReferenceGroupList > exhibitionReferenceGroup,exhibitionReferenceNote,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionSectionName,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionName,Exhibition Planning Information,Exhibition section,Exhibition section name,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionName,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionSectionName,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionName,Exhibition Planning Information,Exhibition section,Exhibition section name,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionName,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionSectionLocation,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionLocation,Exhibition Planning Information,Exhibition section,Exhibition section location,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionLocation,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionSectionLocation,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionLocation,Exhibition Planning Information,Exhibition section,Exhibition section location,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionLocation,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionSectionObjects,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionObjects,Exhibition Planning Information,Exhibition section,Exhibition section objects,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionObjects,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionSectionObjects,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionObjects,Exhibition Planning Information,Exhibition section,Exhibition section objects,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionObjects,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionSectionNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionNote,Exhibition Planning Information,Exhibition section,Exhibition section note,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionSectionNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionSectionNote,Exhibition Planning Information,Exhibition section,Exhibition section note,exhibitionSectionGroupList > exhibitionSectionGroup,exhibitionSectionNote,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionStatus,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatus,Exhibition Planning Information,Exhibition status,Exhibition status,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatus,string,n,n,y,vocabulary: exhibitionstatus,"", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionStatus,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatus,Exhibition Planning Information,Exhibition status,Exhibition status,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatus,string,n,n,y,vocabulary: exhibitionstatus,"", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionStatusDate,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusDate,Exhibition Planning Information,Exhibition status,Exhibition status date,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusDate,date,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionStatusDate,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusDate,Exhibition Planning Information,Exhibition status,Exhibition status date,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusDate,date,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionStatusNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusNote,Exhibition Planning Information,Exhibition status,Exhibition status note,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionStatusNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionStatusNote,Exhibition Planning Information,Exhibition status,Exhibition status note,exhibitionStatusGroupList > exhibitionStatusGroup,exhibitionStatusNote,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectNumber,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNumber,Exhibited Object Information,Object checklist,Object number,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectNumber,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNumber,Exhibited Object Information,Object checklist,Object number,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNumber,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectName,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectName,Exhibited Object Information,Object checklist,Object name,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectName,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectName,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectName,Exhibited Object Information,Object checklist,Object name,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectName,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectConsCheckDate,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsCheckDate,Exhibited Object Information,Object checklist,Object cons. check,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsCheckDate,date,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectConsCheckDate,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsCheckDate,Exhibited Object Information,Object checklist,Object cons. check,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsCheckDate,date,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectConsTreatment,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsTreatment,Exhibited Object Information,Object checklist,Object cons. treatment,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsTreatment,string,n,n,y,option list: exhibitionConsTreatmentStatuses,"Done, Needed, Not needed", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectConsTreatment,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectConsTreatment,Exhibited Object Information,Object checklist,Object cons. treatment,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectConsTreatment,string,n,n,y,option list: exhibitionConsTreatmentStatuses,"Done, Needed, Not needed", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectMount,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectMount,Exhibited Object Information,Object checklist,Object mount,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectMount,string,n,n,y,option list: exhibitionMountStatuses,"Done, Needed, Not needed", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectMount,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectMount,Exhibited Object Information,Object checklist,Object mount,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectMount,string,n,n,y,option list: exhibitionMountStatuses,"Done, Needed, Not needed", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectSection,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSection,Exhibited Object Information,Object checklist,Object section,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSection,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectSection,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSection,Exhibited Object Information,Object checklist,Object section,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSection,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectCase,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectCase,Exhibited Object Information,Object checklist,Object case,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectCase,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectCase,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectCase,Exhibited Object Information,Object checklist,Object case,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectCase,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectSeqNum,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSeqNum,Exhibited Object Information,Object checklist,Object seq. #,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSeqNum,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectSeqNum,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectSeqNum,Exhibited Object Information,Object checklist,Object seq. #,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectSeqNum,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectRotation,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectRotation,Exhibited Object Information,Object checklist,Object rotation,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectRotation,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectRotation,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectRotation,Exhibited Object Information,Object checklist,Object rotation,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectRotation,string,n,n,y,"","", +anthro_7-0-0 exhibition ns2:exhibitions_common exhibitionObjectNote,anthro_7-0-0,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNote,Exhibited Object Information,Object checklist,Object note,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNote,string,n,n,y,"","", +ohc_1-0-18_7-2 exhibition ns2:exhibitions_common exhibitionObjectNote,ohc_1-0-18_7-2,exhibition,ns2:exhibitions_common,ns2:exhibitions_common,exhibitions_common.exhibitionObjectNote,Exhibited Object Information,Object checklist,Object note,exhibitionObjectGroupList > exhibitionObjectGroup,exhibitionObjectNote,string,n,n,y,"","", +anthro_7-0-0 group ns2:groups_common title,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.title,Group Information,"",Title,"",title,string,y,n,n/a,"","", +ohc_1-0-18_7-2 group ns2:groups_common title,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.title,Group Information,"",Title,"",title,string,y,n,n/a,"","", +anthro_7-0-0 group ns2:groups_common responsibleDepartment,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.responsibleDepartment,Group Information,"",Responsible department,"",responsibleDepartment,string,n,n,n/a,option list: departments,"antiquities, architecture-design, decorative-arts, ethnography, herpetology, media-performance-art, paintings-sculpture, paleobotany, photographs, prints-drawings", +ohc_1-0-18_7-2 group ns2:groups_common responsibleDepartment,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.responsibleDepartment,Group Information,"",Responsible department,"",responsibleDepartment,string,n,n,n/a,option list: departments,"archaeology, archaeology-nagpra, collection-management, design, education, ethnographic, history, naamcc, natural-history, poindexter-village, registrar, sites", +anthro_7-0-0 group ns2:groups_common owner,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.owner,Group Information,"",Group owner,"",owner,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 group ns2:groups_common owner,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.owner,Group Information,"",Group owner,"",owner,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 group ns2:groups_common groupEarliestSingleDate,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.groupEarliestSingleDate,Group Information,"",Earliest/single date,"",groupEarliestSingleDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 group ns2:groups_common groupEarliestSingleDate,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.groupEarliestSingleDate,Group Information,"",Earliest/single date,"",groupEarliestSingleDate,date,n,n,n/a,"","", +anthro_7-0-0 group ns2:groups_common groupLatestDate,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.groupLatestDate,Group Information,"",Latest date,"",groupLatestDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 group ns2:groups_common groupLatestDate,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.groupLatestDate,Group Information,"",Latest date,"",groupLatestDate,date,n,n,n/a,"","", +anthro_7-0-0 group ns2:groups_common scopeNote,anthro_7-0-0,group,ns2:groups_common,ns2:groups_common,groups_common.scopeNote,Group Information,"",Scope note,"",scopeNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 group ns2:groups_common scopeNote,ohc_1-0-18_7-2,group,ns2:groups_common,ns2:groups_common,groups_common.scopeNote,Group Information,"",Scope note,"",scopeNote,string,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityReferenceNumber,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityReferenceNumber,Insurance and Indemnity Information,"",Reference number,"",insuranceIndemnityReferenceNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityReferenceNumber,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityReferenceNumber,Insurance and Indemnity Information,"",Reference number,"",insuranceIndemnityReferenceNumber,string,y,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityType,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityType,Insurance and Indemnity Information,"",Type,"",insuranceIndemnityType,string,n,n,n/a,vocabulary: insurancetype,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityType,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityType,Insurance and Indemnity Information,"",Type,"",insuranceIndemnityType,string,n,n,n/a,vocabulary: insurancetype,"", +anthro_7-0-0 insurance ns2:insurances_common insurerIndemnifier,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insurerIndemnifier,Insurance and Indemnity Information,"",Insurer/indemnifier,"",insurerIndemnifier,string,n,n,n/a,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insurerIndemnifier,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insurerIndemnifier,Insurance and Indemnity Information,"",Insurer/indemnifier,"",insurerIndemnifier,string,n,n,n/a,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityPolicyNumber,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityPolicyNumber,Insurance and Indemnity Information,"",Policy number,"",insuranceIndemnityPolicyNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityPolicyNumber,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityPolicyNumber,Insurance and Indemnity Information,"",Policy number,"",insuranceIndemnityPolicyNumber,string,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityCurrency,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityCurrency,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price currency,"",insuranceIndemnityCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityCurrency,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityCurrency,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price currency,"",insuranceIndemnityCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityValue,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityValue,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price value,"",insuranceIndemnityValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityValue,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityValue,Insurance and Indemnity Information,Insurance/indemnity price,Insurance/indemnity price value,"",insuranceIndemnityValue,float,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common minimumLiabilityCurrency,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityCurrency,Insurance and Indemnity Information,Minimum liability price,Minimum liability price currency,"",minimumLiabilityCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common minimumLiabilityCurrency,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityCurrency,Insurance and Indemnity Information,Minimum liability price,Minimum liability price currency,"",minimumLiabilityCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 insurance ns2:insurances_common minimumLiabilityValue,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityValue,Insurance and Indemnity Information,Minimum liability price,Minimum liability price value,"",minimumLiabilityValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common minimumLiabilityValue,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.minimumLiabilityValue,Insurance and Indemnity Information,Minimum liability price,Minimum liability price value,"",minimumLiabilityValue,float,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityAuthorizer,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizer,Insurance and Indemnity Information,Authorization,Authorizer,"",insuranceIndemnityAuthorizer,string,n,n,n/a,authority: person/local; authority: person/ulan,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityAuthorizer,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizer,Insurance and Indemnity Information,Authorization,Authorizer,"",insuranceIndemnityAuthorizer,string,n,n,n/a,authority: person/local; authority: person/ulan,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityAuthorizationDate,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizationDate,Insurance and Indemnity Information,Authorization,Authorization date,"",insuranceIndemnityAuthorizationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityAuthorizationDate,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityAuthorizationDate,Insurance and Indemnity Information,Authorization,Authorization date,"",insuranceIndemnityAuthorizationDate,date,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityStatus,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatus,Insurance and Indemnity Information,Status,Status type,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatus,string,n,n,y,vocabulary: insurancestatus,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityStatus,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatus,Insurance and Indemnity Information,Status,Status type,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatus,string,n,n,y,vocabulary: insurancestatus,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityStatusDate,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusDate,Insurance and Indemnity Information,Status,Status date,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusDate,date,n,n,y,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityStatusDate,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusDate,Insurance and Indemnity Information,Status,Status date,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusDate,date,n,n,y,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityStatusNote,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusNote,Insurance and Indemnity Information,Status,Status note,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusNote,string,n,n,y,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityStatusNote,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityStatusNote,Insurance and Indemnity Information,Status,Status note,insuranceIndemnityStatusGroupList > insuranceIndemnityStatusGroup,insuranceIndemnityStatusNote,string,n,n,y,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityNote,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityNote,Insurance and Indemnity Information,"",Note,"",insuranceIndemnityNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityNote,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityNote,Insurance and Indemnity Information,"",Note,"",insuranceIndemnityNote,string,n,n,n/a,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityQuoteProvider,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteProvider,Insurance and Indemnity Information,Quote,Quote provider,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteProvider,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityQuoteProvider,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteProvider,Insurance and Indemnity Information,Quote,Quote provider,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteProvider,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityQuoteCurrency,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteCurrency,Insurance and Indemnity Information,Quote,Quote currency,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityQuoteCurrency,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteCurrency,Insurance and Indemnity Information,Quote,Quote currency,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityQuoteValue,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteValue,Insurance and Indemnity Information,Quote,Quote value,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteValue,float,n,n,y,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityQuoteValue,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteValue,Insurance and Indemnity Information,Quote,Quote value,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteValue,float,n,n,y,"","", +anthro_7-0-0 insurance ns2:insurances_common insuranceIndemnityQuoteDate,anthro_7-0-0,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteDate,Insurance and Indemnity Information,Quote,Quote date,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteDate,date,n,n,y,"","", +ohc_1-0-18_7-2 insurance ns2:insurances_common insuranceIndemnityQuoteDate,ohc_1-0-18_7-2,insurance,ns2:insurances_common,ns2:insurances_common,insurances_common.insuranceIndemnityQuoteDate,Insurance and Indemnity Information,Quote,Quote date,quoteProviderGroupList > quoteProviderGroup,insuranceIndemnityQuoteDate,date,n,n,y,"","", +anthro_7-0-0 intake ns2:intakes_common entryNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNumber,Object Entry Information,"",Entry number,"",entryNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common entryNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNumber,Object Entry Information,"",Entry number,"",entryNumber,string,y,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common entryDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryDate,Object Entry Information,"",Entry date,"",entryDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common entryDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryDate,Object Entry Information,"",Entry date,"",entryDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common entryReason,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryReason,Object Entry Information,"",Entry reason,"",entryReason,string,n,n,n/a,option list: entryReasons,"commission, consideration, enquiry, loan", +ohc_1-0-18_7-2 intake ns2:intakes_common entryReason,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryReason,Object Entry Information,"",Entry reason,"",entryReason,string,n,n,n/a,option list: entryReasons,"loan, referral", +anthro_7-0-0 intake ns2:intakes_common entryMethod,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryMethod,Object Entry Information,"",Entry method,entryMethods,entryMethod,string,n,y,n,vocabulary: entrymethod,"", +ohc_1-0-18_7-2 intake ns2:intakes_common entryMethod,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryMethod,Object Entry Information,"",Entry method,entryMethods,entryMethod,string,n,y,n,vocabulary: entrymethod,"", +anthro_7-0-0 intake ns2:intakes_common returnDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.returnDate,Object Entry Information,"",Return date,"",returnDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common returnDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.returnDate,Object Entry Information,"",Return date,"",returnDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common currentOwner,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentOwner,Object Entry Information,"",Current owner,currentOwners,currentOwner,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common currentOwner,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentOwner,Object Entry Information,"",Current owner,currentOwners,currentOwner,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common depositor,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositor,Object Entry Information,Depositor,Depositor name,depositorGroupList > depositorGroup,depositor,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common depositor,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositor,Object Entry Information,Depositor,Depositor name,depositorGroupList > depositorGroup,depositor,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common depositorsRequirements,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositorsRequirements,Object Entry Information,Depositor,Depositor requirements,depositorGroupList > depositorGroup,depositorsRequirements,string,n,n,y,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common depositorsRequirements,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.depositorsRequirements,Object Entry Information,Depositor,Depositor requirements,depositorGroupList > depositorGroup,depositorsRequirements,string,n,n,y,"","", +anthro_7-0-0 intake ns2:intakes_common approvalGroup,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalGroup,Object Entry Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +ohc_1-0-18_7-2 intake ns2:intakes_common approvalGroup,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalGroup,Object Entry Information,Approval,Approval,approvalGroupList > approvalGroup,approvalGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +anthro_7-0-0 intake ns2:intakes_common approvalIndividual,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalIndividual,Object Entry Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common approvalIndividual,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalIndividual,Object Entry Information,Approval,Approval individual,approvalGroupList > approvalGroup,approvalIndividual,string,n,n,y,authority: person/local,"", +anthro_7-0-0 intake ns2:intakes_common approvalStatus,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalStatus,Object Entry Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"", +ohc_1-0-18_7-2 intake ns2:intakes_common approvalStatus,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalStatus,Object Entry Information,Approval,Approval status,approvalGroupList > approvalGroup,approvalStatus,string,n,n,y,vocabulary: deaccessionapprovalstatus,"", +anthro_7-0-0 intake ns2:intakes_common approvalDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalDate,Object Entry Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common approvalDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalDate,Object Entry Information,Approval,Approval status date,approvalGroupList > approvalGroup,approvalDate,date,n,n,y,"","", +anthro_7-0-0 intake ns2:intakes_common approvalNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalNote,Object Entry Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common approvalNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.approvalNote,Object Entry Information,Approval,Approval note,approvalGroupList > approvalGroup,approvalNote,string,n,n,y,"","", +anthro_7-0-0 intake ns2:intakes_common entryNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNote,Object Entry Information,"",Entry note,"",entryNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common entryNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.entryNote,Object Entry Information,"",Entry note,"",entryNote,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common packingNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.packingNote,Object Entry Information,"",Packing note,"",packingNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common packingNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.packingNote,Object Entry Information,"",Rationale,"",packingNote,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionDate,Object Collection Information,"",Field collection date,"",fieldCollectionDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionDate,Object Collection Information,"",Field collection date,"",fieldCollectionDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionMethod,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionMethod,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionMethod,Object Collection Information,"",Field collection method,fieldCollectionMethods,fieldCollectionMethod,string,n,y,n,vocabulary: collectionmethod,"", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNote,Object Collection Information,"",Field collection note,"",fieldCollectionNote,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionNumber,Object Collection Information,"",Field collection number,"",fieldCollectionNumber,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionPlace,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionPlace,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionPlace,Object Collection Information,"",Field collection place,"",fieldCollectionPlace,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionSource,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local; authority: concept/ethculture,"", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionSource,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionSource,Object Collection Information,"",Field collection source,fieldCollectionSources,fieldCollectionSource,string,n,y,n,authority: person/local; authority: concept/ethculture,"", +anthro_7-0-0 intake ns2:intakes_common fieldCollector,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollector,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollector,Object Collection Information,"",Field collector,fieldCollectors,fieldCollector,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common fieldCollectionEventName,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common fieldCollectionEventName,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.fieldCollectionEventName,Object Collection Information,"",Field collection event name,fieldCollectionEventNames,fieldCollectionEventName,string,n,y,n,"","", +anthro_7-0-0 intake ns2:intakes_common valuer,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuer,Valuation Information,"",Valuer,"",valuer,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common valuer,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuer,Valuation Information,"",Valuer,"",valuer,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common valuationReferenceNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuationReferenceNumber,Valuation Information,"",Valuation reference number,"",valuationReferenceNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common valuationReferenceNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.valuationReferenceNumber,Valuation Information,"",Valuation reference number,"",valuationReferenceNumber,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common insurer,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurer,Insurance Information,"",Insurer,insurers,insurer,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common insurer,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurer,Insurance Information,"",Insurer,insurers,insurer,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common insurancePolicyNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurancePolicyNumber,Insurance Information,"",Insurance policy number,"",insurancePolicyNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common insurancePolicyNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insurancePolicyNumber,Insurance Information,"",Insurance policy number,"",insurancePolicyNumber,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common insuranceRenewalDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceRenewalDate,Insurance Information,"",Insurance renewal date,"",insuranceRenewalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common insuranceRenewalDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceRenewalDate,Insurance Information,"",Insurance renewal date,"",insuranceRenewalDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common insuranceReferenceNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceReferenceNumber,Insurance Information,"",Insurance reference number,"",insuranceReferenceNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common insuranceReferenceNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceReferenceNumber,Insurance Information,"",Insurance reference number,"",insuranceReferenceNumber,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common insuranceNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceNote,Insurance Information,"",Insurance note,"",insuranceNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common insuranceNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.insuranceNote,Insurance Information,"",Insurance note,"",insuranceNote,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common currentLocation,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocation,Location Information,Current location,Current location,currentLocationGroupList > currentLocationGroup,currentLocation,string,n,n,y,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common currentLocation,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocation,Location Information,Current location,Current location,currentLocationGroupList > currentLocationGroup,currentLocation,string,n,n,y,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"", +anthro_7-0-0 intake ns2:intakes_common currentLocationFitness,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationFitness,Location Information,Current location,Current location fitness,currentLocationGroupList > currentLocationGroup,currentLocationFitness,string,n,n,y,vocabulary: conditionfitness,"", +ohc_1-0-18_7-2 intake ns2:intakes_common currentLocationFitness,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationFitness,Location Information,Current location,Current location fitness,currentLocationGroupList > currentLocationGroup,currentLocationFitness,string,n,n,y,vocabulary: conditionfitness,"", +anthro_7-0-0 intake ns2:intakes_common currentLocationNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationNote,Location Information,Current location,Current location note,currentLocationGroupList > currentLocationGroup,currentLocationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common currentLocationNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.currentLocationNote,Location Information,Current location,Current location note,currentLocationGroupList > currentLocationGroup,currentLocationNote,string,n,n,y,"","", +anthro_7-0-0 intake ns2:intakes_common locationDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.locationDate,Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common locationDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.locationDate,Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common normalLocation,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.normalLocation,Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common normalLocation,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.normalLocation,Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local; authority: place/local,"", +anthro_7-0-0 intake ns2:intakes_common conditionCheckMethod,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckMethod,Condition Check Information,"",Condition check method,conditionCheckMethods,conditionCheckMethod,string,n,y,n,vocabulary: conditioncheckmethod,"", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckMethod,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckMethod,Condition Check Information,"",Condition check method,conditionCheckMethods,conditionCheckMethod,string,n,y,n,vocabulary: conditioncheckmethod,"", +anthro_7-0-0 intake ns2:intakes_common conditionCheckReason,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReason,Condition Check Information,"",Condition check reason,conditionCheckReasons,conditionCheckReason,string,n,y,n,vocabulary: conditioncheckreason,"", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckReason,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReason,Condition Check Information,"",Condition check reason,conditionCheckReasons,conditionCheckReason,string,n,y,n,vocabulary: conditioncheckreason,"", +anthro_7-0-0 intake ns2:intakes_common conditionCheckerOrAssessor,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckerOrAssessor,Condition Check Information,"",Condition check assessor,conditionCheckersOrAssessors,conditionCheckerOrAssessor,string,n,y,n,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckerOrAssessor,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckerOrAssessor,Condition Check Information,"",Condition check assessor,conditionCheckersOrAssessors,conditionCheckerOrAssessor,string,n,y,n,authority: person/local; authority: organization/local,"", +anthro_7-0-0 intake ns2:intakes_common conditionCheckDate,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckDate,Condition Check Information,"",Condition check date,"",conditionCheckDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckDate,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckDate,Condition Check Information,"",Condition check date,"",conditionCheckDate,date,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common conditionCheckReferenceNumber,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReferenceNumber,Condition Check Information,"",Condition check reference number,"",conditionCheckReferenceNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckReferenceNumber,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckReferenceNumber,Condition Check Information,"",Condition check reference number,"",conditionCheckReferenceNumber,string,n,n,n/a,"","", +anthro_7-0-0 intake ns2:intakes_common conditionCheckNote,anthro_7-0-0,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckNote,Condition Check Information,"",Condition check note,"",conditionCheckNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 intake ns2:intakes_common conditionCheckNote,ohc_1-0-18_7-2,intake,ns2:intakes_common,ns2:intakes_common,intakes_common.conditionCheckNote,Condition Check Information,"",Condition check note,"",conditionCheckNote,string,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanInNumber,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNumber,Loan In Information,"",Loan in number,"",loanInNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanInNumber,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNumber,Loan In Information,"",Loan in number,"",loanInNumber,string,y,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanPurpose,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanPurpose,Loan In Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanPurpose,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanPurpose,Loan In Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation", +anthro_7-0-0 loanin ns2:loansin_common loanGroup,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanGroup,Loan In Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanGroup,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanGroup,Loan In Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +anthro_7-0-0 loanin ns2:loansin_common loanIndividual,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanIndividual,Loan In Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanIndividual,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanIndividual,Loan In Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"", +anthro_7-0-0 loanin ns2:loansin_common loanStatus,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatus,Loan In Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanStatus,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatus,Loan In Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"", +anthro_7-0-0 loanin ns2:loansin_common loanStatusDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusDate,Loan In Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanStatusDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusDate,Loan In Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","", +anthro_7-0-0 loanin ns2:loansin_common loanStatusNote,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusNote,Loan In Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanStatusNote,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanStatusNote,Loan In Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","", +anthro_7-0-0 loanin ns2:loansin_common lender,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lender,Loan In Information,Lender,Lender name,lenderGroupList > lenderGroup,lender,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common lender,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lender,Loan In Information,Lender,Lender name,lenderGroupList > lenderGroup,lender,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 loanin ns2:loansin_common lendersContact,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersContact,Loan In Information,Lender,Lender contact,lenderGroupList > lenderGroup,lendersContact,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common lendersContact,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersContact,Loan In Information,Lender,Lender contact,lenderGroupList > lenderGroup,lendersContact,string,n,n,y,authority: person/local,"", +anthro_7-0-0 loanin ns2:loansin_common lendersAuthorizer,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizer,Loan In Information,Lender,Lender authorizer,lenderGroupList > lenderGroup,lendersAuthorizer,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common lendersAuthorizer,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizer,Loan In Information,Lender,Lender authorizer,lenderGroupList > lenderGroup,lendersAuthorizer,string,n,n,y,authority: person/local,"", +anthro_7-0-0 loanin ns2:loansin_common lendersAuthorizationDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizationDate,Loan In Information,Lender,Lender authorization date,lenderGroupList > lenderGroup,lendersAuthorizationDate,date,n,n,y,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common lendersAuthorizationDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.lendersAuthorizationDate,Loan In Information,Lender,Lender authorization date,lenderGroupList > lenderGroup,lendersAuthorizationDate,date,n,n,y,"","", +anthro_7-0-0 loanin ns2:loansin_common borrowersContact,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersContact,Loan In Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common borrowersContact,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersContact,Loan In Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanin ns2:loansin_common borrowersAuthorizer,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizer,Loan In Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanin ns2:loansin_common borrowersAuthorizer,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizer,Loan In Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanin ns2:loansin_common borrowersAuthorizationDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizationDate,Loan In Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common borrowersAuthorizationDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.borrowersAuthorizationDate,Loan In Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanInConditions,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInConditions,Loan In Information,"",Conditions of loan,"",loanInConditions,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanInConditions,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInConditions,Loan In Information,"",Conditions of loan,"",loanInConditions,string,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanInNote,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNote,Loan In Information,"",Note,"",loanInNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanInNote,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInNote,Loan In Information,"",Note,"",loanInNote,string,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanInDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInDate,Loan In Information,"",Loan in date,"",loanInDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanInDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanInDate,Loan In Information,"",Loan in date,"",loanInDate,date,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanReturnDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanReturnDate,Loan In Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanReturnDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanReturnDate,Loan In Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common loanRenewalApplicationDate,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanRenewalApplicationDate,Loan In Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common loanRenewalApplicationDate,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.loanRenewalApplicationDate,Loan In Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","", +anthro_7-0-0 loanin ns2:loansin_common creditLine,anthro_7-0-0,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.creditLine,Loan In Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanin ns2:loansin_common creditLine,ohc_1-0-18_7-2,loanin,ns2:loansin_common,ns2:loansin_common,loansin_common.creditLine,Loan In Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanOutNumber,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNumber,Loan Out Information,"",Loan out number,"",loanOutNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanOutNumber,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNumber,Loan Out Information,"",Loan out number,"",loanOutNumber,string,y,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanPurpose,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanPurpose,Loan Out Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanPurpose,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanPurpose,Loan Out Information,"",Loan purpose,"",loanPurpose,string,n,n,n/a,option list: loanPurposes,"analysis, conservationotherrequestedservices, exhibition, longtermcollectionsmanagementandstorage, photography, research, scientificorexhibitpreparation", +anthro_7-0-0 loanout ns2:loansout_common lendersAuthorizer,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizer,Loan Out Information,Lender,Lender authorizer,"",lendersAuthorizer,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common lendersAuthorizer,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizer,Loan Out Information,Lender,Lender authorizer,"",lendersAuthorizer,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanout ns2:loansout_common lendersContact,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersContact,Loan Out Information,Lender,Lender contact,"",lendersContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common lendersContact,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersContact,Loan Out Information,Lender,Lender contact,"",lendersContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanout ns2:loansout_common lendersAuthorizationDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizationDate,Loan Out Information,Lender,Lender authorization date,"",lendersAuthorizationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common lendersAuthorizationDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.lendersAuthorizationDate,Loan Out Information,Lender,Lender authorization date,"",lendersAuthorizationDate,date,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common borrower,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrower,Loan Out Information,Borrower,Borrower name,"",borrower,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common borrower,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrower,Loan Out Information,Borrower,Borrower name,"",borrower,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 loanout ns2:loansout_common borrowersContact,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersContact,Loan Out Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common borrowersContact,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersContact,Loan Out Information,Borrower,Borrower contact,"",borrowersContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanout ns2:loansout_common borrowersAuthorizer,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizer,Loan Out Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common borrowersAuthorizer,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizer,Loan Out Information,Borrower,Borrower authorizer,"",borrowersAuthorizer,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 loanout ns2:loansout_common borrowersAuthorizationDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizationDate,Loan Out Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common borrowersAuthorizationDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.borrowersAuthorizationDate,Loan Out Information,Borrower,Borrower authorization date,"",borrowersAuthorizationDate,date,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common specialConditionsOfLoan,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.specialConditionsOfLoan,Loan Out Information,"",Conditions of loan,"",specialConditionsOfLoan,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common specialConditionsOfLoan,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.specialConditionsOfLoan,Loan Out Information,"",Conditions of loan,"",specialConditionsOfLoan,string,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanOutNote,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNote,Loan Out Information,"",Note,"",loanOutNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanOutNote,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutNote,Loan Out Information,"",Note,"",loanOutNote,string,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanGroup,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanGroup,Loan Out Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanGroup,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanGroup,Loan Out Information,Loan status,Loan status group,loanStatusGroupList > loanStatusGroup,loanGroup,string,n,n,y,vocabulary: deaccessionapprovalgroup,"", +anthro_7-0-0 loanout ns2:loansout_common loanIndividual,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanIndividual,Loan Out Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanIndividual,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanIndividual,Loan Out Information,Loan status,Loan status individual,loanStatusGroupList > loanStatusGroup,loanIndividual,string,n,n,y,authority: person/local,"", +anthro_7-0-0 loanout ns2:loansout_common loanStatus,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatus,Loan Out Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanStatus,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatus,Loan Out Information,Loan status,Loan status,loanStatusGroupList > loanStatusGroup,loanStatus,string,n,n,y,vocabulary: loanoutstatus,"", +anthro_7-0-0 loanout ns2:loansout_common loanStatusDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusDate,Loan Out Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanStatusDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusDate,Loan Out Information,Loan status,Loan status date,loanStatusGroupList > loanStatusGroup,loanStatusDate,date,n,n,y,"","", +anthro_7-0-0 loanout ns2:loansout_common loanStatusNote,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusNote,Loan Out Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanStatusNote,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanStatusNote,Loan Out Information,Loan status,Loan status note,loanStatusGroupList > loanStatusGroup,loanStatusNote,string,n,n,y,"","", +anthro_7-0-0 loanout ns2:loansout_common loanOutDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutDate,Loan Out Information,"",Loan out date,"",loanOutDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanOutDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanOutDate,Loan Out Information,"",Loan out date,"",loanOutDate,date,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanReturnDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanReturnDate,Loan Out Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanReturnDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanReturnDate,Loan Out Information,"",Loan return date,"",loanReturnDate,date,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common loanRenewalApplicationDate,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanRenewalApplicationDate,Loan Out Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common loanRenewalApplicationDate,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.loanRenewalApplicationDate,Loan Out Information,"",Loan renewal application date,"",loanRenewalApplicationDate,date,n,n,n/a,"","", +anthro_7-0-0 loanout ns2:loansout_common creditLine,anthro_7-0-0,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.creditLine,Loan Out Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +ohc_1-0-18_7-2 loanout ns2:loansout_common creditLine,ohc_1-0-18_7-2,loanout,ns2:loansout_common,ns2:loansout_common,loansout_common.creditLine,Loan Out Information,"",Credit line,"",creditLine,string,n,n,n/a,"","", +anthro_7-0-0 location ns2:locations_common termDisplayName,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termDisplayName,Storage Location Information,Term,Term display name,locTermGroupList > locTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termDisplayName,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termDisplayName,Storage Location Information,Term,Term display name,locTermGroupList > locTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 location ns2:locations_common termName,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termName,Storage Location Information,Term,Term name,locTermGroupList > locTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termName,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termName,Storage Location Information,Term,Term name,locTermGroupList > locTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common termQualifier,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termQualifier,Storage Location Information,Term,Term qualifier,locTermGroupList > locTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termQualifier,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termQualifier,Storage Location Information,Term,Term qualifier,locTermGroupList > locTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common termStatus,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termStatus,Storage Location Information,Term,Term status,locTermGroupList > locTermGroup,termStatus,string,n,n,y,option list: locationTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 location ns2:locations_common termStatus,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termStatus,Storage Location Information,Term,Term status,locTermGroupList > locTermGroup,termStatus,string,n,n,y,option list: locationTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 location ns2:locations_common termType,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termType,Storage Location Information,Term,Term type,locTermGroupList > locTermGroup,termType,string,n,n,y,option list: locationTermTypes,"alternate descriptor, descriptor, used for term", +ohc_1-0-18_7-2 location ns2:locations_common termType,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termType,Storage Location Information,Term,Term type,locTermGroupList > locTermGroup,termType,string,n,n,y,option list: locationTermTypes,"alternate descriptor, descriptor, used for term", +anthro_7-0-0 location ns2:locations_common termFlag,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termFlag,Storage Location Information,Term,Term flag,locTermGroupList > locTermGroup,termFlag,string,n,n,y,vocabulary: locationtermflag,"", +ohc_1-0-18_7-2 location ns2:locations_common termFlag,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termFlag,Storage Location Information,Term,Term flag,locTermGroupList > locTermGroup,termFlag,string,n,n,y,vocabulary: locationtermflag,"", +anthro_7-0-0 location ns2:locations_common termLanguage,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termLanguage,Storage Location Information,Term,Term language,locTermGroupList > locTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 location ns2:locations_common termLanguage,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termLanguage,Storage Location Information,Term,Term language,locTermGroupList > locTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 location ns2:locations_common termPrefForLang,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termPrefForLang,Storage Location Information,Term,Term preferred for lang,locTermGroupList > locTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termPrefForLang,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termPrefForLang,Storage Location Information,Term,Term preferred for lang,locTermGroupList > locTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common termSource,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSource,Storage Location Information,Term > Source,Term source name,locTermGroupList > locTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 location ns2:locations_common termSource,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termSource,Storage Location Information,Term > Source,Term source name,locTermGroupList > locTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 location ns2:locations_common termSourceDetail,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceDetail,Storage Location Information,Term > Source,Term source detail,locTermGroupList > locTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termSourceDetail,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceDetail,Storage Location Information,Term > Source,Term source detail,locTermGroupList > locTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common termSourceID,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceID,Storage Location Information,Term > Source,Term source ID,locTermGroupList > locTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termSourceID,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceID,Storage Location Information,Term > Source,Term source ID,locTermGroupList > locTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common termSourceNote,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceNote,Storage Location Information,Term > Source,Term source note,locTermGroupList > locTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common termSourceNote,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.termSourceNote,Storage Location Information,Term > Source,Term source note,locTermGroupList > locTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common locationType,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.locationType,Storage Location Information,"",Storage location type,"",locationType,string,n,n,n/a,vocabulary: locationtype,"", +ohc_1-0-18_7-2 location ns2:locations_common locationType,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.locationType,Storage Location Information,"",Storage location type,"",locationType,string,n,n,n/a,vocabulary: locationtype,"", +anthro_7-0-0 location ns2:locations_common securityNote,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.securityNote,Storage Location Information,"",Security note,"",securityNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 location ns2:locations_common securityNote,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.securityNote,Storage Location Information,"",Security note,"",securityNote,string,n,n,n/a,"","", +anthro_7-0-0 location ns2:locations_common address,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.address,Storage Location Information,"",Address,"",address,string,n,n,n/a,"","", +ohc_1-0-18_7-2 location ns2:locations_common address,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.address,Storage Location Information,"",Address,"",address,string,n,n,n/a,"","", +anthro_7-0-0 location ns2:locations_common accessNote,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.accessNote,Storage Location Information,"",Access note,"",accessNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 location ns2:locations_common accessNote,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.accessNote,Storage Location Information,"",Access note,"",accessNote,string,n,n,n/a,"","", +anthro_7-0-0 location ns2:locations_common conditionNote,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNote,Storage Location Information,Condition note,Condition note,conditionGroupList > conditionGroup,conditionNote,string,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common conditionNote,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNote,Storage Location Information,Condition note,Condition note,conditionGroupList > conditionGroup,conditionNote,string,n,n,y,"","", +anthro_7-0-0 location ns2:locations_common conditionNoteDate,anthro_7-0-0,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNoteDate,Storage Location Information,Condition note,Condition note date,conditionGroupList > conditionGroup,conditionNoteDate,date,n,n,y,"","", +ohc_1-0-18_7-2 location ns2:locations_common conditionNoteDate,ohc_1-0-18_7-2,location,ns2:locations_common,ns2:locations_common,locations_common.conditionNoteDate,Storage Location Information,Condition note,Condition note date,conditionGroupList > conditionGroup,conditionNoteDate,date,n,n,y,"","", +anthro_7-0-0 media ns2:media_common identificationNumber,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.identificationNumber,Media Handling Information,"",Identification number,"",identificationNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common identificationNumber,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.identificationNumber,Media Handling Information,"",Identification number,"",identificationNumber,string,y,n,n/a,"","", +anthro_7-0-0 media ns2:media_common title,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.title,Media Handling Information,"",Title,"",title,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common title,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.title,Media Handling Information,"",Title,"",title,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common publishTo,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.publishTo,Media Handling Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +ohc_1-0-18_7-2 media ns2:media_common publishTo,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.publishTo,Media Handling Information,"",Publish to,publishToList,publishTo,string,n,y,n,vocabulary: publishto,"", +anthro_7-0-0 media ns2:blobs_common name,anthro_7-0-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.name,Media Handling Information,File Information,Name,"",name,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:blobs_common name,ohc_1-0-18_7-2,media,ns2:blobs_common,ns2:blobs_common,blobs_common.name,Media Handling Information,File Information,Name,"",name,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:blobs_common mimeType,anthro_7-0-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.mimeType,Media Handling Information,File Information,Type,"",mimeType,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:blobs_common mimeType,ohc_1-0-18_7-2,media,ns2:blobs_common,ns2:blobs_common,blobs_common.mimeType,Media Handling Information,File Information,Type,"",mimeType,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:blobs_common length,anthro_7-0-0,media,ns2:blobs_common,ns2:blobs_common,blobs_common.length,Media Handling Information,File Information,Size,"",length,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:blobs_common length,ohc_1-0-18_7-2,media,ns2:blobs_common,ns2:blobs_common,blobs_common.length,Media Handling Information,File Information,Size,"",length,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common externalUrl,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.externalUrl,Media Handling Information,"",External URL,"",externalUrl,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common externalUrl,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.externalUrl,Media Handling Information,"",External URL,"",externalUrl,string,n,n,n/a,"","", +anthro_7-0-0 media ext.dimension measuredPart,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredPart,Media Handling Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed", +ohc_1-0-18_7-2 media ext.dimension measuredPart,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.measuredPart,Media Handling Information,Dimensions,Measured part,measuredPartGroupList > measuredPartGroup,measuredPart,string,n,n,y,option list: measuredParts,"base, frame, framed, image-size, mount, paper-size, plate-size, unframed", +anthro_7-0-0 media ext.dimension dimensionSummary,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.dimensionSummary,Media Handling Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","", +ohc_1-0-18_7-2 media ext.dimension dimensionSummary,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.dimensionSummary,Media Handling Information,Dimensions,Dimension summary,measuredPartGroupList > measuredPartGroup,dimensionSummary,string,n,n,y,"","", +anthro_7-0-0 media ext.dimension dimension,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.dimension,Media Handling Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, intended duration, length, running-time, screen resolution, target, volume, weight, width", +ohc_1-0-18_7-2 media ext.dimension dimension,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.dimension,Media Handling Information,Dimensions > Measurement,Measurement dimension,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,dimension,string,n,n,y,option list: dimensions,"area, base, circumference, count, depth, diameter, height, length, running-time, target, thickness, volume, weight, width", +anthro_7-0-0 media ext.dimension measuredBy,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredBy,Media Handling Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 media ext.dimension measuredBy,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.measuredBy,Media Handling Information,Dimensions > Measurement,Measured by,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measuredBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 media ext.dimension measurementMethod,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.measurementMethod,Media Handling Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station", +ohc_1-0-18_7-2 media ext.dimension measurementMethod,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.measurementMethod,Media Handling Information,Dimensions > Measurement,Measurement method,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementMethod,string,n,n,y,option list: measurementMethods,"balance_beam_scale, electronic_distance_measurement, goniometer, hydraulic_or_pneumatic_scale, measuring_tape_cloth, measuring_tape_metal, microscopy_reticule, odometer, optical_range_finder, osteometric_board, pacing_pedometer, protractor, ruler, sliding_calipers, spreading_calipers, spring_scale, stadia_transit, standard_mesh_screen, taping_chaining, theodolite_total_station", +anthro_7-0-0 media ext.dimension value,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.value,Media Handling Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","", +ohc_1-0-18_7-2 media ext.dimension value,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.value,Media Handling Information,Dimensions > Measurement,Measurement value,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,value,float,n,n,y,"","", +anthro_7-0-0 media ext.dimension measurementUnit,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.measurementUnit,Media Handling Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"carats, centimeters, cubic-centimeters, dpi, feet, hours, inches, kilograms, liters, meters, millimeters, milliseconds, minutes, ounces, pixels, pounds, ppi, seconds, square-feet, stories, tons", +ohc_1-0-18_7-2 media ext.dimension measurementUnit,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.measurementUnit,Media Handling Information,Dimensions > Measurement,Measurement unit,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,measurementUnit,string,n,n,y,option list: measurementUnits,"acres, carats, centimeters, cubic-centimeters, feet, grams, inches, kilograms, liters, meters, millimeters, minutes, pixels, pounds, square-feet, stories", +anthro_7-0-0 media ext.dimension valueQualifier,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.valueQualifier,Media Handling Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 media ext.dimension valueQualifier,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.valueQualifier,Media Handling Information,Dimensions > Measurement,Measurement qualifier,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueQualifier,string,n,n,y,"","", +anthro_7-0-0 media ext.dimension valueDate,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.valueDate,Media Handling Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","", +ohc_1-0-18_7-2 media ext.dimension valueDate,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.valueDate,Media Handling Information,Dimensions > Measurement,Measurement date,measuredPartGroupList > measuredPartGroup > dimensionSubGroupList > dimensionSubGroup,valueDate,date,n,n,y,"","", +anthro_7-0-0 media ext.dimension measuredPartNote,anthro_7-0-0,media,ns2:media_common,ext.dimension,ext.dimension.measuredPartNote,Media Handling Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","", +ohc_1-0-18_7-2 media ext.dimension measuredPartNote,ohc_1-0-18_7-2,media,ns2:media_common,ext.dimension,ext.dimension.measuredPartNote,Media Handling Information,Dimensions,Dimension note,measuredPartGroupList > measuredPartGroup,measuredPartNote,string,n,n,y,"","", +anthro_7-0-0 media ns2:media_common checksumValue,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.checksumValue,Media Handling Information,Checksum,Checksum value,checksumGroupList > checksumGroup,checksumValue,string,n,n,y,"","", +ohc_1-0-18_7-2 media ns2:media_common checksumValue,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.checksumValue,Media Handling Information,Checksum,Checksum value,checksumGroupList > checksumGroup,checksumValue,string,n,n,y,"","", +anthro_7-0-0 media ns2:media_common checksumType,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.checksumType,Media Handling Information,Checksum,Checksum type,checksumGroupList > checksumGroup,checksumType,string,n,n,y,vocabulary: checksumtypes,"", +ohc_1-0-18_7-2 media ns2:media_common checksumType,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.checksumType,Media Handling Information,Checksum,Checksum type,checksumGroupList > checksumGroup,checksumType,string,n,n,y,vocabulary: checksumtypes,"", +anthro_7-0-0 media ns2:media_common checksumDate,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.checksumDate,Media Handling Information,Checksum,Checksum date,checksumGroupList > checksumGroup,checksumDate,date,n,n,y,"","", +ohc_1-0-18_7-2 media ns2:media_common checksumDate,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.checksumDate,Media Handling Information,Checksum,Checksum date,checksumGroupList > checksumGroup,checksumDate,date,n,n,y,"","", +anthro_7-0-0 media ns2:media_common contributor,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.contributor,Media Handling Information,"",Contributor,"",contributor,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 media ns2:media_common contributor,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.contributor,Media Handling Information,"",Contributor,"",contributor,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 media ns2:media_common creator,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.creator,Media Handling Information,"",Creator,"",creator,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 media ns2:media_common creator,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.creator,Media Handling Information,"",Creator,"",creator,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 media ns2:media_common language,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.language,Media Handling Information,"",Language,languageList,language,string,n,y,n,vocabulary: languages,"", +ohc_1-0-18_7-2 media ns2:media_common language,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.language,Media Handling Information,"",Language,languageList,language,string,n,y,n,vocabulary: languages,"", +anthro_7-0-0 media ns2:media_common publisher,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.publisher,Media Handling Information,"",Publisher,"",publisher,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 media ns2:media_common publisher,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.publisher,Media Handling Information,"",Publisher,"",publisher,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 media ns2:media_common relation,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.relation,Media Handling Information,"",Relation,relationList,relation,string,n,y,n,"","", +ohc_1-0-18_7-2 media ns2:media_common relation,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.relation,Media Handling Information,"",Relation,relationList,relation,string,n,y,n,"","", +anthro_7-0-0 media ns2:media_common copyrightStatement,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.copyrightStatement,Media Handling Information,"",Copyright statement,"",copyrightStatement,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common copyrightStatement,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.copyrightStatement,Media Handling Information,"",Copyright statement,"",copyrightStatement,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common type,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.type,Media Handling Information,"",Type,typeList,type,string,n,y,n,option list: mediaTypes,"dataset, document, moving_image, sound, still_image", +ohc_1-0-18_7-2 media ns2:media_common type,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.type,Media Handling Information,"",Type,typeList,type,string,n,y,n,option list: mediaTypes,"dataset, document, moving_image, sound, still_image", +anthro_7-0-0 media ns2:media_common coverage,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.coverage,Media Handling Information,"",Coverage,"",coverage,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common coverage,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.coverage,Media Handling Information,"",Coverage,"",coverage,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common dateGroup,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.dateGroup,Media Handling Information,"",Date,dateGroupList,dateGroup,structured date group,n,y,n,"","", +ohc_1-0-18_7-2 media ns2:media_common dateGroup,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.dateGroup,Media Handling Information,"",Date,dateGroupList,dateGroup,structured date group,n,y,n,"","", +anthro_7-0-0 media ns2:media_common source,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.source,Media Handling Information,"",Source,"",source,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common source,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.source,Media Handling Information,"",Source,"",source,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common subject,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.subject,Media Handling Information,"",Subject,subjectList,subject,string,n,y,n,"","", +ohc_1-0-18_7-2 media ns2:media_common subject,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.subject,Media Handling Information,"",Subject,subjectList,subject,string,n,y,n,"","", +anthro_7-0-0 media ns2:media_common rightsHolder,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.rightsHolder,Media Handling Information,"",Rights holder,"",rightsHolder,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 media ns2:media_common rightsHolder,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.rightsHolder,Media Handling Information,"",Rights holder,"",rightsHolder,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 media ns2:media_common description,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.description,Media Handling Information,"",Description,"",description,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common description,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.description,Media Handling Information,"",Description,"",description,string,n,n,n/a,"","", +anthro_7-0-0 media ns2:media_common altText,anthro_7-0-0,media,ns2:media_common,ns2:media_common,media_common.altText,Media Handling Information,"",Alt text,"",altText,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media ns2:media_common altText,ohc_1-0-18_7-2,media,ns2:media_common,ns2:media_common,media_common.altText,Media Handling Information,"",Alt text,"",altText,string,n,n,n/a,"","", +anthro_7-0-0 media not-mapped mediaFileURI,anthro_7-0-0,media,not-mapped,not-mapped,not-mapped.mediaFileURI,,,,"",mediaFileURI,string,n,n,n/a,"","", +ohc_1-0-18_7-2 media not-mapped mediaFileURI,ohc_1-0-18_7-2,media,not-mapped,not-mapped,not-mapped.mediaFileURI,,,,"",mediaFileURI,string,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common movementReferenceNumber,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementReferenceNumber,Object Location Information,"",Reference number,"",movementReferenceNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common movementReferenceNumber,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.movementReferenceNumber,Object Location Information,"",Reference number,"",movementReferenceNumber,string,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common normalLocation,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.normalLocation,Object Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +ohc_1-0-18_7-2 movement ns2:movements_common normalLocation,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.normalLocation,Object Location Information,"",Normal location,"",normalLocation,string,n,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +anthro_7-0-0 movement ns2:movements_common currentLocation,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocation,Object Location Information,Current location,Current location,"",currentLocation,string,y,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +ohc_1-0-18_7-2 movement ns2:movements_common currentLocation,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocation,Object Location Information,Current location,Current location,"",currentLocation,string,y,n,n/a,authority: location/local; authority: location/offsite; authority: organization/local,"", +anthro_7-0-0 movement ns2:movements_common currentLocationFitness,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationFitness,Object Location Information,Current location,Current location fitness,"",currentLocationFitness,string,n,n,n/a,option list: locationFitnesses,"dangerous, suitable, temporary, unsuitable", +ohc_1-0-18_7-2 movement ns2:movements_common currentLocationFitness,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationFitness,Object Location Information,Current location,Current location fitness,"",currentLocationFitness,string,n,n,n/a,option list: locationFitnesses,"dangerous, suitable, temporary, unsuitable", +anthro_7-0-0 movement ns2:movements_common currentLocationNote,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationNote,Object Location Information,Current location,Current location note,"",currentLocationNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common currentLocationNote,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.currentLocationNote,Object Location Information,Current location,Current location note,"",currentLocationNote,string,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common locationDate,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.locationDate,Object Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common locationDate,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.locationDate,Object Location Information,"",Location date,"",locationDate,date,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common reasonForMove,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.reasonForMove,Movement Information,"",Reason for move,"",reasonForMove,string,n,n,n/a,option list: moveReasons,"collections-facility-move, conservation, exhibition, inventory, loan, newstoragelocation, photography, research", +ohc_1-0-18_7-2 movement ns2:movements_common reasonForMove,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.reasonForMove,Movement Information,"",Reason for move,"",reasonForMove,string,n,n,n/a,option list: moveReasons,"collections-facility-move, conservation, exhibition, inventory, loan, newstoragelocation, photography, research", +anthro_7-0-0 movement ns2:movements_common movementMethod,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementMethod,Movement Information,"",Movement method,movementMethods,movementMethod,string,n,y,n,option list: moveMethods,"forklift, handcarried, trolley", +ohc_1-0-18_7-2 movement ns2:movements_common movementMethod,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.movementMethod,Movement Information,"",Movement method,movementMethods,movementMethod,string,n,y,n,option list: moveMethods,"40"" textile box, 60"" textile box, bin box, blanket wrapped, crate, custom box, custom mount, drawer, fragile, garment rack, handcarried, hazardous, heavy, large banker's box, pallet, small banker's box, speed pack", +anthro_7-0-0 movement ns2:movements_common plannedRemovalDate,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.plannedRemovalDate,Movement Information,"",Planned removal date,"",plannedRemovalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common plannedRemovalDate,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.plannedRemovalDate,Movement Information,"",Planned removal date,"",plannedRemovalDate,date,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common removalDate,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.removalDate,Movement Information,"",Removal date,"",removalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common removalDate,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.removalDate,Movement Information,"",Removal date,"",removalDate,date,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common movementContact,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementContact,Movement Information,"",Movement contact,"",movementContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 movement ns2:movements_common movementContact,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.movementContact,Movement Information,"",Movement contact,"",movementContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 movement ns2:movements_common movementNote,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.movementNote,Movement Information,"",Movement note,"",movementNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common movementNote,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.movementNote,Movement Information,"",Movement note,"",movementNote,string,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common inventoryActionRequired,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryActionRequired,Inventory Information,"",Inventory action required,"",inventoryActionRequired,string,n,n,n/a,option list: invActions,"conservation, preservation, re-housing", +ohc_1-0-18_7-2 movement ns2:movements_common inventoryActionRequired,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryActionRequired,Inventory Information,"",Inventory action required,"",inventoryActionRequired,string,n,n,n/a,option list: invActions,"conservation, preservation, re-housing", +anthro_7-0-0 movement ns2:movements_common frequencyForInventory,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.frequencyForInventory,Inventory Information,"",Inventory frequency,"",frequencyForInventory,string,n,n,n/a,option list: invFreqs,"annually, daily, monthly, semi-annually, weekly", +ohc_1-0-18_7-2 movement ns2:movements_common frequencyForInventory,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.frequencyForInventory,Inventory Information,"",Inventory frequency,"",frequencyForInventory,string,n,n,n/a,option list: invFreqs,"annually, daily, monthly, semi-annually, weekly", +anthro_7-0-0 movement ns2:movements_common inventoryDate,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryDate,Inventory Information,"",Inventory date,"",inventoryDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common inventoryDate,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryDate,Inventory Information,"",Inventory date,"",inventoryDate,date,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common nextInventoryDate,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.nextInventoryDate,Inventory Information,"",Next inventory date,"",nextInventoryDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common nextInventoryDate,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.nextInventoryDate,Inventory Information,"",Next inventory date,"",nextInventoryDate,date,n,n,n/a,"","", +anthro_7-0-0 movement ns2:movements_common inventoryContact,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryContact,Inventory Information,"",Inventory contact,inventoryContactList,inventoryContact,string,n,y,n,authority: person/local,"", +ohc_1-0-18_7-2 movement ns2:movements_common inventoryContact,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryContact,Inventory Information,"",Inventory contact,inventoryContactList,inventoryContact,string,n,y,n,authority: person/local,"", +anthro_7-0-0 movement ns2:movements_common inventoryNote,anthro_7-0-0,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryNote,Inventory Information,"",Inventory note,"",inventoryNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 movement ns2:movements_common inventoryNote,ohc_1-0-18_7-2,movement,ns2:movements_common,ns2:movements_common,movements_common.inventoryNote,Inventory Information,"",Inventory note,"",inventoryNote,string,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common exitNumber,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNumber,Object Exit Information,"",Exit number,"",exitNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitNumber,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNumber,Object Exit Information,"",Exit number,"",exitNumber,string,y,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common exitDateGroup,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitDateGroup,Object Exit Information,"",Exit date,"",exitDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitDateGroup,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitDateGroup,Object Exit Information,"",Exit date,"",exitDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common exitReason,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitReason,Object Exit Information,"",Exit reason,"",exitReason,string,n,n,n/a,option list: exitReasons,"deaccession, disposal, returnofloan", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitReason,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitReason,Object Exit Information,"",Exit reason,"",exitReason,string,n,n,n/a,option list: exitReasons,"betterExampleExists, cantPreserve, deteriorated, nagpraRepatriation, noLongerUseful, notCollectionThemed", +anthro_7-0-0 objectexit ns2:objectexit_common exitMethod,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitMethod,Object Exit Information,"",Exit method,exitMethods,exitMethod,string,n,y,n,option list: exitMethods,"courier, inperson, post", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitMethod,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitMethod,Object Exit Information,"",Exit method,exitMethods,exitMethod,string,n,y,n,option list: exitMethods,"deaccession, disposal, transfer", +anthro_7-0-0 objectexit ns2:objectexit_common exitQuantity,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitQuantity,Object Exit Information,"",Exit quantity,"",exitQuantity,integer,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitQuantity,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitQuantity,Object Exit Information,"",Exit quantity,"",exitQuantity,integer,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common exitNote,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNote,Object Exit Information,"",Exit note,"",exitNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common exitNote,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.exitNote,Object Exit Information,"",Exit rationale,"",exitNote,string,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common packingNote,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.packingNote,Object Exit Information,"",Packing note,"",packingNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common packingNote,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.packingNote,Object Exit Information,"",Additional notes,"",packingNote,string,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common deaccessionDate,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionDate,Deaccession and Disposal Information,"",Deaccession date,"",deaccessionDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common deaccessionDate,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.deaccessionDate,Deaccession and Disposal Information,"",Deaccession date,"",deaccessionDate,date,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common disposalDate,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalDate,Deaccession and Disposal Information,"",Disposal date,"",disposalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common disposalDate,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalDate,Deaccession and Disposal Information,"",Disposal date,"",disposalDate,date,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common disposalMethod,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalMethod,Deaccession and Disposal Information,"",Disposal method,"",disposalMethod,string,n,n,n/a,vocabulary: disposalmethod,"", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common disposalMethod,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalMethod,Deaccession and Disposal Information,"",Disposal method,"",disposalMethod,string,n,n,n/a,vocabulary: disposalmethod,"", +anthro_7-0-0 objectexit ns2:objectexit_common displosalReason,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalReason,Deaccession and Disposal Information,"",Disposal reason,"",displosalReason,string,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common displosalReason,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalReason,Deaccession and Disposal Information,"",Disposal reason,"",displosalReason,string,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common disposalProposedRecipient,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalProposedRecipient,Deaccession and Disposal Information,"",Disposal proposed recipient,"",disposalProposedRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common disposalProposedRecipient,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalProposedRecipient,Deaccession and Disposal Information,"",Disposal proposed recipient,"",disposalProposedRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 objectexit ns2:objectexit_common disposalRecipient,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalRecipient,Deaccession and Disposal Information,"",Disposal recipient,"",disposalRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common disposalRecipient,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalRecipient,Deaccession and Disposal Information,"",Disposal recipient,"",disposalRecipient,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 objectexit ns2:objectexit_common disposalCurrency,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalCurrency,Deaccession and Disposal Information,Disposal,Disposal currency,"",disposalCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common disposalCurrency,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.disposalCurrency,Deaccession and Disposal Information,Disposal,Disposal currency,"",disposalCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 objectexit ns2:objectexit_common displosalValue,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalValue,Deaccession and Disposal Information,Disposal,Disposal value,"",displosalValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common displosalValue,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalValue,Deaccession and Disposal Information,Disposal,Disposal value,"",displosalValue,float,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common groupDisposalCurrency,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisposalCurrency,Deaccession and Disposal Information,Group disposal,Group disposal currency,"",groupDisposalCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common groupDisposalCurrency,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisposalCurrency,Deaccession and Disposal Information,Group disposal,Group disposal currency,"",groupDisposalCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 objectexit ns2:objectexit_common groupDisplosalValue,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisplosalValue,Deaccession and Disposal Information,Group disposal,Group disposal value,"",groupDisplosalValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common groupDisplosalValue,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.groupDisplosalValue,Deaccession and Disposal Information,Group disposal,Group disposal value,"",groupDisplosalValue,float,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common displosalProvisos,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalProvisos,Deaccession and Disposal Information,"",Disposal provisos,"",displosalProvisos,string,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common displosalProvisos,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalProvisos,Deaccession and Disposal Information,"",Disposal provisos,"",displosalProvisos,string,n,n,n/a,"","", +anthro_7-0-0 objectexit ns2:objectexit_common displosalNote,anthro_7-0-0,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNote,Deaccession and Disposal Information,"",Disposal note,"",displosalNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 objectexit ns2:objectexit_common displosalNote,ohc_1-0-18_7-2,objectexit,ns2:objectexit_common,ns2:objectexit_common,objectexit_common.displosalNote,Deaccession and Disposal Information,"",Disposal note,"",displosalNote,string,n,n,n/a,"","", +anthro_7-0-0 organization ns2:organizations_common termDisplayName,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termDisplayName,Organization Information,Term,Term display name,orgTermGroupList > orgTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termDisplayName,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termDisplayName,Organization Information,Term,Term display name,orgTermGroupList > orgTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termName,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termName,Organization Information,Term,Term name,orgTermGroupList > orgTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termName,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termName,Organization Information,Term,Term name,orgTermGroupList > orgTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termQualifier,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termQualifier,Organization Information,Term,Term qualifier,orgTermGroupList > orgTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termQualifier,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termQualifier,Organization Information,Term,Term qualifier,orgTermGroupList > orgTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termStatus,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termStatus,Organization Information,Term,Term status,orgTermGroupList > orgTermGroup,termStatus,string,n,n,y,option list: orgTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 organization ns2:organizations_common termStatus,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termStatus,Organization Information,Term,Term status,orgTermGroupList > orgTermGroup,termStatus,string,n,n,y,option list: orgTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 organization ns2:organizations_common termType,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termType,Organization Information,Term,Term type,orgTermGroupList > orgTermGroup,termType,string,n,n,y,option list: orgTermTypes,"alternate descriptor, descriptor, used for term", +ohc_1-0-18_7-2 organization ns2:organizations_common termType,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termType,Organization Information,Term,Term type,orgTermGroupList > orgTermGroup,termType,string,n,n,y,option list: orgTermTypes,"alternate descriptor, descriptor, used for term", +anthro_7-0-0 organization ns2:organizations_common termFlag,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termFlag,Organization Information,Term,Term flag,orgTermGroupList > orgTermGroup,termFlag,string,n,n,y,vocabulary: orgtermflag,"", +ohc_1-0-18_7-2 organization ns2:organizations_common termFlag,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termFlag,Organization Information,Term,Term flag,orgTermGroupList > orgTermGroup,termFlag,string,n,n,y,vocabulary: orgtermflag,"", +anthro_7-0-0 organization ns2:organizations_common termLanguage,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termLanguage,Organization Information,Term,Term language,orgTermGroupList > orgTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 organization ns2:organizations_common termLanguage,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termLanguage,Organization Information,Term,Term language,orgTermGroupList > orgTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 organization ns2:organizations_common termPrefForLang,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termPrefForLang,Organization Information,Term,Term preferred for lang,orgTermGroupList > orgTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termPrefForLang,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termPrefForLang,Organization Information,Term,Term preferred for lang,orgTermGroupList > orgTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common mainBodyName,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.mainBodyName,Organization Information,Term > Name detail,Term main body name,orgTermGroupList > orgTermGroup,mainBodyName,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common mainBodyName,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.mainBodyName,Organization Information,Term > Name detail,Term main body name,orgTermGroupList > orgTermGroup,mainBodyName,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common additionsToName,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.additionsToName,Organization Information,Term > Name detail,Term name addition,orgTermGroupList > orgTermGroup,additionsToName,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common additionsToName,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.additionsToName,Organization Information,Term > Name detail,Term name addition,orgTermGroupList > orgTermGroup,additionsToName,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termSource,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSource,Organization Information,Term > Source,Term source name,orgTermGroupList > orgTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 organization ns2:organizations_common termSource,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSource,Organization Information,Term > Source,Term source name,orgTermGroupList > orgTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 organization ns2:organizations_common termSourceDetail,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceDetail,Organization Information,Term > Source,Term source detail,orgTermGroupList > orgTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termSourceDetail,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceDetail,Organization Information,Term > Source,Term source detail,orgTermGroupList > orgTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termSourceID,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceID,Organization Information,Term > Source,Term source ID,orgTermGroupList > orgTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termSourceID,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceID,Organization Information,Term > Source,Term source ID,orgTermGroupList > orgTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common termSourceNote,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceNote,Organization Information,Term > Source,Term source note,orgTermGroupList > orgTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common termSourceNote,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.termSourceNote,Organization Information,Term > Source,Term source note,orgTermGroupList > orgTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common organizationRecordType,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.organizationRecordType,Organization Information,"",Organization type,organizationRecordTypes,organizationRecordType,string,n,y,n,vocabulary: organizationtype,"", +ohc_1-0-18_7-2 organization ns2:organizations_common organizationRecordType,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.organizationRecordType,Organization Information,"",Organization type,organizationRecordTypes,organizationRecordType,string,n,y,n,vocabulary: organizationtype,"", +anthro_7-0-0 organization ns2:organizations_common foundingDateGroup,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingDateGroup,Organization Information,"",Foundation date,"",foundingDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common foundingDateGroup,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingDateGroup,Organization Information,"",Foundation date,"",foundingDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 organization ns2:organizations_common foundingPlace,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingPlace,Organization Information,"",Foundation place,"",foundingPlace,string,n,n,n/a,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common foundingPlace,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.foundingPlace,Organization Information,"",Foundation place,"",foundingPlace,string,n,n,n/a,"","", +anthro_7-0-0 organization ns2:organizations_common dissolutionDateGroup,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.dissolutionDateGroup,Organization Information,"",Dissolution date,"",dissolutionDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common dissolutionDateGroup,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.dissolutionDateGroup,Organization Information,"",Dissolution date,"",dissolutionDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 organization ns2:organizations_common group,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.group,Organization Information,"",Group,groups,group,string,n,y,n,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common group,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.group,Organization Information,"",Group,groups,group,string,n,y,n,"","", +anthro_7-0-0 organization ns2:organizations_common function,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.function,Organization Information,"",Function,functions,function,string,n,y,n,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common function,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.function,Organization Information,"",Function,functions,function,string,n,y,n,"","", +anthro_7-0-0 organization ns2:organizations_common historyNote,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.historyNote,Organization Information,"",History,historyNotes,historyNote,string,n,y,n,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common historyNote,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.historyNote,Organization Information,"",History,historyNotes,historyNote,string,n,y,n,"","", +anthro_7-0-0 organization ns2:organizations_common contactName,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactName,Organization Information,Contact person,Contact name,contactGroupList > contactGroup,contactName,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 organization ns2:organizations_common contactName,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactName,Organization Information,Contact person,Contact name,contactGroupList > contactGroup,contactName,string,n,n,y,authority: person/local,"", +anthro_7-0-0 organization ns2:organizations_common contactRole,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactRole,Organization Information,Contact person,Contact role,contactGroupList > contactGroup,contactRole,string,n,n,y,vocabulary: contactrole,"", +ohc_1-0-18_7-2 organization ns2:organizations_common contactRole,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactRole,Organization Information,Contact person,Contact role,contactGroupList > contactGroup,contactRole,string,n,n,y,vocabulary: contactrole,"", +anthro_7-0-0 organization ns2:organizations_common contactDateGroup,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactDateGroup,Organization Information,Contact person,Contact date,contactGroupList > contactGroup,contactDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common contactDateGroup,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactDateGroup,Organization Information,Contact person,Contact date,contactGroupList > contactGroup,contactDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common contactEndDateGroup,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactEndDateGroup,Organization Information,Contact person,Contact end date,contactGroupList > contactGroup,contactEndDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:organizations_common contactEndDateGroup,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactEndDateGroup,Organization Information,Contact person,Contact end date,contactGroupList > contactGroup,contactEndDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 organization ns2:organizations_common contactStatus,anthro_7-0-0,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactStatus,Organization Information,Contact person,Contact status,contactGroupList > contactGroup,contactStatus,string,n,n,y,vocabulary: contactstatus,"", +ohc_1-0-18_7-2 organization ns2:organizations_common contactStatus,ohc_1-0-18_7-2,organization,ns2:organizations_common,ns2:organizations_common,organizations_common.contactStatus,Organization Information,Contact person,Contact status,contactGroupList > contactGroup,contactStatus,string,n,n,y,vocabulary: contactstatus,"", +anthro_7-0-0 organization ns2:contacts_common email,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common email,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common emailType,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal", +ohc_1-0-18_7-2 organization ns2:contacts_common emailType,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal", +anthro_7-0-0 organization ns2:contacts_common telephoneNumber,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common telephoneNumber,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common telephoneNumberType,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other", +ohc_1-0-18_7-2 organization ns2:contacts_common telephoneNumberType,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other", +anthro_7-0-0 organization ns2:contacts_common faxNumber,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common faxNumber,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common faxNumberType,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other", +ohc_1-0-18_7-2 organization ns2:contacts_common faxNumberType,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other", +anthro_7-0-0 organization ns2:contacts_common webAddress,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common webAddress,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common webAddressType,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal", +ohc_1-0-18_7-2 organization ns2:contacts_common webAddressType,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal", +anthro_7-0-0 organization ns2:contacts_common addressPlace1,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common addressPlace1,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common addressPlace2,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common addressPlace2,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common addressMunicipality,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common addressMunicipality,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common addressStateOrProvince,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common addressStateOrProvince,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common addressPostCode,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","", +ohc_1-0-18_7-2 organization ns2:contacts_common addressPostCode,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","", +anthro_7-0-0 organization ns2:contacts_common addressCountry,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +ohc_1-0-18_7-2 organization ns2:contacts_common addressCountry,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +anthro_7-0-0 organization ns2:contacts_common addressType,anthro_7-0-0,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other", +ohc_1-0-18_7-2 organization ns2:contacts_common addressType,ohc_1-0-18_7-2,organization,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other", +anthro_7-0-0 person ns2:persons_common termDisplayName,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termDisplayName,Person Information,Term,Term display name,personTermGroupList > personTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termDisplayName,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termDisplayName,Person Information,Term,Term display name,personTermGroupList > personTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 person ns2:persons_common termName,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termName,Person Information,Term,Term name,personTermGroupList > personTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termName,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termName,Person Information,Term,Term name,personTermGroupList > personTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common termQualifier,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termQualifier,Person Information,Term,Term qualifier,personTermGroupList > personTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termQualifier,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termQualifier,Person Information,Term,Term qualifier,personTermGroupList > personTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common termStatus,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termStatus,Person Information,Term,Term status,personTermGroupList > personTermGroup,termStatus,string,n,n,y,option list: personTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 person ns2:persons_common termStatus,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termStatus,Person Information,Term,Term status,personTermGroupList > personTermGroup,termStatus,string,n,n,y,option list: personTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 person ns2:persons_common termType,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termType,Person Information,Term,Term type,personTermGroupList > personTermGroup,termType,string,n,n,y,option list: personTermTypes,"alternate descriptor, descriptor, used for term", +ohc_1-0-18_7-2 person ns2:persons_common termType,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termType,Person Information,Term,Term type,personTermGroupList > personTermGroup,termType,string,n,n,y,option list: personTermTypes,"alternate descriptor, descriptor, used for term", +anthro_7-0-0 person ns2:persons_common termFlag,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termFlag,Person Information,Term,Term flag,personTermGroupList > personTermGroup,termFlag,string,n,n,y,vocabulary: persontermflag,"", +ohc_1-0-18_7-2 person ns2:persons_common termFlag,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termFlag,Person Information,Term,Term flag,personTermGroupList > personTermGroup,termFlag,string,n,n,y,vocabulary: persontermflag,"", +anthro_7-0-0 person ns2:persons_common termLanguage,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termLanguage,Person Information,Term,Term language,personTermGroupList > personTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 person ns2:persons_common termLanguage,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termLanguage,Person Information,Term,Term language,personTermGroupList > personTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 person ns2:persons_common termPrefForLang,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termPrefForLang,Person Information,Term,Term preferred for lang,personTermGroupList > personTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termPrefForLang,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termPrefForLang,Person Information,Term,Term preferred for lang,personTermGroupList > personTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common salutation,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.salutation,Person Information,Term > Name detail,Term salutation,personTermGroupList > personTermGroup,salutation,string,n,n,y,option list: salutations,"dear, hello, to", +ohc_1-0-18_7-2 person ns2:persons_common salutation,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.salutation,Person Information,Term > Name detail,Term salutation,personTermGroupList > personTermGroup,salutation,string,n,n,y,option list: salutations,"dear, hello, to", +anthro_7-0-0 person ns2:persons_common title,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.title,Person Information,Term > Name detail,Term title,personTermGroupList > personTermGroup,title,string,n,n,y,option list: personTitles,"Admiral, Baron, Baroness, Captain, Commander, Commodore, Count, Countess, Dame, Dr, General, Governor, Honorable, Judge, King, Lady, Lord, Miss, Mr, Mrs, Ms, Prince, Princess, Professor, Queen, Reverend, Saint, Sir", +ohc_1-0-18_7-2 person ns2:persons_common title,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.title,Person Information,Term > Name detail,Term title,personTermGroupList > personTermGroup,title,string,n,n,y,option list: personTitles,"Admiral, Baron, Baroness, Captain, Commander, Commodore, Count, Countess, Dame, Detective, Dr, General, Governor, Honorable, Judge, King, Lady, Lieutenant, Lord, Miss, Mr, Mrs, Ms, Prince, Princess, Professor, Queen, Reverend, Saint, Sergeant, Sir", +anthro_7-0-0 person ns2:persons_common foreName,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.foreName,Person Information,Term > Name detail,Term forename,personTermGroupList > personTermGroup,foreName,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common foreName,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.foreName,Person Information,Term > Name detail,Term forename,personTermGroupList > personTermGroup,foreName,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common middleName,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.middleName,Person Information,Term > Name detail,Term middle name,personTermGroupList > personTermGroup,middleName,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common middleName,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.middleName,Person Information,Term > Name detail,Term middle name,personTermGroupList > personTermGroup,middleName,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common surName,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.surName,Person Information,Term > Name detail,Term surname,personTermGroupList > personTermGroup,surName,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common surName,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.surName,Person Information,Term > Name detail,Term surname,personTermGroupList > personTermGroup,surName,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common nameAdditions,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.nameAdditions,Person Information,Term > Name detail,Term name addition,personTermGroupList > personTermGroup,nameAdditions,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common nameAdditions,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.nameAdditions,Person Information,Term > Name detail,Term name addition,personTermGroupList > personTermGroup,nameAdditions,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common initials,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.initials,Person Information,Term > Name detail,Term initials,personTermGroupList > personTermGroup,initials,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common initials,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.initials,Person Information,Term > Name detail,Term initials,personTermGroupList > personTermGroup,initials,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common termSource,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSource,Person Information,Term > Source,Term source name,personTermGroupList > personTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 person ns2:persons_common termSource,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termSource,Person Information,Term > Source,Term source name,personTermGroupList > personTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 person ns2:persons_common termSourceDetail,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceDetail,Person Information,Term > Source,Term source detail,personTermGroupList > personTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termSourceDetail,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceDetail,Person Information,Term > Source,Term source detail,personTermGroupList > personTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common termSourceID,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceID,Person Information,Term > Source,Term source ID,personTermGroupList > personTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termSourceID,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceID,Person Information,Term > Source,Term source ID,personTermGroupList > personTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common termSourceNote,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceNote,Person Information,Term > Source,Term source note,personTermGroupList > personTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common termSourceNote,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.termSourceNote,Person Information,Term > Source,Term source note,personTermGroupList > personTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common personRecordType,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.personRecordType,Person Information,"",Person type,personRecordTypes,personRecordType,string,n,y,n,vocabulary: persontermtype,"", +ohc_1-0-18_7-2 person ns2:persons_common personRecordType,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.personRecordType,Person Information,"",Person type,personRecordTypes,personRecordType,string,n,y,n,vocabulary: persontermtype,"", +anthro_7-0-0 person ns2:persons_common gender,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.gender,Person Information,"",Gender,"",gender,string,n,n,n/a,option list: genders,"agender, bigender, dyadic, female, feminine, gender-fluid, gender-neutral, gender-non-binary, genderqueer, intersex, male, masculine, pansexual, polygender, questioning, transgender, transsexual, two-spirit", +ohc_1-0-18_7-2 person ns2:persons_common gender,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.gender,Person Information,"",Gender,"",gender,string,n,n,n/a,option list: genders,"agender, bigender, dyadic, female, feminine, gender-fluid, gender-neutral, gender-non-binary, genderqueer, intersex, male, masculine, pansexual, polygender, questioning, transgender, transsexual, two-spirit", +anthro_7-0-0 person ns2:persons_common occupation,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.occupation,Person Information,"",Occupation,occupations,occupation,string,n,y,n,"","", +ohc_1-0-18_7-2 person ns2:persons_common occupation,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.occupation,Person Information,"",Occupation,occupations,occupation,string,n,y,n,"","", +anthro_7-0-0 person ns2:persons_common schoolOrStyle,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.schoolOrStyle,Person Information,"",School/style,schoolsOrStyles,schoolOrStyle,string,n,y,n,"","", +ohc_1-0-18_7-2 person ns2:persons_common schoolOrStyle,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.schoolOrStyle,Person Information,"",School/style,schoolsOrStyles,schoolOrStyle,string,n,y,n,"","", +anthro_7-0-0 person ns2:persons_common group,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.group,Person Information,"",Group,groups,group,string,n,y,n,"","", +ohc_1-0-18_7-2 person ns2:persons_common group,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.group,Person Information,"",Group,groups,group,string,n,y,n,"","", +anthro_7-0-0 person ns2:persons_common nationality,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.nationality,Person Information,"",Nationality,nationalities,nationality,string,n,y,n,"","", +ohc_1-0-18_7-2 person ns2:persons_common nationality,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.nationality,Person Information,"",Nationality,nationalities,nationality,string,n,y,n,"","", +anthro_7-0-0 person ns2:persons_common nameNote,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.nameNote,Person Information,"",Name note,"",nameNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common nameNote,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.nameNote,Person Information,"",Name note,"",nameNote,string,n,n,n/a,"","", +anthro_7-0-0 person ns2:persons_common birthDateGroup,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.birthDateGroup,Person Information,"",Birth date,"",birthDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common birthDateGroup,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.birthDateGroup,Person Information,"",Birth date,"",birthDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 person ns2:persons_common birthPlace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.birthPlace,Person Information,"",Place of birth,"",birthPlace,string,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common birthPlace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.birthPlace,Person Information,"",Place of birth,"",birthPlace,string,n,n,n/a,"","", +anthro_7-0-0 person ns2:persons_common deathDateGroup,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.deathDateGroup,Person Information,"",Death date,"",deathDateGroup,structured date group,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common deathDateGroup,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.deathDateGroup,Person Information,"",Death date,"",deathDateGroup,structured date group,n,n,n/a,"","", +anthro_7-0-0 person ns2:persons_common deathPlace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.deathPlace,Person Information,"",Place of death,"",deathPlace,string,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common deathPlace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.deathPlace,Person Information,"",Place of death,"",deathPlace,string,n,n,n/a,"","", +anthro_7-0-0 person ns2:persons_common bioNote,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.bioNote,Person Information,"",Biographical note,"",bioNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 person ns2:persons_common bioNote,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.bioNote,Person Information,"",Biographical note,"",bioNote,string,n,n,n/a,"","", +anthro_7-0-0 person ns2:contacts_common email,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common email,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.email,Contact Information,Email,Address,emailGroupList > emailGroup,email,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common emailType,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal", +ohc_1-0-18_7-2 person ns2:contacts_common emailType,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.emailType,Contact Information,Email,Type,emailGroupList > emailGroup,emailType,string,n,n,y,option list: emailTypes,"business, other, personal", +anthro_7-0-0 person ns2:contacts_common telephoneNumber,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common telephoneNumber,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumber,Contact Information,Phone,Number,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumber,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common telephoneNumberType,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other", +ohc_1-0-18_7-2 person ns2:contacts_common telephoneNumberType,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.telephoneNumberType,Contact Information,Phone,Type,telephoneNumberGroupList > telephoneNumberGroup,telephoneNumberType,string,n,n,y,option list: telephoneNumberTypes,"business, home, mobile, other", +anthro_7-0-0 person ns2:contacts_common faxNumber,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common faxNumber,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumber,Contact Information,Fax,Number,faxNumberGroupList > faxNumberGroup,faxNumber,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common faxNumberType,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other", +ohc_1-0-18_7-2 person ns2:contacts_common faxNumberType,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.faxNumberType,Contact Information,Fax,Type,faxNumberGroupList > faxNumberGroup,faxNumberType,string,n,n,y,option list: faxNumberTypes,"business, home, other", +anthro_7-0-0 person ns2:contacts_common webAddress,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common webAddress,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddress,Contact Information,Web site,URL,webAddressGroupList > webAddressGroup,webAddress,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common webAddressType,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal", +ohc_1-0-18_7-2 person ns2:contacts_common webAddressType,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.webAddressType,Contact Information,Web site,Type,webAddressGroupList > webAddressGroup,webAddressType,string,n,n,y,option list: webAddressTypes,"business, other, personal", +anthro_7-0-0 person ns2:contacts_common addressPlace1,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common addressPlace1,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace1,Contact Information,Address,Line 1,addressGroupList > addressGroup,addressPlace1,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common addressPlace2,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common addressPlace2,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPlace2,Contact Information,Address,Line 2,addressGroupList > addressGroup,addressPlace2,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common addressMunicipality,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common addressMunicipality,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressMunicipality,Contact Information,Address,Municipality,addressGroupList > addressGroup,addressMunicipality,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common addressStateOrProvince,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common addressStateOrProvince,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressStateOrProvince,Contact Information,Address,State/province,addressGroupList > addressGroup,addressStateOrProvince,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common addressPostCode,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:contacts_common addressPostCode,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressPostCode,Contact Information,Address,Postal code,addressGroupList > addressGroup,addressPostCode,string,n,n,y,"","", +anthro_7-0-0 person ns2:contacts_common addressCountry,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +ohc_1-0-18_7-2 person ns2:contacts_common addressCountry,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressCountry,Contact Information,Address,Country,addressGroupList > addressGroup,addressCountry,string,n,n,y,option list: addressCountries,"AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW", +anthro_7-0-0 person ns2:contacts_common addressType,anthro_7-0-0,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other", +ohc_1-0-18_7-2 person ns2:contacts_common addressType,ohc_1-0-18_7-2,person,ns2:contacts_common,ns2:contacts_common,contacts_common.addressType,Contact Information,Address,Type,addressGroupList > addressGroup,addressType,string,n,n,y,option list: addressTypes,"business, home, other", +anthro_7-0-0 person ns2:persons_common declinedToAnswerPronoun,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied declined to answer,pronounGroupList > pronounGroup,declinedToAnswerPronoun,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerPronoun,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied declined to answer,pronounGroupList > pronounGroup,declinedToAnswerPronoun,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedPronoun,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied,pronounGroupList > pronounGroup > suppliedPronouns,suppliedPronoun,string,n,y,as part of larger repeating group,vocabulary: suppliedpronoun,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedPronoun,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied,pronounGroupList > pronounGroup > suppliedPronouns,suppliedPronoun,string,n,y,as part of larger repeating group,vocabulary: suppliedpronoun,"", +anthro_7-0-0 person ns2:persons_common useRestrictionPronoun,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied use restriction,pronounGroupList > pronounGroup,useRestrictionPronoun,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionPronoun,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionPronoun,Maker-Supplied Identity Information,Pronoun,Pronoun supplied use restriction,pronounGroupList > pronounGroup,useRestrictionPronoun,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerGender,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerGender,Maker-Supplied Identity Information,Gender,Gender supplied declined to answer,genderGroupList > genderGroup,declinedToAnswerGender,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerGender,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerGender,Maker-Supplied Identity Information,Gender,Gender supplied declined to answer,genderGroupList > genderGroup,declinedToAnswerGender,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedGender,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedGender,Maker-Supplied Identity Information,Gender,Gender supplied,genderGroupList > genderGroup > suppliedGenders,suppliedGender,string,n,y,as part of larger repeating group,vocabulary: suppliedgender,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedGender,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedGender,Maker-Supplied Identity Information,Gender,Gender supplied,genderGroupList > genderGroup > suppliedGenders,suppliedGender,string,n,y,as part of larger repeating group,vocabulary: suppliedgender,"", +anthro_7-0-0 person ns2:persons_common useRestrictionGender,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionGender,Maker-Supplied Identity Information,Gender,Gender supplied use restriction,genderGroupList > genderGroup,useRestrictionGender,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionGender,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionGender,Maker-Supplied Identity Information,Gender,Gender supplied use restriction,genderGroupList > genderGroup,useRestrictionGender,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerRace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerRace,Maker-Supplied Identity Information,Race,Race supplied declined to answer,raceGroupList > raceGroup,declinedToAnswerRace,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerRace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerRace,Maker-Supplied Identity Information,Race,Race supplied declined to answer,raceGroupList > raceGroup,declinedToAnswerRace,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedRace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedRace,Maker-Supplied Identity Information,Race,Race supplied,raceGroupList > raceGroup > suppliedRaces,suppliedRace,string,n,y,as part of larger repeating group,vocabulary: suppliedrace,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedRace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedRace,Maker-Supplied Identity Information,Race,Race supplied,raceGroupList > raceGroup > suppliedRaces,suppliedRace,string,n,y,as part of larger repeating group,vocabulary: suppliedrace,"", +anthro_7-0-0 person ns2:persons_common useRestrictionRace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionRace,Maker-Supplied Identity Information,Race,Race supplied use restriction,raceGroupList > raceGroup,useRestrictionRace,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionRace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionRace,Maker-Supplied Identity Information,Race,Race supplied use restriction,raceGroupList > raceGroup,useRestrictionRace,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerEthnicity,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied declined to answer,ethnicityGroupList > ethnicityGroup,declinedToAnswerEthnicity,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerEthnicity,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied declined to answer,ethnicityGroupList > ethnicityGroup,declinedToAnswerEthnicity,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedEthnicity,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied,ethnicityGroupList > ethnicityGroup > suppliedEthnicities,suppliedEthnicity,string,n,y,as part of larger repeating group,vocabulary: suppliedethnicity,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedEthnicity,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied,ethnicityGroupList > ethnicityGroup > suppliedEthnicities,suppliedEthnicity,string,n,y,as part of larger repeating group,vocabulary: suppliedethnicity,"", +anthro_7-0-0 person ns2:persons_common useRestrictionEthnicity,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied use restriction,ethnicityGroupList > ethnicityGroup,useRestrictionEthnicity,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionEthnicity,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionEthnicity,Maker-Supplied Identity Information,Ethnicity,Ethnicity supplied use restriction,ethnicityGroupList > ethnicityGroup,useRestrictionEthnicity,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerSexuality,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied declined to answer,sexualityGroupList > sexualityGroup,declinedToAnswerSexuality,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerSexuality,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied declined to answer,sexualityGroupList > sexualityGroup,declinedToAnswerSexuality,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedSexuality,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied,sexualityGroupList > sexualityGroup > suppliedSexualities,suppliedSexuality,string,n,y,as part of larger repeating group,vocabulary: suppliedsexuality,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedSexuality,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied,sexualityGroupList > sexualityGroup > suppliedSexualities,suppliedSexuality,string,n,y,as part of larger repeating group,vocabulary: suppliedsexuality,"", +anthro_7-0-0 person ns2:persons_common useRestrictionSexuality,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied use restriction,sexualityGroupList > sexualityGroup,useRestrictionSexuality,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionSexuality,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionSexuality,Maker-Supplied Identity Information,Sexuality,Sexuality supplied use restriction,sexualityGroupList > sexualityGroup,useRestrictionSexuality,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerBirthPlace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied declined to answer,birthPlaceGroupList > birthPlaceGroup,declinedToAnswerBirthPlace,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerBirthPlace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied declined to answer,birthPlaceGroupList > birthPlaceGroup,declinedToAnswerBirthPlace,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedBirthPlace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied,birthPlaceGroupList > birthPlaceGroup,suppliedBirthPlace,string,n,n,y,authority: place/local,"", +ohc_1-0-18_7-2 person ns2:persons_common suppliedBirthPlace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied,birthPlaceGroupList > birthPlaceGroup,suppliedBirthPlace,string,n,n,y,authority: place/local,"", +anthro_7-0-0 person ns2:persons_common useRestrictionBirthPlace,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied use restriction,birthPlaceGroupList > birthPlaceGroup,useRestrictionBirthPlace,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionBirthPlace,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthPlace,Maker-Supplied Identity Information,Birth place,Birth place supplied use restriction,birthPlaceGroupList > birthPlaceGroup,useRestrictionBirthPlace,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common declinedToAnswerBirthDate,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied declined to answer,suppliedBirthDateGroupList > suppliedBirthDateGroup,declinedToAnswerBirthDate,boolean,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common declinedToAnswerBirthDate,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.declinedToAnswerBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied declined to answer,suppliedBirthDateGroupList > suppliedBirthDateGroup,declinedToAnswerBirthDate,boolean,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common suppliedStructuredBirthDateGroup,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedStructuredBirthDateGroup,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied,suppliedBirthDateGroupList > suppliedBirthDateGroup,suppliedStructuredBirthDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common suppliedStructuredBirthDateGroup,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.suppliedStructuredBirthDateGroup,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied,suppliedBirthDateGroupList > suppliedBirthDateGroup,suppliedStructuredBirthDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common useRestrictionBirthDate,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied use restriction,suppliedBirthDateGroupList > suppliedBirthDateGroup,useRestrictionBirthDate,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common useRestrictionBirthDate,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.useRestrictionBirthDate,Maker-Supplied Identity Information,Supplied birth date,Birth date supplied use restriction,suppliedBirthDateGroupList > suppliedBirthDateGroup,useRestrictionBirthDate,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common informationAuthor,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationAuthor,Maker-Supplied Identity Information,Other information,Other information author,otherGroupList > otherGroup,informationAuthor,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 person ns2:persons_common informationAuthor,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.informationAuthor,Maker-Supplied Identity Information,Other information,Other information author,otherGroupList > otherGroup,informationAuthor,string,n,n,y,authority: person/local,"", +anthro_7-0-0 person ns2:persons_common informationDate,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationDate,Maker-Supplied Identity Information,Other information,Other information date,otherGroupList > otherGroup,informationDate,date,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common informationDate,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.informationDate,Maker-Supplied Identity Information,Other information,Other information date,otherGroupList > otherGroup,informationDate,date,n,n,y,"","", +anthro_7-0-0 person ns2:persons_common informationUseRestriction,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.informationUseRestriction,Maker-Supplied Identity Information,Other information,Other information use restriction,otherGroupList > otherGroup,informationUseRestriction,string,n,n,y,vocabulary: userestriction,"", +ohc_1-0-18_7-2 person ns2:persons_common informationUseRestriction,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.informationUseRestriction,Maker-Supplied Identity Information,Other information,Other information use restriction,otherGroupList > otherGroup,informationUseRestriction,string,n,n,y,vocabulary: userestriction,"", +anthro_7-0-0 person ns2:persons_common otherInformation,anthro_7-0-0,person,ns2:persons_common,ns2:persons_common,persons_common.otherInformation,Maker-Supplied Identity Information,Other information,Other information note,otherGroupList > otherGroup,otherInformation,string,n,n,y,"","", +ohc_1-0-18_7-2 person ns2:persons_common otherInformation,ohc_1-0-18_7-2,person,ns2:persons_common,ns2:persons_common,persons_common.otherInformation,Maker-Supplied Identity Information,Other information,Other information note,otherGroupList > otherGroup,otherInformation,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termDisplayName,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termDisplayName,Place Information,Term,Term display name,placeTermGroupList > placeTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termDisplayName,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termDisplayName,Place Information,Term,Term display name,placeTermGroupList > placeTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 place ns2:places_common termName,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termName,Place Information,Term,Term name,placeTermGroupList > placeTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termName,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termName,Place Information,Term,Term name,placeTermGroupList > placeTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termQualifier,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termQualifier,Place Information,Term,Term qualifier,placeTermGroupList > placeTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termQualifier,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termQualifier,Place Information,Term,Term qualifier,placeTermGroupList > placeTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termStatus,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termStatus,Place Information,Term,Term status,placeTermGroupList > placeTermGroup,termStatus,string,n,n,y,option list: placeTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 place ns2:places_common termStatus,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termStatus,Place Information,Term,Term status,placeTermGroupList > placeTermGroup,termStatus,string,n,n,y,option list: placeTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 place ns2:places_common termType,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termType,Place Information,Term,Term type,placeTermGroupList > placeTermGroup,termType,string,n,n,y,option list: placeTermTypes,"common, descriptive, local, native, non-native, spelling-variant, technical-scientific", +ohc_1-0-18_7-2 place ns2:places_common termType,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termType,Place Information,Term,Term type,placeTermGroupList > placeTermGroup,termType,string,n,n,y,option list: placeTermTypes,"common, descriptive, local, native, non-native, spelling-variant, technical-scientific", +anthro_7-0-0 place ns2:places_common termFlag,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termFlag,Place Information,Term,Term flag,placeTermGroupList > placeTermGroup,termFlag,string,n,n,y,vocabulary: placetermflag,"", +ohc_1-0-18_7-2 place ns2:places_common termFlag,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termFlag,Place Information,Term,Term flag,placeTermGroupList > placeTermGroup,termFlag,string,n,n,y,vocabulary: placetermflag,"", +anthro_7-0-0 place ns2:places_common historicalStatus,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.historicalStatus,Place Information,Term,Term historical status,placeTermGroupList > placeTermGroup,historicalStatus,string,n,n,y,option list: placeHistoricalStatuses,"both, current, historical", +ohc_1-0-18_7-2 place ns2:places_common historicalStatus,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.historicalStatus,Place Information,Term,Term historical status,placeTermGroupList > placeTermGroup,historicalStatus,string,n,n,y,option list: placeHistoricalStatuses,"both, current, historical", +anthro_7-0-0 place ns2:places_common termLanguage,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termLanguage,Place Information,Term,Term language,placeTermGroupList > placeTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 place ns2:places_common termLanguage,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termLanguage,Place Information,Term,Term language,placeTermGroupList > placeTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 place ns2:places_common termPrefForLang,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termPrefForLang,Place Information,Term,Term preferred for lang,placeTermGroupList > placeTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termPrefForLang,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termPrefForLang,Place Information,Term,Term preferred for lang,placeTermGroupList > placeTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 place ns2:places_common nameAbbrev,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.nameAbbrev,Place Information,Term,Term abbreviation,placeTermGroupList > placeTermGroup,nameAbbrev,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common nameAbbrev,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.nameAbbrev,Place Information,Term,Term abbreviation,placeTermGroupList > placeTermGroup,nameAbbrev,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common nameNote,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.nameNote,Place Information,Term,Term note,placeTermGroupList > placeTermGroup,nameNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common nameNote,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.nameNote,Place Information,Term,Term note,placeTermGroupList > placeTermGroup,nameNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common nameDateGroup,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.nameDateGroup,Place Information,Term,Term date,placeTermGroupList > placeTermGroup,nameDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common nameDateGroup,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.nameDateGroup,Place Information,Term,Term date,placeTermGroupList > placeTermGroup,nameDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termSource,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termSource,Place Information,Term > Source,Term source name,placeTermGroupList > placeTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 place ns2:places_common termSource,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termSource,Place Information,Term > Source,Term source name,placeTermGroupList > placeTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 place ns2:places_common termSourceDetail,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termSourceDetail,Place Information,Term > Source,Term source detail,placeTermGroupList > placeTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termSourceDetail,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termSourceDetail,Place Information,Term > Source,Term source detail,placeTermGroupList > placeTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termSourceID,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termSourceID,Place Information,Term > Source,Term source ID,placeTermGroupList > placeTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termSourceID,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termSourceID,Place Information,Term > Source,Term source ID,placeTermGroupList > placeTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common termSourceNote,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.termSourceNote,Place Information,Term > Source,Term source note,placeTermGroupList > placeTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common termSourceNote,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.termSourceNote,Place Information,Term > Source,Term source note,placeTermGroupList > placeTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common placeType,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.placeType,Place Information,"",Place type,"",placeType,string,n,n,n/a,option list: placeTypes,"autonomous-region, borough, city, collection-site, continent, country, country-code, county, dependent-state, deserted-settlement, district-national, general-region, governorate, inhabited-place, island, island-group, localilty, metropolitan-area, municipality, nation, national-division, neighborhood, occupied-territory, prefecture, province, region, state, state-province, territory, township, union-territory, unitary-authority, urban-prefecture, water-body", +ohc_1-0-18_7-2 place ns2:places_common placeType,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.placeType,Place Information,"",Place type,"",placeType,string,n,n,n/a,option list: placeTypes,"autonomous-region, borough, city, collection-site, continent, country, country-code, county, dependent-state, deserted-settlement, district-national, general-region, governorate, inhabited-place, island, island-group, localilty, metropolitan-area, municipality, nation, national-division, neighborhood, occupied-territory, prefecture, province, region, state, state-province, territory, township, union-territory, unitary-authority, urban-prefecture, water-body", +anthro_7-0-0 place ns2:places_common placeSource,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.placeSource,Place Information,"",Place source,"",placeSource,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common placeSource,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.placeSource,Place Information,"",Place source,"",placeSource,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common owner,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.owner,Place Information,Ownership,Owner,placeOwnerGroupList > placeOwnerGroup,owner,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 place ns2:places_common owner,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.owner,Place Information,Ownership,Owner,placeOwnerGroupList > placeOwnerGroup,owner,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 place ns2:places_common ownershipDateGroup,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.ownershipDateGroup,Place Information,Ownership,Ownership date,placeOwnerGroupList > placeOwnerGroup,ownershipDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common ownershipDateGroup,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.ownershipDateGroup,Place Information,Ownership,Ownership date,placeOwnerGroupList > placeOwnerGroup,ownershipDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 place ns2:places_common ownershipNote,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.ownershipNote,Place Information,Ownership,Ownership note,placeOwnerGroupList > placeOwnerGroup,ownershipNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common ownershipNote,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.ownershipNote,Place Information,Ownership,Ownership note,placeOwnerGroupList > placeOwnerGroup,ownershipNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common placeNote,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.placeNote,Place Information,"",Place note,"",placeNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common placeNote,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.placeNote,Place Information,"",Place note,"",placeNote,string,n,n,n/a,"","", +anthro_7-0-0 place ext.address addressPlace1,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressPlace1,Place Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","", +ohc_1-0-18_7-2 place ext.address addressPlace1,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressPlace1,Place Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","", +anthro_7-0-0 place ext.address addressPlace2,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressPlace2,Place Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","", +ohc_1-0-18_7-2 place ext.address addressPlace2,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressPlace2,Place Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","", +anthro_7-0-0 place ext.address addressMunicipality,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressMunicipality,Place Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 place ext.address addressMunicipality,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressMunicipality,Place Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 place ext.address addressStateOrProvince,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressStateOrProvince,Place Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 place ext.address addressStateOrProvince,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressStateOrProvince,Place Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 place ext.address addressPostCode,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressPostCode,Place Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","", +ohc_1-0-18_7-2 place ext.address addressPostCode,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressPostCode,Place Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","", +anthro_7-0-0 place ext.address addressCountry,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressCountry,Place Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 place ext.address addressCountry,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressCountry,Place Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 place ext.address addressType,anthro_7-0-0,place,ns2:places_common,ext.address,ext.address.addressType,Place Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"", +ohc_1-0-18_7-2 place ext.address addressType,ohc_1-0-18_7-2,place,ns2:places_common,ext.address,ext.address.addressType,Place Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"", +anthro_7-0-0 place ns2:places_nagpra basicInfo,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.basicInfo,Background Research and Additional Information,"",Basic information,basicInfoList,basicInfo,string,n,n,n,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra basicInfo,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.basicInfo,Background Research and Additional Information,"",Basic information,basicInfoList,basicInfo,string,n,n,n,"","", +anthro_7-0-0 place ns2:places_nagpra nagpraHistory,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.nagpraHistory,Background Research and Additional Information,"",NAGPRA inventory history,nagpraHistoryList,nagpraHistory,string,n,n,n,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra nagpraHistory,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.nagpraHistory,Background Research and Additional Information,"",NAGPRA inventory history,nagpraHistoryList,nagpraHistory,string,n,n,n,"","", +anthro_7-0-0 place ns2:places_nagpra backgroundSummary,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.backgroundSummary,Background Research and Additional Information,"",Background and records summary,backgroundSummaryList,backgroundSummary,string,n,n,n,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra backgroundSummary,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.backgroundSummary,Background Research and Additional Information,"",Background and records summary,backgroundSummaryList,backgroundSummary,string,n,n,n,"","", +anthro_7-0-0 place ns2:places_nagpra landOwnershipInfo,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.landOwnershipInfo,Background Research and Additional Information,"",Land ownership information,landOwnershipInfoList,landOwnershipInfo,string,n,n,n,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra landOwnershipInfo,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.landOwnershipInfo,Background Research and Additional Information,"",Land ownership information,landOwnershipInfoList,landOwnershipInfo,string,n,n,n,"","", +anthro_7-0-0 place ns2:places_nagpra assertionName,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionName,Cultural Affiliation Lines of Evidence,"",Assertion name,assertionGroupList > assertionGroup,assertionName,string,n,n,y,vocabulary: nagpraassertionnames,"", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionName,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionName,Cultural Affiliation Lines of Evidence,"",Assertion name,assertionGroupList > assertionGroup,assertionName,string,n,n,y,vocabulary: nagpraassertionnames,"", +anthro_7-0-0 place ns2:places_nagpra assertionDescription,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionDescription,Cultural Affiliation Lines of Evidence,"",Assertion description,assertionGroupList > assertionGroup,assertionDescription,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionDescription,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionDescription,Cultural Affiliation Lines of Evidence,"",Assertion description,assertionGroupList > assertionGroup,assertionDescription,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra assertionSourceBy,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceBy,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion by,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceBy,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionSourceBy,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceBy,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion by,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceBy,string,n,n,y,authority: person/local; authority: person/ulan; authority: organization/local; authority: organization/ulan,"", +anthro_7-0-0 place ns2:places_nagpra assertionSourceDate,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceDate,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source date,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceDate,date,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionSourceDate,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceDate,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source date,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceDate,date,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra assertionSourceNote,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source note,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionSourceNote,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionSourceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Assertion source,Assertion source note,assertionGroupList > assertionGroup > assertionSourceGroupList > assertionSourceGroup,assertionSourceNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra assertionRelatedRecords,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionRelatedRecords,Cultural Affiliation Lines of Evidence,Assertion Information,Museum records,assertionGroupList > assertionGroup,assertionRelatedRecords,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionRelatedRecords,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionRelatedRecords,Cultural Affiliation Lines of Evidence,Assertion Information,Museum records,assertionGroupList > assertionGroup,assertionRelatedRecords,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra assertionReference,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReference,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion reference name,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionReference,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReference,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion reference name,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReference,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 place ns2:places_nagpra assertionReferenceNote,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReferenceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion refence note,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReferenceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra assertionReferenceNote,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.assertionReferenceNote,Cultural Affiliation Lines of Evidence,Assertion Information > Reference,Assertion refence note,assertionGroupList > assertionGroup > assertionReferenceGroupList > assertionReferenceGroup,assertionReferenceNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra museumRecords,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.museumRecords,Documents Consulted for Cultural Affiliation Research,"",Museum records,museumRecordsList,museumRecords,string,n,n,n,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra museumRecords,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.museumRecords,Documents Consulted for Cultural Affiliation Research,"",Museum records,museumRecordsList,museumRecords,string,n,n,n,"","", +anthro_7-0-0 place ns2:places_nagpra manuscriptReferences,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptReferences,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript reference,manuscriptGroupList > manuscriptGroup,manuscriptReferences,string,n,n,y,authority: citation/local,"", +ohc_1-0-18_7-2 place ns2:places_nagpra manuscriptReferences,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptReferences,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript reference,manuscriptGroupList > manuscriptGroup,manuscriptReferences,string,n,n,y,authority: citation/local,"", +anthro_7-0-0 place ns2:places_nagpra manuscriptNote,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptNote,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript note,manuscriptGroupList > manuscriptGroup,manuscriptNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra manuscriptNote,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.manuscriptNote,Documents Consulted for Cultural Affiliation Research,Unpublished manuscript,Unpublished manuscript note,manuscriptGroupList > manuscriptGroup,manuscriptNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_nagpra reportReferences,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportReferences,Documents Consulted for Cultural Affiliation Research,Published report,Published report reference,reportRefGroupList > reportRefGroup,reportReferences,string,n,n,y,authority: citation/local,"", +ohc_1-0-18_7-2 place ns2:places_nagpra reportReferences,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportReferences,Documents Consulted for Cultural Affiliation Research,Published report,Published report reference,reportRefGroupList > reportRefGroup,reportReferences,string,n,n,y,authority: citation/local,"", +anthro_7-0-0 place ns2:places_nagpra reportNote,anthro_7-0-0,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportNote,Documents Consulted for Cultural Affiliation Research,Published report,Published report note,reportRefGroupList > reportRefGroup,reportNote,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_nagpra reportNote,ohc_1-0-18_7-2,place,ns2:places_nagpra,ns2:places_nagpra,places_nagpra.reportNote,Documents Consulted for Cultural Affiliation Research,Published report,Published report note,reportRefGroupList > reportRefGroup,reportNote,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common vCoordinates,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vCoordinates,Locality Information,"",Verbatim coords,"",vCoordinates,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vCoordinates,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vCoordinates,Locality Information,"",Verbatim coords,"",vCoordinates,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vLatitude,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vLatitude,Locality Information,"",Verbatim latitude,"",vLatitude,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vLatitude,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vLatitude,Locality Information,"",Verbatim latitude,"",vLatitude,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vLongitude,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vLongitude,Locality Information,"",Verbatim longitude,"",vLongitude,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vLongitude,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vLongitude,Locality Information,"",Verbatim longitude,"",vLongitude,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vCoordSys,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSys,Locality Information,"",Coordinate system,"",vCoordSys,string,n,n,n/a,option list: coordinateSystems,"altitude-depth, latitude-longitude, national-grid-reference, utm", +ohc_1-0-18_7-2 place ns2:places_common vCoordSys,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vCoordSys,Locality Information,"",Coordinate system,"",vCoordSys,string,n,n,n/a,option list: coordinateSystems,"altitude-depth, latitude-longitude, national-grid-reference, utm", +anthro_7-0-0 place ns2:places_common vSpatialReferenceSystem,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vSpatialReferenceSystem,Locality Information,"",Spatial ref system,"",vSpatialReferenceSystem,string,n,n,n/a,option list: spatialRefSystems,"epsg4267-nad27, epsg4269-nad83, epsg4326-wgs84, unknown", +ohc_1-0-18_7-2 place ns2:places_common vSpatialReferenceSystem,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vSpatialReferenceSystem,Locality Information,"",Spatial ref system,"",vSpatialReferenceSystem,string,n,n,n/a,option list: spatialRefSystems,"epsg4267-nad27, epsg4269-nad83, epsg4326-wgs84, unknown", +anthro_7-0-0 place ns2:places_common vElevation,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vElevation,Locality Information,"",Elevation,"",vElevation,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vElevation,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vElevation,Locality Information,"",Elevation,"",vElevation,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vDepth,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vDepth,Locality Information,"",Depth,"",vDepth,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vDepth,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vDepth,Locality Information,"",Depth,"",vDepth,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vDistanceAboveSurface,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vDistanceAboveSurface,Locality Information,"",Distance above surface,"",vDistanceAboveSurface,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vDistanceAboveSurface,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vDistanceAboveSurface,Locality Information,"",Distance above surface,"",vDistanceAboveSurface,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vUnitofMeasure,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vUnitofMeasure,Locality Information,"",Unit of measure,"",vUnitofMeasure,string,n,n,n/a,option list: localityUnits,"acres, centimeters, feet, hectares, inches, kilometers, meters, miles, millimeters, square-feet, square-meters, square-yards, stories", +ohc_1-0-18_7-2 place ns2:places_common vUnitofMeasure,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vUnitofMeasure,Locality Information,"",Unit of measure,"",vUnitofMeasure,string,n,n,n/a,option list: localityUnits,"acres, centimeters, feet, hectares, inches, kilometers, meters, miles, millimeters, square-feet, square-meters, square-yards, stories", +anthro_7-0-0 place ns2:places_common minElevationInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.minElevationInMeters,Locality Information,"",Min elevation (m),"",minElevationInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common minElevationInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.minElevationInMeters,Locality Information,"",Min elevation (m),"",minElevationInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common maxElevationInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.maxElevationInMeters,Locality Information,"",Max elevation (m),"",maxElevationInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common maxElevationInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.maxElevationInMeters,Locality Information,"",Max elevation (m),"",maxElevationInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common minDepthInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.minDepthInMeters,Locality Information,"",Min depth (m),"",minDepthInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common minDepthInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.minDepthInMeters,Locality Information,"",Min depth (m),"",minDepthInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common maxDepthInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.maxDepthInMeters,Locality Information,"",Max depth (m),"",maxDepthInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common maxDepthInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.maxDepthInMeters,Locality Information,"",Max depth (m),"",maxDepthInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common minDistanceAboveSurfaceInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.minDistanceAboveSurfaceInMeters,Locality Information,"",Min distance above surface (m),"",minDistanceAboveSurfaceInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common minDistanceAboveSurfaceInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.minDistanceAboveSurfaceInMeters,Locality Information,"",Min distance above surface (m),"",minDistanceAboveSurfaceInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common maxDistanceAboveSurfaceInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.maxDistanceAboveSurfaceInMeters,Locality Information,"",Max distance above surface (m),"",maxDistanceAboveSurfaceInMeters,float,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common maxDistanceAboveSurfaceInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.maxDistanceAboveSurfaceInMeters,Locality Information,"",Max distance above surface (m),"",maxDistanceAboveSurfaceInMeters,float,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vCoordSource,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSource,Locality Information,"",Coordinate source,"",vCoordSource,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vCoordSource,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vCoordSource,Locality Information,"",Coordinate source,"",vCoordSource,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common vCoordSourceRefId,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.vCoordSourceRefId,Locality Information,"",Coordinate source detail,"",vCoordSourceRefId,string,n,n,n/a,"","", +ohc_1-0-18_7-2 place ns2:places_common vCoordSourceRefId,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.vCoordSourceRefId,Locality Information,"",Coordinate source detail,"",vCoordSourceRefId,string,n,n,n/a,"","", +anthro_7-0-0 place ns2:places_common decimalLatitude,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.decimalLatitude,Georeference Information,Georeference,Georeference decimal latitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLatitude,float,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common decimalLatitude,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.decimalLatitude,Georeference Information,Georeference,Georeference decimal latitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLatitude,float,n,n,y,"","", +anthro_7-0-0 place ns2:places_common decimalLongitude,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.decimalLongitude,Georeference Information,Georeference,Georeference decimal longitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLongitude,float,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common decimalLongitude,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.decimalLongitude,Georeference Information,Georeference,Georeference decimal longitude,placeGeoRefGroupList > placeGeoRefGroup,decimalLongitude,float,n,n,y,"","", +anthro_7-0-0 place ns2:places_common geodeticDatum,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geodeticDatum,Georeference Information,Georeference,Georeference datum,placeGeoRefGroupList > placeGeoRefGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84", +ohc_1-0-18_7-2 place ns2:places_common geodeticDatum,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geodeticDatum,Georeference Information,Georeference,Georeference datum,placeGeoRefGroupList > placeGeoRefGroup,geodeticDatum,string,n,n,y,option list: geodeticDatums,"ADG66, NAD27, NAD83, NAD83&WGS84, Not Recorded, WGS84", +anthro_7-0-0 place ns2:places_common coordUncertaintyInMeters,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.coordUncertaintyInMeters,Georeference Information,Georeference,Georeference uncertainty (m),placeGeoRefGroupList > placeGeoRefGroup,coordUncertaintyInMeters,integer,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common coordUncertaintyInMeters,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.coordUncertaintyInMeters,Georeference Information,Georeference,Georeference uncertainty (m),placeGeoRefGroupList > placeGeoRefGroup,coordUncertaintyInMeters,integer,n,n,y,"","", +anthro_7-0-0 place ns2:places_common coordPrecision,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.coordPrecision,Georeference Information,Georeference,Georeference precision,placeGeoRefGroupList > placeGeoRefGroup,coordPrecision,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common coordPrecision,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.coordPrecision,Georeference Information,Georeference,Georeference precision,placeGeoRefGroupList > placeGeoRefGroup,coordPrecision,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common pointRadiusSpatialFit,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.pointRadiusSpatialFit,Georeference Information,Georeference,Georeference point radius spatial fit,placeGeoRefGroupList > placeGeoRefGroup,pointRadiusSpatialFit,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common pointRadiusSpatialFit,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.pointRadiusSpatialFit,Georeference Information,Georeference,Georeference point radius spatial fit,placeGeoRefGroupList > placeGeoRefGroup,pointRadiusSpatialFit,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common footprintWKT,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.footprintWKT,Georeference Information,Georeference,Georeference footprint WKT,placeGeoRefGroupList > placeGeoRefGroup,footprintWKT,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common footprintWKT,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.footprintWKT,Georeference Information,Georeference,Georeference footprint WKT,placeGeoRefGroupList > placeGeoRefGroup,footprintWKT,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common footprintSRS,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.footprintSRS,Georeference Information,Georeference,Georeference footprint SRS,placeGeoRefGroupList > placeGeoRefGroup,footprintSRS,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common footprintSRS,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.footprintSRS,Georeference Information,Georeference,Georeference footprint SRS,placeGeoRefGroupList > placeGeoRefGroup,footprintSRS,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common footprintSpatialFit,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.footprintSpatialFit,Georeference Information,Georeference,Georeference footprint spatial fit,placeGeoRefGroupList > placeGeoRefGroup,footprintSpatialFit,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common footprintSpatialFit,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.footprintSpatialFit,Georeference Information,Georeference,Georeference footprint spatial fit,placeGeoRefGroupList > placeGeoRefGroup,footprintSpatialFit,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common geoReferencedBy,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoReferencedBy,Georeference Information,Georeference,Georeferenced by,placeGeoRefGroupList > placeGeoRefGroup,geoReferencedBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 place ns2:places_common geoReferencedBy,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoReferencedBy,Georeference Information,Georeference,Georeferenced by,placeGeoRefGroupList > placeGeoRefGroup,geoReferencedBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 place ns2:places_common geoRefDateGroup,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefDateGroup,Georeference Information,Georeference,Georeference date,placeGeoRefGroupList > placeGeoRefGroup,geoRefDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common geoRefDateGroup,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefDateGroup,Georeference Information,Georeference,Georeference date,placeGeoRefGroupList > placeGeoRefGroup,geoRefDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 place ns2:places_common geoRefProtocol,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefProtocol,Georeference Information,Georeference,Georeference protocol,placeGeoRefGroupList > placeGeoRefGroup,geoRefProtocol,string,n,n,y,option list: geoRefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines", +ohc_1-0-18_7-2 place ns2:places_common geoRefProtocol,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefProtocol,Georeference Information,Georeference,Georeference protocol,placeGeoRefGroupList > placeGeoRefGroup,geoRefProtocol,string,n,n,y,option list: geoRefProtocols,"biogeomancer, chapman-wieczorek-2006-guide-best-practices-georeferencing, georeferencing-dummies, manis-herpnet-ornis-georeferencing-guidelines", +anthro_7-0-0 place ns2:places_common geoRefSource,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefSource,Georeference Information,Georeference,Georeference source,placeGeoRefGroupList > placeGeoRefGroup,geoRefSource,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common geoRefSource,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefSource,Georeference Information,Georeference,Georeference source,placeGeoRefGroupList > placeGeoRefGroup,geoRefSource,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common geoRefVerificationStatus,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefVerificationStatus,Georeference Information,Georeference,Georeference verification,placeGeoRefGroupList > placeGeoRefGroup,geoRefVerificationStatus,string,n,n,y,option list: geoRefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian", +ohc_1-0-18_7-2 place ns2:places_common geoRefVerificationStatus,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefVerificationStatus,Georeference Information,Georeference,Georeference verification,placeGeoRefGroupList > placeGeoRefGroup,geoRefVerificationStatus,string,n,n,y,option list: geoRefVerificationStatuses,"unverified, verified-contributor, verified-data-custodian", +anthro_7-0-0 place ns2:places_common geoRefRemarks,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefRemarks,Georeference Information,Georeference,Georeference remarks,placeGeoRefGroupList > placeGeoRefGroup,geoRefRemarks,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common geoRefRemarks,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefRemarks,Georeference Information,Georeference,Georeference remarks,placeGeoRefGroupList > placeGeoRefGroup,geoRefRemarks,string,n,n,y,"","", +anthro_7-0-0 place ns2:places_common geoRefPlaceName,anthro_7-0-0,place,ns2:places_common,ns2:places_common,places_common.geoRefPlaceName,Georeference Information,Georeference,Georeference place name,placeGeoRefGroupList > placeGeoRefGroup,geoRefPlaceName,string,n,n,y,"","", +ohc_1-0-18_7-2 place ns2:places_common geoRefPlaceName,ohc_1-0-18_7-2,place,ns2:places_common,ns2:places_common,places_common.geoRefPlaceName,Georeference Information,Georeference,Georeference place name,placeGeoRefGroupList > placeGeoRefGroup,geoRefPlaceName,string,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common transportReferenceNumber,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportReferenceNumber,Transport Information,"",Transport reference number,"",transportReferenceNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportReferenceNumber,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportReferenceNumber,Transport Information,"",Transport reference number,"",transportReferenceNumber,string,y,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportMethod,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportMethod,Transport Information,"",Transport method,"",transportMethod,string,n,n,n/a,option list: transportMethodTypes,"LOFO freight, cargo aircraft, combi aircraft, common carrier, exclusive-use truck, expedited use freight, mail, non-commercial carrier, ocean freight, passenger aircraft, shuttle service", +ohc_1-0-18_7-2 transport ns2:transports_common transportMethod,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportMethod,Transport Information,"",Transport method,"",transportMethod,string,n,n,n/a,option list: transportMethodTypes,"LOFO freight, cargo aircraft, combi aircraft, common carrier, exclusive-use truck, expedited use freight, mail, non-commercial carrier, ocean freight, passenger aircraft, shuttle service", +anthro_7-0-0 transport ns2:transports_common numberOfCrates,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.numberOfCrates,Transport Information,"",Number of crates/objects,"",numberOfCrates,integer,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common numberOfCrates,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.numberOfCrates,Transport Information,"",Number of crates/objects,"",numberOfCrates,integer,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transporter,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporter,Transport Information,Transporter,Transporter name,"",transporter,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common transporter,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transporter,Transport Information,Transporter,Transporter name,"",transporter,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 transport ns2:transports_common transporterContact,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContact,Transport Information,Transporter,Transporter contact,"",transporterContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common transporterContact,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContact,Transport Information,Transporter,Transporter contact,"",transporterContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 transport ns2:transports_common transporterContactNumber,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContactNumber,Transport Information,Transporter,Transporter contact number,"",transporterContactNumber,string,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transporterContactNumber,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transporterContactNumber,Transport Information,Transporter,Transporter contact number,"",transporterContactNumber,string,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportAuthorizer,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizer,Transport Information,Authorization,Transport authorizer,"",transportAuthorizer,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common transportAuthorizer,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizer,Transport Information,Authorization,Transport authorizer,"",transportAuthorizer,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 transport ns2:transports_common transportAuthorizationDate,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizationDate,Transport Information,Authorization,Authorization date,"",transportAuthorizationDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportAuthorizationDate,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportAuthorizationDate,Transport Information,Authorization,Authorization date,"",transportAuthorizationDate,date,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportTrackingNumber,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumber,Transport Information,Tracking number,Tracking number,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportTrackingNumber,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumber,Transport Information,Tracking number,Tracking number,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumber,string,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common transportTrackingNumberNote,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumberNote,Transport Information,Tracking number,Tracking number note,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumberNote,string,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportTrackingNumberNote,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportTrackingNumberNote,Transport Information,Tracking number,Tracking number note,transportTrackingNumberGroupList > transportTrackingNumberGroup,transportTrackingNumberNote,string,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common departurePoint,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.departurePoint,Transport Information,Departure,Departure point,"",departurePoint,string,n,n,n/a,authority: organization/local; authority: place/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common departurePoint,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.departurePoint,Transport Information,Departure,Departure point,"",departurePoint,string,n,n,n/a,authority: organization/local; authority: place/local,"", +anthro_7-0-0 transport ns2:transports_common transportDepartureDate,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureDate,Transport Information,Departure,Departure date,"",transportDepartureDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportDepartureDate,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureDate,Transport Information,Departure,Departure date,"",transportDepartureDate,date,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportDepartureTime,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureTime,Transport Information,Departure,Departure time,"",transportDepartureTime,string,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportDepartureTime,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportDepartureTime,Transport Information,Departure,Departure time,"",transportDepartureTime,string,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common destination,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.destination,Transport Information,Arrival,Arrival point,"",destination,string,n,n,n/a,authority: place/local; authority: organization/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common destination,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.destination,Transport Information,Arrival,Arrival point,"",destination,string,n,n,n/a,authority: place/local; authority: organization/local,"", +anthro_7-0-0 transport ns2:transports_common transportArrivalDate,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalDate,Transport Information,Arrival,Arrival date,"",transportArrivalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportArrivalDate,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalDate,Transport Information,Arrival,Arrival date,"",transportArrivalDate,date,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportArrivalTime,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalTime,Transport Information,Arrival,Arrival time,"",transportArrivalTime,string,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportArrivalTime,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportArrivalTime,Transport Information,Arrival,Arrival time,"",transportArrivalTime,string,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common courier,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.courier,Transport Information,Courier,Courier name,courierGroupList > courierGroup,courier,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common courier,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.courier,Transport Information,Courier,Courier name,courierGroupList > courierGroup,courier,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 transport ns2:transports_common courierContactNumber,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.courierContactNumber,Transport Information,Courier,Courier contact number,courierGroupList > courierGroup,courierContactNumber,string,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common courierContactNumber,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.courierContactNumber,Transport Information,Courier,Courier contact number,courierGroupList > courierGroup,courierContactNumber,string,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common transportRemarks,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportRemarks,Transport Information,"",Note,"",transportRemarks,string,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common transportRemarks,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportRemarks,Transport Information,"",Note,"",transportRemarks,string,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common transportCostType,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostType,Cost Information,"",Transport cost type,"",transportCostType,string,n,n,n/a,vocabulary: transportcosttype,"", +ohc_1-0-18_7-2 transport ns2:transports_common transportCostType,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostType,Cost Information,"",Transport cost type,"",transportCostType,string,n,n,n/a,vocabulary: transportcosttype,"", +anthro_7-0-0 transport ns2:transports_common transportCostResponsibleParty,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostResponsibleParty,Cost Information,"",Transport cost responsible party,"",transportCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"", +ohc_1-0-18_7-2 transport ns2:transports_common transportCostResponsibleParty,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.transportCostResponsibleParty,Cost Information,"",Transport cost responsible party,"",transportCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"", +anthro_7-0-0 transport ns2:transports_common insuranceCostResponsibleParty,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.insuranceCostResponsibleParty,Cost Information,"",Insurance/indemnity cost responsible party,"",insuranceCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"", +ohc_1-0-18_7-2 transport ns2:transports_common insuranceCostResponsibleParty,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.insuranceCostResponsibleParty,Cost Information,"",Insurance/indemnity cost responsible party,"",insuranceCostResponsibleParty,string,n,n,n/a,vocabulary: transportresponsibleparty,"", +anthro_7-0-0 transport ns2:transports_common finalShippingCostCurrency,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostCurrency,Cost Information,Final shipping cost,Final shipping cost currency,"",finalShippingCostCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 transport ns2:transports_common finalShippingCostCurrency,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostCurrency,Cost Information,Final shipping cost,Final shipping cost currency,"",finalShippingCostCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 transport ns2:transports_common finalShippingCostValue,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostValue,Cost Information,Final shipping cost,Final shipping cost value,"",finalShippingCostValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common finalShippingCostValue,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.finalShippingCostValue,Cost Information,Final shipping cost,Final shipping cost value,"",finalShippingCostValue,float,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common customsBroker,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBroker,Cost Information,Customs broker,Customs broker name,"",customsBroker,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common customsBroker,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBroker,Cost Information,Customs broker,Customs broker name,"",customsBroker,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 transport ns2:transports_common customsBrokerContact,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBrokerContact,Cost Information,Customs broker,Customs broker contact,"",customsBrokerContact,string,n,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common customsBrokerContact,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsBrokerContact,Cost Information,Customs broker,Customs broker contact,"",customsBrokerContact,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 transport ns2:transports_common customsDeclaredValueCurrency,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueCurrency,Cost Information,Declared value for customs,Declared value for customs currency,"",customsDeclaredValueCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 transport ns2:transports_common customsDeclaredValueCurrency,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueCurrency,Cost Information,Declared value for customs,Declared value for customs currency,"",customsDeclaredValueCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 transport ns2:transports_common customsDeclaredValueAmount,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueAmount,Cost Information,Declared value for customs,Declared value for customs amount,"",customsDeclaredValueAmount,float,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common customsDeclaredValueAmount,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsDeclaredValueAmount,Cost Information,Declared value for customs,Declared value for customs amount,"",customsDeclaredValueAmount,float,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common customsFeeCurrency,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeCurrency,Cost Information,Customs fee,Customs fee currency,"",customsFeeCurrency,string,n,n,n/a,vocabulary: currency,"", +ohc_1-0-18_7-2 transport ns2:transports_common customsFeeCurrency,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeCurrency,Cost Information,Customs fee,Customs fee currency,"",customsFeeCurrency,string,n,n,n/a,vocabulary: currency,"", +anthro_7-0-0 transport ns2:transports_common customsFeeValue,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeValue,Cost Information,Customs fee,Customs fee value,"",customsFeeValue,float,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common customsFeeValue,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeValue,Cost Information,Customs fee,Customs fee value,"",customsFeeValue,float,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common customsFeeNote,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeNote,Cost Information,Customs fee,Customs fee note,"",customsFeeNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 transport ns2:transports_common customsFeeNote,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.customsFeeNote,Cost Information,Customs fee,Customs fee note,"",customsFeeNote,string,n,n,n/a,"","", +anthro_7-0-0 transport ns2:transports_common additionalCostsType,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsType,Cost Information,Additional cost,Additional cost type,additionalCostsGroupList > additionalCostsGroup,additionalCostsType,string,n,n,y,vocabulary: transportadditionalcosttype,"", +ohc_1-0-18_7-2 transport ns2:transports_common additionalCostsType,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsType,Cost Information,Additional cost,Additional cost type,additionalCostsGroupList > additionalCostsGroup,additionalCostsType,string,n,n,y,vocabulary: transportadditionalcosttype,"", +anthro_7-0-0 transport ns2:transports_common additionalCostsCurrency,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsCurrency,Cost Information,Additional cost,Additional cost currency,additionalCostsGroupList > additionalCostsGroup,additionalCostsCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 transport ns2:transports_common additionalCostsCurrency,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsCurrency,Cost Information,Additional cost,Additional cost currency,additionalCostsGroupList > additionalCostsGroup,additionalCostsCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 transport ns2:transports_common additionalCostsValue,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsValue,Cost Information,Additional cost,Additional cost value,additionalCostsGroupList > additionalCostsGroup,additionalCostsValue,float,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common additionalCostsValue,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.additionalCostsValue,Cost Information,Additional cost,Additional cost value,additionalCostsGroupList > additionalCostsGroup,additionalCostsValue,float,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common shippingQuoteProvider,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteProvider,Cost Information,"",Shipping quote provider,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteProvider,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 transport ns2:transports_common shippingQuoteProvider,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteProvider,Cost Information,"",Shipping quote provider,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteProvider,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 transport ns2:transports_common shippingQuoteCurrency,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteCurrency,Cost Information,"",Shipping quote currency,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 transport ns2:transports_common shippingQuoteCurrency,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteCurrency,Cost Information,"",Shipping quote currency,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 transport ns2:transports_common shippingQuoteValue,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteValue,Cost Information,"",Shipping quote value,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteValue,float,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common shippingQuoteValue,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteValue,Cost Information,"",Shipping quote value,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteValue,float,n,n,y,"","", +anthro_7-0-0 transport ns2:transports_common shippingQuoteDate,anthro_7-0-0,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteDate,Cost Information,"",Shipping quote date,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteDate,date,n,n,y,"","", +ohc_1-0-18_7-2 transport ns2:transports_common shippingQuoteDate,ohc_1-0-18_7-2,transport,ns2:transports_common,ns2:transports_common,transports_common.shippingQuoteDate,Cost Information,"",Shipping quote date,shippingQuoteGroupList > shippingQuoteGroup,shippingQuoteDate,date,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common referenceNumber,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.referenceNumber,Use of Collections Information,"",Reference number,"",referenceNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common referenceNumber,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.referenceNumber,Use of Collections Information,"",Reference number,"",referenceNumber,string,y,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common method,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.method,Use of Collections Information,"",Method,methodList,method,string,n,y,n,vocabulary: uocmethods,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common method,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.method,Use of Collections Information,"",Method,methodList,method,string,n,y,n,vocabulary: uocmethods,"", +anthro_7-0-0 uoc ns2:uoc_common collectionType,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.collectionType,Use of Collections Information,"",Collection type,collectionTypeList,collectionType,string,n,y,n,vocabulary: uoccollectiontypes,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common collectionType,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.collectionType,Use of Collections Information,"",Collection type,collectionTypeList,collectionType,string,n,y,n,vocabulary: uoccollectiontypes,"", +anthro_7-0-0 uoc ns2:uoc_common projectId,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectId,Use of Collections Information,"",Project ID,"",projectId,string,n,n,n/a,vocabulary: uocprojectid,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common projectId,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectId,Use of Collections Information,"",Project ID,"",projectId,string,n,n,n/a,vocabulary: uocprojectid,"", +anthro_7-0-0 uoc ns2:uoc_common subcollection,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.subcollection,Use of Collections Information,"",Subcollection,"",subcollection,string,n,n,n/a,vocabulary: uocsubcollections,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common subcollection,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.subcollection,Use of Collections Information,"",Subcollection,"",subcollection,string,n,n,n/a,vocabulary: uocsubcollections,"", +anthro_7-0-0 uoc ns2:uoc_common materialType,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.materialType,Use of Collections Information,"",Material type,materialTypeList,materialType,string,n,y,n,vocabulary: uocmaterialtypes,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common materialType,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.materialType,Use of Collections Information,"",Material type,materialTypeList,materialType,string,n,y,n,vocabulary: uocmaterialtypes,"", +anthro_7-0-0 uoc ns2:uoc_common user,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.user,Use of Collections Information,User,User name,userGroupList > userGroup,user,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common user,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.user,Use of Collections Information,User,User name,userGroupList > userGroup,user,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 uoc ns2:uoc_common userUocRole,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userUocRole,Use of Collections Information,User,User role,userGroupList > userGroup,userUocRole,string,n,n,y,vocabulary: uocuserroles,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common userUocRole,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userUocRole,Use of Collections Information,User,User role,userGroupList > userGroup,userUocRole,string,n,n,y,vocabulary: uocuserroles,"", +anthro_7-0-0 uoc ns2:uoc_common userInstitution,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitution,Use of Collections Information,User,User institution,userGroupList > userGroup,userInstitution,string,n,n,y,authority: organization/local,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common userInstitution,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitution,Use of Collections Information,User,User institution,userGroupList > userGroup,userInstitution,string,n,n,y,authority: organization/local,"", +anthro_7-0-0 uoc ns2:uoc_common userInstitutionRole,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitutionRole,Use of Collections Information,User,User institution role,userGroupList > userGroup,userInstitutionRole,string,n,n,y,vocabulary: uocusertypes,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common userInstitutionRole,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.userInstitutionRole,Use of Collections Information,User,User institution role,userGroupList > userGroup,userInstitutionRole,string,n,n,y,vocabulary: uocusertypes,"", +anthro_7-0-0 uoc ns2:uoc_common title,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.title,Use of Collections Information,"",Title,"",title,string,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common title,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.title,Use of Collections Information,"",Title,"",title,string,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common dateRequested,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateRequested,Use of Collections Information,"",Date requested,"",dateRequested,date,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common dateRequested,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateRequested,Use of Collections Information,"",Date requested,"",dateRequested,date,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common dateCompleted,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateCompleted,Use of Collections Information,"",Date completed,"",dateCompleted,date,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common dateCompleted,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.dateCompleted,Use of Collections Information,"",Date completed,"",dateCompleted,date,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common occasion,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.occasion,Use of Collections Information,"",Occasion,occasionList,occasion,string,n,y,n,authority: concept/occasion,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common occasion,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.occasion,Use of Collections Information,"",Occasion,occasionList,occasion,string,n,y,n,authority: concept/occasion,"", +anthro_7-0-0 uoc ns2:uoc_common projectDescription,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectDescription,Use of Collections Information,"",Project description,"",projectDescription,string,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common projectDescription,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.projectDescription,Use of Collections Information,"",Project description,"",projectDescription,string,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common authorizedBy,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizedBy,Use of Collections Information,Authorization,Authorized by,authorizationGroupList > authorizationGroup,authorizedBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common authorizedBy,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizedBy,Use of Collections Information,Authorization,Authorized by,authorizationGroupList > authorizationGroup,authorizedBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 uoc ns2:uoc_common authorizationDate,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationDate,Use of Collections Information,Authorization,Authorization date,authorizationGroupList > authorizationGroup,authorizationDate,date,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common authorizationDate,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationDate,Use of Collections Information,Authorization,Authorization date,authorizationGroupList > authorizationGroup,authorizationDate,date,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common authorizationStatus,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationStatus,Use of Collections Information,Authorization,Authorization status,authorizationGroupList > authorizationGroup,authorizationStatus,string,n,n,y,vocabulary: uocauthorizationstatuses,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common authorizationStatus,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationStatus,Use of Collections Information,Authorization,Authorization status,authorizationGroupList > authorizationGroup,authorizationStatus,string,n,n,y,vocabulary: uocauthorizationstatuses,"", +anthro_7-0-0 uoc ns2:uoc_common authorizationNote,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationNote,Use of Collections Information,Authorization,Authorization note,authorizationGroupList > authorizationGroup,authorizationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common authorizationNote,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.authorizationNote,Use of Collections Information,Authorization,Authorization note,authorizationGroupList > authorizationGroup,authorizationNote,string,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common useDate,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDate,Use of Collections Information,Start/ongoing date,Start/ongoing date,useDateGroupList > useDateGroup,useDate,date,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common useDate,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDate,Use of Collections Information,Start/ongoing date,Start/ongoing date,useDateGroupList > useDateGroup,useDate,date,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common useDateTimeNote,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateTimeNote,Use of Collections Information,Start/ongoing date,Start/ongoing date time note,useDateGroupList > useDateGroup,useDateTimeNote,string,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common useDateTimeNote,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateTimeNote,Use of Collections Information,Start/ongoing date,Start/ongoing date time note,useDateGroupList > useDateGroup,useDateTimeNote,string,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common useDateNumberOfVisitors,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateNumberOfVisitors,Use of Collections Information,Start/ongoing date,Start/ongoing date no. of visitors,useDateGroupList > useDateGroup,useDateNumberOfVisitors,integer,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common useDateNumberOfVisitors,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateNumberOfVisitors,Use of Collections Information,Start/ongoing date,Start/ongoing date no. of visitors,useDateGroupList > useDateGroup,useDateNumberOfVisitors,integer,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common useDateHoursSpent,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateHoursSpent,Use of Collections Information,Start/ongoing date,Start/ongoing date hours spent,useDateGroupList > useDateGroup,useDateHoursSpent,float,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common useDateHoursSpent,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateHoursSpent,Use of Collections Information,Start/ongoing date,Start/ongoing date hours spent,useDateGroupList > useDateGroup,useDateHoursSpent,float,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common useDateVisitorNote,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateVisitorNote,Use of Collections Information,Start/ongoing date,Start/ongoing date visitor note,useDateGroupList > useDateGroup,useDateVisitorNote,string,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common useDateVisitorNote,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.useDateVisitorNote,Use of Collections Information,Start/ongoing date,Start/ongoing date visitor note,useDateGroupList > useDateGroup,useDateVisitorNote,string,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common endDate,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.endDate,Use of Collections Information,"",End date,"",endDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common endDate,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.endDate,Use of Collections Information,"",End date,"",endDate,date,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common staffName,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffName,Use of Collections Information,Staff,Staff name,staffGroupList > staffGroup,staffName,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common staffName,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffName,Use of Collections Information,Staff,Staff name,staffGroupList > staffGroup,staffName,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 uoc ns2:uoc_common staffRole,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffRole,Use of Collections Information,Staff,Staff role,staffGroupList > staffGroup,staffRole,string,n,n,y,vocabulary: uocstaffroles,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common staffRole,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffRole,Use of Collections Information,Staff,Staff role,staffGroupList > staffGroup,staffRole,string,n,n,y,vocabulary: uocstaffroles,"", +anthro_7-0-0 uoc ns2:uoc_common staffHours,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffHours,Use of Collections Information,Staff,Staff hours spent,staffGroupList > staffGroup,staffHours,float,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common staffHours,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffHours,Use of Collections Information,Staff,Staff hours spent,staffGroupList > staffGroup,staffHours,float,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common staffNote,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffNote,Use of Collections Information,Staff,Staff note,staffGroupList > staffGroup,staffNote,string,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common staffNote,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.staffNote,Use of Collections Information,Staff,Staff note,staffGroupList > staffGroup,staffNote,string,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common location,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.location,Use of Collections Information,"",Location,locationList,location,string,n,y,n,authority: organization/local; authority: place/local; authority: location/local,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common location,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.location,Use of Collections Information,"",Location,locationList,location,string,n,y,n,authority: organization/local; authority: place/local; authority: location/local,"", +anthro_7-0-0 uoc ns2:uoc_common feeCurrency,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeCurrency,Use of Collections Information,Fee charged,Fee currency,feeGroupList > feeGroup,feeCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 uoc ns2:uoc_common feeCurrency,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeCurrency,Use of Collections Information,Fee charged,Fee currency,feeGroupList > feeGroup,feeCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 uoc ns2:uoc_common feeValue,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeValue,Use of Collections Information,Fee charged,Fee value,feeGroupList > feeGroup,feeValue,float,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common feeValue,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeValue,Use of Collections Information,Fee charged,Fee value,feeGroupList > feeGroup,feeValue,float,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common feePaid,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feePaid,Use of Collections Information,Fee charged,Fee paid,feeGroupList > feeGroup,feePaid,boolean,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common feePaid,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feePaid,Use of Collections Information,Fee charged,Fee paid,feeGroupList > feeGroup,feePaid,boolean,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common feeNote,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeNote,Use of Collections Information,Fee charged,Fee note,feeGroupList > feeGroup,feeNote,string,n,n,y,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common feeNote,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.feeNote,Use of Collections Information,Fee charged,Fee note,feeGroupList > feeGroup,feeNote,string,n,n,y,"","", +anthro_7-0-0 uoc ns2:uoc_common note,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.note,Use of Collections Information,"",Note,"",note,string,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common note,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.note,Use of Collections Information,"",Note,"",note,string,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common provisos,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.provisos,Use of Collections Information,"",Provisos,"",provisos,string,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common provisos,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.provisos,Use of Collections Information,"",Provisos,"",provisos,string,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common obligationsFulfilled,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.obligationsFulfilled,Use of Collections Information,"",Obligations fulfilled,"",obligationsFulfilled,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common obligationsFulfilled,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.obligationsFulfilled,Use of Collections Information,"",Obligations fulfilled,"",obligationsFulfilled,boolean,n,n,n/a,"","", +anthro_7-0-0 uoc ns2:uoc_common result,anthro_7-0-0,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.result,Use of Collections Information,"",Result,"",result,string,n,n,n/a,"","", +ohc_1-0-18_7-2 uoc ns2:uoc_common result,ohc_1-0-18_7-2,uoc,ns2:uoc_common,ns2:uoc_common,uoc_common.result,Use of Collections Information,"",Result,"",result,string,n,n,n/a,"","", +anthro_7-0-0 valuation ns2:valuationcontrols_common valuationcontrolRefNumber,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valuationcontrolRefNumber,Object Valuation Information,"",Reference number,"",valuationcontrolRefNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valuationcontrolRefNumber,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valuationcontrolRefNumber,Object Valuation Information,"",Reference number,"",valuationcontrolRefNumber,string,y,n,n/a,"","", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueCurrency,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueCurrency,Object Valuation Information,Amount,Amount currency,valueAmountsList > valueAmounts,valueCurrency,string,n,n,y,vocabulary: currency,"", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueCurrency,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueCurrency,Object Valuation Information,Amount,Amount currency,valueAmountsList > valueAmounts,valueCurrency,string,n,n,y,vocabulary: currency,"", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueAmount,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueAmount,Object Valuation Information,Amount,Amount value,valueAmountsList > valueAmounts,valueAmount,float,n,n,y,"","", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueAmount,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueAmount,Object Valuation Information,Amount,Amount value,valueAmountsList > valueAmounts,valueAmount,float,n,n,y,"","", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueDate,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueDate,Object Valuation Information,"",Date,"",valueDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueDate,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueDate,Object Valuation Information,"",Date,"",valueDate,date,n,n,n/a,"","", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueRenewalDate,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueRenewalDate,Object Valuation Information,"",Renewal date,"",valueRenewalDate,date,n,n,n/a,"","", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueRenewalDate,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueRenewalDate,Object Valuation Information,"",Renewal date,"",valueRenewalDate,date,n,n,n/a,"","", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueSource,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueSource,Object Valuation Information,"",Source,"",valueSource,string,n,n,n/a,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueSource,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueSource,Object Valuation Information,"",Source,"",valueSource,string,n,n,n/a,authority: person/local; authority: organization/local,"", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueType,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueType,Object Valuation Information,"",Type,"",valueType,string,n,n,n/a,option list: valueTypes,"Current Value, Original Value, Replacement Value", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueType,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueType,Object Valuation Information,"",Type,"",valueType,string,n,n,n/a,option list: valueTypes,"Current Value, Original Value, Replacement Value", +anthro_7-0-0 valuation ns2:valuationcontrols_common valueNote,anthro_7-0-0,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueNote,Object Valuation Information,"",Note,"",valueNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 valuation ns2:valuationcontrols_common valueNote,ohc_1-0-18_7-2,valuation,ns2:valuationcontrols_common,ns2:valuationcontrols_common,valuationcontrols_common.valueNote,Object Valuation Information,"",Note,"",valueNote,string,n,n,n/a,"","", +anthro_7-0-0 work ns2:works_common termDisplayName,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termDisplayName,Work Information,Term,Term display name,workTermGroupList > workTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termDisplayName,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termDisplayName,Work Information,Term,Term display name,workTermGroupList > workTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 work ns2:works_common termName,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termName,Work Information,Term,Term name,workTermGroupList > workTermGroup,termName,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termName,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termName,Work Information,Term,Term name,workTermGroupList > workTermGroup,termName,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termQualifier,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termQualifier,Work Information,Term,Term qualifier,workTermGroupList > workTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termQualifier,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termQualifier,Work Information,Term,Term qualifier,workTermGroupList > workTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termStatus,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termStatus,Work Information,Term,Term status,workTermGroupList > workTermGroup,termStatus,string,n,n,y,option list: workTermStatuses,"complete, inprogress, quickaddedneedsattention", +ohc_1-0-18_7-2 work ns2:works_common termStatus,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termStatus,Work Information,Term,Term status,workTermGroupList > workTermGroup,termStatus,string,n,n,y,option list: workTermStatuses,"complete, inprogress, quickaddedneedsattention", +anthro_7-0-0 work ns2:works_common termType,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termType,Work Information,Term,Term type,workTermGroupList > workTermGroup,termType,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termType,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termType,Work Information,Term,Term type,workTermGroupList > workTermGroup,termType,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termFlag,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termFlag,Work Information,Term,Term flag,workTermGroupList > workTermGroup,termFlag,string,n,n,y,vocabulary: worktermflag,"", +ohc_1-0-18_7-2 work ns2:works_common termFlag,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termFlag,Work Information,Term,Term flag,workTermGroupList > workTermGroup,termFlag,string,n,n,y,vocabulary: worktermflag,"", +anthro_7-0-0 work ns2:works_common termLanguage,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termLanguage,Work Information,Term,Term language,workTermGroupList > workTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 work ns2:works_common termLanguage,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termLanguage,Work Information,Term,Term language,workTermGroupList > workTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 work ns2:works_common termPrefForLang,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termPrefForLang,Work Information,Term,Term preferred for lang,workTermGroupList > workTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termPrefForLang,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termPrefForLang,Work Information,Term,Term preferred for lang,workTermGroupList > workTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termSource,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termSource,Work Information,Term > Source,Term source name,workTermGroupList > workTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 work ns2:works_common termSource,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termSource,Work Information,Term > Source,Term source name,workTermGroupList > workTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 work ns2:works_common termSourceDetail,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termSourceDetail,Work Information,Term > Source,Term source detail,workTermGroupList > workTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termSourceDetail,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termSourceDetail,Work Information,Term > Source,Term source detail,workTermGroupList > workTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termSourceID,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termSourceID,Work Information,Term > Source,Term source ID,workTermGroupList > workTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termSourceID,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termSourceID,Work Information,Term > Source,Term source ID,workTermGroupList > workTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common termSourceNote,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.termSourceNote,Work Information,Term > Source,Term source note,workTermGroupList > workTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 work ns2:works_common termSourceNote,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.termSourceNote,Work Information,Term > Source,Term source note,workTermGroupList > workTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 work ns2:works_common workType,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.workType,Work Information,"",Work type,"",workType,string,n,n,n/a,vocabulary: worktype,"", +ohc_1-0-18_7-2 work ns2:works_common workType,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.workType,Work Information,"",Work type,"",workType,string,n,n,n/a,vocabulary: worktype,"", +anthro_7-0-0 work ns2:works_common workDateGroup,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.workDateGroup,Work Information,"",Work date,workDateGroupList,workDateGroup,structured date group,n,y,n,"","", +ohc_1-0-18_7-2 work ns2:works_common workDateGroup,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.workDateGroup,Work Information,"",Work date,workDateGroupList,workDateGroup,structured date group,n,y,n,"","", +anthro_7-0-0 work ns2:works_common workHistoryNote,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.workHistoryNote,Work Information,"",History note,"",workHistoryNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 work ns2:works_common workHistoryNote,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.workHistoryNote,Work Information,"",History note,"",workHistoryNote,string,n,n,n/a,"","", +anthro_7-0-0 work ns2:works_common creator,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.creator,Work Information,Creator,Creator name,creatorGroupList > creatorGroup,creator,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 work ns2:works_common creator,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.creator,Work Information,Creator,Creator name,creatorGroupList > creatorGroup,creator,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 work ns2:works_common creatorType,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.creatorType,Work Information,Creator,Creator type,creatorGroupList > creatorGroup,creatorType,string,n,n,y,vocabulary: workcreatortype,"", +ohc_1-0-18_7-2 work ns2:works_common creatorType,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.creatorType,Work Information,Creator,Creator type,creatorGroupList > creatorGroup,creatorType,string,n,n,y,vocabulary: workcreatortype,"", +anthro_7-0-0 work ns2:works_common publisher,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.publisher,Work Information,Publisher,Publisher name,publisherGroupList > publisherGroup,publisher,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 work ns2:works_common publisher,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.publisher,Work Information,Publisher,Publisher name,publisherGroupList > publisherGroup,publisher,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 work ns2:works_common publisherType,anthro_7-0-0,work,ns2:works_common,ns2:works_common,works_common.publisherType,Work Information,Publisher,Publisher type,publisherGroupList > publisherGroup,publisherType,string,n,n,y,vocabulary: workpublishertype,"", +ohc_1-0-18_7-2 work ns2:works_common publisherType,ohc_1-0-18_7-2,work,ns2:works_common,ns2:works_common,works_common.publisherType,Work Information,Publisher,Publisher type,publisherGroupList > publisherGroup,publisherType,string,n,n,y,vocabulary: workpublishertype,"", +anthro_7-0-0 work ext.address addressPlace1,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressPlace1,Work Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","", +ohc_1-0-18_7-2 work ext.address addressPlace1,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressPlace1,Work Information,Address,Address line 1,addrGroupList > addrGroup,addressPlace1,string,n,n,y,"","", +anthro_7-0-0 work ext.address addressPlace2,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressPlace2,Work Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","", +ohc_1-0-18_7-2 work ext.address addressPlace2,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressPlace2,Work Information,Address,Address line 2,addrGroupList > addrGroup,addressPlace2,string,n,n,y,"","", +anthro_7-0-0 work ext.address addressMunicipality,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressMunicipality,Work Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 work ext.address addressMunicipality,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressMunicipality,Work Information,Address,Address municipality,addrGroupList > addrGroup,addressMunicipality,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 work ext.address addressStateOrProvince,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressStateOrProvince,Work Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 work ext.address addressStateOrProvince,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressStateOrProvince,Work Information,Address,Address state/province,addrGroupList > addrGroup,addressStateOrProvince,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 work ext.address addressPostCode,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressPostCode,Work Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","", +ohc_1-0-18_7-2 work ext.address addressPostCode,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressPostCode,Work Information,Address,Address postal code,addrGroupList > addrGroup,addressPostCode,string,n,n,y,"","", +anthro_7-0-0 work ext.address addressCountry,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressCountry,Work Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"", +ohc_1-0-18_7-2 work ext.address addressCountry,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressCountry,Work Information,Address,Address country,addrGroupList > addrGroup,addressCountry,string,n,n,y,authority: place/local; authority: place/tgn,"", +anthro_7-0-0 work ext.address addressType,anthro_7-0-0,work,ns2:works_common,ext.address,ext.address.addressType,Work Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"", +ohc_1-0-18_7-2 work ext.address addressType,ohc_1-0-18_7-2,work,ns2:works_common,ext.address,ext.address.addressType,Work Information,Address,Address type,addrGroupList > addrGroup,addressType,string,n,n,y,vocabulary: addresstype,"", +anthro_7-0-0 osteology ns2:osteology_common InventoryID,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryID,Osteology Information,"",Inventory ID,"",InventoryID,string,y,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common InventoryID,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryID,Osteology Information,"",Inventory ID,"",InventoryID,string,y,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateVerbatim,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateVerbatim,Osteology Information,Age estimate,Age estimate verbatim,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateVerbatim,string,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateVerbatim,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateVerbatim,Osteology Information,Age estimate,Age estimate verbatim,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateVerbatim,string,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateLower,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateLower,Osteology Information,Age estimate,Age estimate lower,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateLower,float,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateLower,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateLower,Osteology Information,Age estimate,Age estimate lower,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateLower,float,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateUpper,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateUpper,Osteology Information,Age estimate,Age estimate upper,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateUpper,float,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateUpper,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateUpper,Osteology Information,Age estimate,Age estimate upper,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateUpper,float,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateDateGroup,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateDateGroup,Osteology Information,Age estimate,Age estimate date,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateDateGroup,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateDateGroup,Osteology Information,Age estimate,Age estimate date,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateAnalyst,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateAnalyst,Osteology Information,Age estimate,Age estimate analyst,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateAnalyst,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateAnalyst,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateAnalyst,Osteology Information,Age estimate,Age estimate analyst,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateAnalyst,string,n,n,y,authority: person/local,"", +anthro_7-0-0 osteology ns2:osteology_common osteoAgeEstimateNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateNote,Osteology Information,Age estimate,Age estimate note,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateNote,string,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common osteoAgeEstimateNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.osteoAgeEstimateNote,Osteology Information,Age estimate,Age estimate note,osteoAgeEstimateGroupList > osteoAgeEstimateGroup,osteoAgeEstimateNote,string,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common sexDetermination,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDetermination,Osteology Information,Sex determination,Sex determination,sexDeterminationGroupList > sexDeterminationGroup,sexDetermination,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown", +ohc_1-0-18_7-2 osteology ns2:osteology_common sexDetermination,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDetermination,Osteology Information,Sex determination,Sex determination,sexDeterminationGroupList > sexDeterminationGroup,sexDetermination,string,n,n,y,option list: sexDeterminations,"Female, Indeterminate, Male, Possibly female, Possibly male, Probably female, Probably male, Unknown", +anthro_7-0-0 osteology ns2:osteology_common sexDeterminationDateGroup,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationDateGroup,Osteology Information,Sex determination,Sex determination date,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common sexDeterminationDateGroup,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationDateGroup,Osteology Information,Sex determination,Sex determination date,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common sexDeterminationAnalyst,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationAnalyst,Osteology Information,Sex determination,Sex determination analyst,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationAnalyst,string,n,n,y,authority: person/local,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common sexDeterminationAnalyst,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationAnalyst,Osteology Information,Sex determination,Sex determination analyst,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationAnalyst,string,n,n,y,authority: person/local,"", +anthro_7-0-0 osteology ns2:osteology_common sexDeterminationNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationNote,Osteology Information,Sex determination,Sex determination note,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common sexDeterminationNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.sexDeterminationNote,Osteology Information,Sex determination,Sex determination note,sexDeterminationGroupList > sexDeterminationGroup,sexDeterminationNote,string,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_common completeness,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completeness,Osteology Information,Completeness,Completeness level,"",completeness,string,n,n,n/a,vocabulary: osteocompleteness,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common completeness,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completeness,Osteology Information,Completeness,Completeness level,"",completeness,string,n,n,n/a,vocabulary: osteocompleteness,"", +anthro_7-0-0 osteology ns2:osteology_common completenessNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completenessNote,Osteology Information,Completeness,Completeness note,"",completenessNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common completenessNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.completenessNote,Osteology Information,Completeness,Completeness note,"",completenessNote,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common molarsPresent,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.molarsPresent,Osteology Information,Dentition,Molars present,"",molarsPresent,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common molarsPresent,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.molarsPresent,Osteology Information,Dentition,Molars present,"",molarsPresent,boolean,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common dentitionScore,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionScore,Osteology Information,Dentition,Dentition score,"",dentitionScore,string,n,n,n/a,vocabulary: dentitionscore,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common dentitionScore,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionScore,Osteology Information,Dentition,Dentition score,"",dentitionScore,string,n,n,n/a,vocabulary: dentitionscore,"", +anthro_7-0-0 osteology ns2:osteology_common dentitionNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionNote,Osteology Information,Dentition,Dentition note,"",dentitionNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common dentitionNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.dentitionNote,Osteology Information,Dentition,Dentition note,"",dentitionNote,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common mortuaryTreatment,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatment,Osteology Information,Mortuary treatment,Mortuary treatment,"",mortuaryTreatment,string,n,n,n/a,vocabulary: mortuarytreatment,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common mortuaryTreatment,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatment,Osteology Information,Mortuary treatment,Mortuary treatment,"",mortuaryTreatment,string,n,n,n/a,vocabulary: mortuarytreatment,"", +anthro_7-0-0 osteology ns2:osteology_common mortuaryTreatmentNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatmentNote,Osteology Information,Mortuary treatment,Mortuary treatment note,"",mortuaryTreatmentNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common mortuaryTreatmentNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.mortuaryTreatmentNote,Osteology Information,Mortuary treatment,Mortuary treatment note,"",mortuaryTreatmentNote,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common behrensmeyerSingleLower,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerSingleLower,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Single/lower,"",behrensmeyerSingleLower,string,n,n,n/a,vocabulary: behrensmeyer,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common behrensmeyerSingleLower,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerSingleLower,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Single/lower,"",behrensmeyerSingleLower,string,n,n,n/a,vocabulary: behrensmeyer,"", +anthro_7-0-0 osteology ns2:osteology_common behrensmeyerUpper,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerUpper,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Upper,"",behrensmeyerUpper,string,n,n,n/a,vocabulary: behrensmeyer,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common behrensmeyerUpper,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.behrensmeyerUpper,Osteology Information,Behrensmeyer stage,Behrensmeyer stage - Upper,"",behrensmeyerUpper,string,n,n,n/a,vocabulary: behrensmeyer,"", +anthro_7-0-0 osteology ns2:osteology_common NotesOnElementInventory,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.NotesOnElementInventory,Osteology Information,"",Inventory note,"",NotesOnElementInventory,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common NotesOnElementInventory,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.NotesOnElementInventory,Osteology Information,"",Inventory note,"",NotesOnElementInventory,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common pathologyNote,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.pathologyNote,Osteology Information,"",General pathology and trauma note,"",pathologyNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common pathologyNote,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.pathologyNote,Osteology Information,"",General pathology and trauma note,"",pathologyNote,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common InventoryIsComplete,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryIsComplete,Osteology Information,"",Inventory complete,"",InventoryIsComplete,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common InventoryIsComplete,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.InventoryIsComplete,Osteology Information,"",Inventory complete,"",InventoryIsComplete,boolean,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_common inventoryAnalyst,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryAnalyst,Osteology Information,"",Inventory analyst,"",inventoryAnalyst,string,y,n,n/a,authority: person/local,"", +ohc_1-0-18_7-2 osteology ns2:osteology_common inventoryAnalyst,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryAnalyst,Osteology Information,"",Inventory analyst,"",inventoryAnalyst,string,n,n,n/a,authority: person/local,"", +anthro_7-0-0 osteology ns2:osteology_common inventoryDate,anthro_7-0-0,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryDate,Osteology Information,"",Inventory date,"",inventoryDate,date,y,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_common inventoryDate,ohc_1-0-18_7-2,osteology,ns2:osteology_common,ns2:osteology_common,osteology_common.inventoryDate,Osteology Information,"",Inventory date,"",inventoryDate,date,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_DentalPathology,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_DentalPathology,Osteology Information,"",Dental pathology (incl. alveolar),"",Notes_DentalPathology,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_DentalPathology,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_DentalPathology,Osteology Information,"",Dental pathology (incl. alveolar),"",Notes_DentalPathology,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_CranialPathology,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CranialPathology,Osteology Information,"",Cranial bony pathology,"",Notes_CranialPathology,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_CranialPathology,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CranialPathology,Osteology Information,"",Cranial bony pathology,"",Notes_CranialPathology,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_PostcranialPathology,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_PostcranialPathology,Osteology Information,"",Postcranial bony pathology,"",Notes_PostcranialPathology,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_PostcranialPathology,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_PostcranialPathology,Osteology Information,"",Postcranial bony pathology,"",Notes_PostcranialPathology,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_CulturalModifications,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CulturalModifications,Osteology Information,"",Cultural modification,"",Notes_CulturalModifications,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_CulturalModifications,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CulturalModifications,Osteology Information,"",Cultural modification,"",Notes_CulturalModifications,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_NHTaphonomicAlterations,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_NHTaphonomicAlterations,Osteology Information,"",Nonhuman taphonomic alteration,"",Notes_NHTaphonomicAlterations,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_NHTaphonomicAlterations,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_NHTaphonomicAlterations,Osteology Information,"",Nonhuman taphonomic alteration,"",Notes_NHTaphonomicAlterations,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology Notes_CuratorialSuffixing,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CuratorialSuffixing,Osteology Information,"",Curatorial suffixing note,"",Notes_CuratorialSuffixing,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology Notes_CuratorialSuffixing,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.Notes_CuratorialSuffixing,Osteology Information,"",Curatorial suffixing note,"",Notes_CuratorialSuffixing,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology cranialDeformationPresent,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationPresent,Cultural Modification Information,Cranial Deformation Information,Is any evidence of cranial deformation present?,"",cranialDeformationPresent,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology cranialDeformationPresent,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationPresent,Cultural Modification Information,Cranial Deformation Information,Is any evidence of cranial deformation present?,"",cranialDeformationPresent,boolean,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology cranialDeformationCategory,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationCategory,Cultural Modification Information,Cranial Deformation Information,Cranial deformation general category,cranialDeformationCategories,cranialDeformationCategory,string,n,y,n,vocabulary: cranialdeformationcategory,"", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology cranialDeformationCategory,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationCategory,Cultural Modification Information,Cranial Deformation Information,Cranial deformation general category,cranialDeformationCategories,cranialDeformationCategory,string,n,y,n,vocabulary: cranialdeformationcategory,"", +anthro_7-0-0 osteology ns2:osteology_anthropology cranialDeformationNote,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationNote,Cultural Modification Information,Cranial Deformation Information,Cranial deformation comment,"",cranialDeformationNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology cranialDeformationNote,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.cranialDeformationNote,Cultural Modification Information,Cranial Deformation Information,Cranial deformation comment,"",cranialDeformationNote,string,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationPresent,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationPresent,Cultural Modification Information,Trepanation Information,Is any evidence of trepanation present?,"",trepanationPresent,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationPresent,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationPresent,Cultural Modification Information,Trepanation Information,Is any evidence of trepanation present?,"",trepanationPresent,boolean,n,n,n/a,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationLocation,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationLocation,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation location (bone and side),trepanationGroupList > trepanationGroup,trepanationLocation,string,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationLocation,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationLocation,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation location (bone and side),trepanationGroupList > trepanationGroup,trepanationLocation,string,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationDimensionMax,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMax,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension max.,trepanationGroupList > trepanationGroup,trepanationDimensionMax,float,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationDimensionMax,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMax,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension max.,trepanationGroupList > trepanationGroup,trepanationDimensionMax,float,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationDimensionMin,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMin,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension min.,trepanationGroupList > trepanationGroup,trepanationDimensionMin,float,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationDimensionMin,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationDimensionMin,Cultural Modification Information,Trepanation Information > Trepanation > Dimension (mm),Trepanation dimension min.,trepanationGroupList > trepanationGroup,trepanationDimensionMin,float,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationTechnique,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationTechnique,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation technique,trepanationGroupList > trepanationGroup,trepanationTechnique,string,n,n,y,vocabulary: trepanationtechnique,"", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationTechnique,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationTechnique,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation technique,trepanationGroupList > trepanationGroup,trepanationTechnique,string,n,n,y,vocabulary: trepanationtechnique,"", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationHealing,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationHealing,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation healing,trepanationGroupList > trepanationGroup,trepanationHealing,string,n,n,y,vocabulary: trepanationhealing,"", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationHealing,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationHealing,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation healing,trepanationGroupList > trepanationGroup,trepanationHealing,string,n,n,y,vocabulary: trepanationhealing,"", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationCertainty,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationCertainty,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation certainty,trepanationGroupList > trepanationGroup,trepanationCertainty,string,n,n,y,vocabulary: trepanationcertainty,"", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationCertainty,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationCertainty,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation certainty,trepanationGroupList > trepanationGroup,trepanationCertainty,string,n,n,y,vocabulary: trepanationcertainty,"", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationNote,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationNote,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation comment,trepanationGroupList > trepanationGroup,trepanationNote,string,n,n,y,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationNote,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationNote,Cultural Modification Information,Trepanation Information > Trepanation,Trepanation comment,trepanationGroupList > trepanationGroup,trepanationNote,string,n,n,y,"","", +anthro_7-0-0 osteology ns2:osteology_anthropology trepanationGeneralNote,anthro_7-0-0,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationGeneralNote,Cultural Modification Information,Trepanation Information,Trepanation general comment,"",trepanationGeneralNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 osteology ns2:osteology_anthropology trepanationGeneralNote,ohc_1-0-18_7-2,osteology,ns2:osteology_anthropology,ns2:osteology_anthropology,osteology_anthropology.trepanationGeneralNote,Cultural Modification Information,Trepanation Information,Trepanation general comment,"",trepanationGeneralNote,string,n,n,n/a,"","", +anthro_7-0-0 taxon ns2:taxon_common termDisplayName,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termDisplayName,Taxonomic Name Information,Term,Term display name,taxonTermGroupList > taxonTermGroup,termDisplayName,string,y,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termDisplayName,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termDisplayName,Taxonomic Name Information,Term,Term display name,taxonTermGroupList > taxonTermGroup,termDisplayName,string,y,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termFormattedDisplayName,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFormattedDisplayName,Taxonomic Name Information,Term,Formatted display name,taxonTermGroupList > taxonTermGroup,termFormattedDisplayName,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termFormattedDisplayName,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFormattedDisplayName,Taxonomic Name Information,Term,Formatted display name,taxonTermGroupList > taxonTermGroup,termFormattedDisplayName,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termQualifier,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termQualifier,Taxonomic Name Information,Term,Term qualifier,taxonTermGroupList > taxonTermGroup,termQualifier,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termQualifier,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termQualifier,Taxonomic Name Information,Term,Term qualifier,taxonTermGroupList > taxonTermGroup,termQualifier,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termStatus,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termStatus,Taxonomic Name Information,Term,Term status,taxonTermGroupList > taxonTermGroup,termStatus,string,n,n,y,option list: taxonTermStatuses,"accepted, provisional, rejected, under review", +ohc_1-0-18_7-2 taxon ns2:taxon_common termStatus,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termStatus,Taxonomic Name Information,Term,Term status,taxonTermGroupList > taxonTermGroup,termStatus,string,n,n,y,option list: taxonTermStatuses,"accepted, provisional, rejected, under review", +anthro_7-0-0 taxon ns2:taxon_common termType,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termType,Taxonomic Name Information,Term,Term type,taxonTermGroupList > taxonTermGroup,termType,string,n,n,y,option list: taxonTermTypes,"alternate descriptor, descriptor, used for term", +ohc_1-0-18_7-2 taxon ns2:taxon_common termType,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termType,Taxonomic Name Information,Term,Term type,taxonTermGroupList > taxonTermGroup,termType,string,n,n,y,option list: taxonTermTypes,"alternate descriptor, descriptor, used for term", +anthro_7-0-0 taxon ns2:taxon_common termFlag,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFlag,Taxonomic Name Information,Term,Term flag,taxonTermGroupList > taxonTermGroup,termFlag,string,n,n,y,vocabulary: taxontermflag,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common termFlag,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termFlag,Taxonomic Name Information,Term,Term flag,taxonTermGroupList > taxonTermGroup,termFlag,string,n,n,y,vocabulary: taxontermflag,"", +anthro_7-0-0 taxon ns2:taxon_common taxonomicStatus,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonomicStatus,Taxonomic Name Information,Term,Taxonomic status,taxonTermGroupList > taxonTermGroup,taxonomicStatus,string,n,n,y,option list: taxonomicStatuses,"accepted, invalid, misapplied name, valid", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonomicStatus,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonomicStatus,Taxonomic Name Information,Term,Taxonomic status,taxonTermGroupList > taxonTermGroup,taxonomicStatus,string,n,n,y,option list: taxonomicStatuses,"accepted, invalid, misapplied name, valid", +anthro_7-0-0 taxon ns2:taxon_common termLanguage,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termLanguage,Taxonomic Name Information,Term,Term language,taxonTermGroupList > taxonTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common termLanguage,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termLanguage,Taxonomic Name Information,Term,Term language,taxonTermGroupList > taxonTermGroup,termLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 taxon ns2:taxon_common termPrefForLang,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termPrefForLang,Taxonomic Name Information,Term,Term preferred for lang,taxonTermGroupList > taxonTermGroup,termPrefForLang,boolean,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termPrefForLang,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termPrefForLang,Taxonomic Name Information,Term,Term preferred for lang,taxonTermGroupList > taxonTermGroup,termPrefForLang,boolean,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termSource,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSource,Taxonomic Name Information,Term > Source,Term source name,taxonTermGroupList > taxonTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common termSource,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSource,Taxonomic Name Information,Term > Source,Term source name,taxonTermGroupList > taxonTermGroup,termSource,string,n,n,y,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 taxon ns2:taxon_common termSourceDetail,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceDetail,Taxonomic Name Information,Term > Source,Term source detail,taxonTermGroupList > taxonTermGroup,termSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termSourceDetail,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceDetail,Taxonomic Name Information,Term > Source,Term source detail,taxonTermGroupList > taxonTermGroup,termSourceDetail,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termSourceID,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceID,Taxonomic Name Information,Term > Source,Term source ID,taxonTermGroupList > taxonTermGroup,termSourceID,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termSourceID,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceID,Taxonomic Name Information,Term > Source,Term source ID,taxonTermGroupList > taxonTermGroup,termSourceID,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common termSourceNote,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceNote,Taxonomic Name Information,Term > Source,Term source note,taxonTermGroupList > taxonTermGroup,termSourceNote,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common termSourceNote,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.termSourceNote,Taxonomic Name Information,Term > Source,Term source note,taxonTermGroupList > taxonTermGroup,termSourceNote,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common taxonRank,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonRank,Taxonomic Name Information,"",Rank,"",taxonRank,string,n,n,n/a,option list: taxonRanks,"class, division, domain, family, genus, kingdom, order, phylum, species", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonRank,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonRank,Taxonomic Name Information,"",Rank,"",taxonRank,string,n,n,n/a,option list: taxonRanks,"class, division, domain, family, genus, kingdom, order, phylum, species", +anthro_7-0-0 taxon ns2:taxon_common taxonCurrency,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCurrency,Taxonomic Name Information,"",Currency,"",taxonCurrency,string,n,n,n/a,option list: taxonCurrencies,"archaic, current, obsolete", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonCurrency,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCurrency,Taxonomic Name Information,"",Currency,"",taxonCurrency,string,n,n,n/a,option list: taxonCurrencies,"archaic, current, obsolete", +anthro_7-0-0 taxon ns2:taxon_common taxonAuthor,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthor,Taxonomic Name Information,Author,Author name,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthor,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonAuthor,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthor,Taxonomic Name Information,Author,Author name,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthor,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 taxon ns2:taxon_common taxonAuthorType,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthorType,Taxonomic Name Information,Author,Author type,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthorType,string,n,n,y,option list: taxonAuthorTypes,"ascribed, parenthetical", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonAuthorType,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonAuthorType,Taxonomic Name Information,Author,Author type,taxonAuthorGroupList > taxonAuthorGroup,taxonAuthorType,string,n,n,y,option list: taxonAuthorTypes,"ascribed, parenthetical", +anthro_7-0-0 taxon ns2:taxon_common taxonYear,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonYear,Taxonomic Name Information,"",Year,"",taxonYear,string,n,n,n/a,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonYear,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonYear,Taxonomic Name Information,"",Year,"",taxonYear,string,n,n,n/a,"","", +anthro_7-0-0 taxon ns2:taxon_common taxonIsNamedHybrid,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonIsNamedHybrid,Taxonomic Name Information,"",Is named hybrid,"",taxonIsNamedHybrid,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonIsNamedHybrid,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonIsNamedHybrid,Taxonomic Name Information,"",Is named hybrid,"",taxonIsNamedHybrid,boolean,n,n,n/a,"","", +anthro_7-0-0 taxon ns2:taxon_common taxonCitation,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCitation,Taxonomic Name Information,"",Citation,taxonCitationList,taxonCitation,string,n,y,n,authority: citation/local; authority: citation/worldcat,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonCitation,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonCitation,Taxonomic Name Information,"",Citation,taxonCitationList,taxonCitation,string,n,y,n,authority: citation/local; authority: citation/worldcat,"", +anthro_7-0-0 taxon ns2:taxon_common taxonNote,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonNote,Taxonomic Name Information,"",Note,"",taxonNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common taxonNote,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.taxonNote,Taxonomic Name Information,"",Note,"",taxonNote,string,n,n,n/a,"","", +anthro_7-0-0 taxon ns2:taxon_common commonName,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonName,Taxonomic Name Information,Common name,Common name,commonNameGroupList > commonNameGroup,commonName,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common commonName,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonName,Taxonomic Name Information,Common name,Common name,commonNameGroupList > commonNameGroup,commonName,string,n,n,y,"","", +anthro_7-0-0 taxon ns2:taxon_common commonNameLanguage,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameLanguage,Taxonomic Name Information,Common name,Common name language,commonNameGroupList > commonNameGroup,commonNameLanguage,string,n,n,y,vocabulary: languages,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common commonNameLanguage,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameLanguage,Taxonomic Name Information,Common name,Common name language,commonNameGroupList > commonNameGroup,commonNameLanguage,string,n,n,y,vocabulary: languages,"", +anthro_7-0-0 taxon ns2:taxon_common commonNameSource,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSource,Taxonomic Name Information,Common name,Common name source,commonNameGroupList > commonNameGroup,commonNameSource,string,n,n,y,authority: citation/local,"", +ohc_1-0-18_7-2 taxon ns2:taxon_common commonNameSource,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSource,Taxonomic Name Information,Common name,Common name source,commonNameGroupList > commonNameGroup,commonNameSource,string,n,n,y,authority: citation/local,"", +anthro_7-0-0 taxon ns2:taxon_common commonNameSourceDetail,anthro_7-0-0,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSourceDetail,Taxonomic Name Information,Common name,Common name source detail,commonNameGroupList > commonNameGroup,commonNameSourceDetail,string,n,n,y,"","", +ohc_1-0-18_7-2 taxon ns2:taxon_common commonNameSourceDetail,ohc_1-0-18_7-2,taxon,ns2:taxon_common,ns2:taxon_common,taxon_common.commonNameSourceDetail,Taxonomic Name Information,Common name,Common name source detail,commonNameGroupList > commonNameGroup,commonNameSourceDetail,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_common claimNumber,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimNumber,Claim Information,"",Claim number,"",claimNumber,string,y,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_common claimNumber,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimNumber,Claim Information,"",Claim number,"",claimNumber,string,y,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimName,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimName,Claim Information,"",Claim name,"",nagpraClaimName,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimName,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimName,Claim Information,"",Claim name,"",nagpraClaimName,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimAltName,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltName,Claim Information,Alternate name/number,Alternate name/number,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltName,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimAltName,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltName,Claim Information,Alternate name/number,Alternate name/number,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltName,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimAltNameNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltNameNote,Claim Information,Alternate name/number,Alternate name/number note,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltNameNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimAltNameNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimAltNameNote,Claim Information,Alternate name/number,Alternate name/number note,nagpraClaimAltNameGroupList > nagpraClaimAltNameGroup,nagpraClaimAltNameNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_common claimFiledBy,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledBy,Claim Information,Claimant,Claim filed by,claimantGroupList > claimantGroup,claimFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 claim ns2:claims_common claimFiledBy,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledBy,Claim Information,Claimant,Claim filed by,claimantGroupList > claimantGroup,claimFiledBy,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 claim ns2:claims_common claimFiledOnBehalfOf,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledOnBehalfOf,Claim Information,Claimant,Claim filed on behalf of,claimantGroupList > claimantGroup,claimFiledOnBehalfOf,string,n,n,y,authority: person/local; authority: organization/local,"", +ohc_1-0-18_7-2 claim ns2:claims_common claimFiledOnBehalfOf,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimFiledOnBehalfOf,Claim Information,Claimant,Claim filed on behalf of,claimantGroupList > claimantGroup,claimFiledOnBehalfOf,string,n,n,y,authority: person/local; authority: organization/local,"", +anthro_7-0-0 claim ns2:claims_common claimantNote,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimantNote,Claim Information,Claimant,Claimant note,claimantGroupList > claimantGroup,claimantNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_common claimantNote,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimantNote,Claim Information,Claimant,Claimant note,claimantGroupList > claimantGroup,claimantNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimType,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimType,Claim Information,"",Claim type,nagpraClaimTypes,nagpraClaimType,string,n,y,n,vocabulary: nagpraclaimtype,"", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimType,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimType,Claim Information,"",Claim type,nagpraClaimTypes,nagpraClaimType,string,n,y,n,vocabulary: nagpraclaimtype,"", +anthro_7-0-0 claim ns2:claims_common claimReceivedDate,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedDate,Claim Information,Claim filed,Claim filed date,claimReceivedGroupList > claimReceivedGroup,claimReceivedDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_common claimReceivedDate,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedDate,Claim Information,Claim filed,Claim filed date,claimReceivedGroupList > claimReceivedGroup,claimReceivedDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_common claimReceivedNote,anthro_7-0-0,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedNote,Claim Information,Claim filed,Claim filed note,claimReceivedGroupList > claimReceivedGroup,claimReceivedNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_common claimReceivedNote,ohc_1-0-18_7-2,claim,ns2:claims_common,ns2:claims_common,claims_common.claimReceivedNote,Claim Information,Claim filed,Claim filed note,claimReceivedGroupList > claimReceivedGroup,claimReceivedNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNote,Claim Information,"",Note,nagpraClaimNotes,nagpraClaimNote,string,n,y,n,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNote,Claim Information,"",Note,nagpraClaimNotes,nagpraClaimNote,string,n,y,n,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSiteName,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteName,Claim Context,Site/place involved,Site/place involved name,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteName,string,n,n,y,authority: place/local,"", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSiteName,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteName,Claim Context,Site/place involved,Site/place involved name,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteName,string,n,n,y,authority: place/local,"", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSiteNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteNote,Claim Context,Site/place involved,Site/place involved note,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSiteNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSiteNote,Claim Context,Site/place involved,Site/place involved note,nagpraClaimSiteGroupList > nagpraClaimSiteGroup,nagpraClaimSiteNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimGroupName,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupName,Claim Context,Cultural group involved,Cultural group involved name,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupName,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimGroupName,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupName,Claim Context,Cultural group involved,Cultural group involved name,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupName,string,n,n,y,authority: concept/ethculture; authority: concept/archculture,"", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimGroupNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupNote,Claim Context,Cultural group involved,Cultural group involved note,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimGroupNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimGroupNote,Claim Context,Cultural group involved,Cultural group involved note,nagpraClaimGroupGroupList > nagpraClaimGroupGroup,nagpraClaimGroupNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimPeriodDateGroup,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimPeriodDateGroup,Claim Context,Time period represented,Time period represented date,nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup,nagpraClaimPeriodDateGroup,structured date group,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimPeriodDateGroup,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimPeriodDateGroup,Claim Context,Time period represented,Time period represented date,nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup,nagpraClaimPeriodDateGroup,structured date group,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimPeriodNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimPeriodNote,Claim Context,Time period represented,Time period represented note,nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup,nagpraClaimPeriodNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimPeriodNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimPeriodNote,Claim Context,Time period represented,Time period represented note,nagpraClaimPeriodGroupList > nagpraClaimPeriodGroup,nagpraClaimPeriodNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimInitialResponseDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseDate,Claim Processing Information,Initial response,Initial response date,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimInitialResponseDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseDate,Claim Processing Information,Initial response,Initial response date,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimInitialResponseNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseNote,Claim Processing Information,Initial response,Initial response note,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimInitialResponseNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimInitialResponseNote,Claim Processing Information,Initial response,Initial response note,nagpraClaimInitialResponseGroupList > nagpraClaimInitialResponseGroup,nagpraClaimInitialResponseNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSentToLocalDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalDate,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee date,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSentToLocalDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalDate,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee date,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSentToLocalNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalNote,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee note,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSentToLocalNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToLocalNote,Claim Processing Information,Sent to NAGPRA committee,Sent to NAGPRA committee note,nagpraClaimSentToLocalGroupList > nagpraClaimSentToLocalGroup,nagpraClaimSentToLocalNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimLocalRecDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecDate,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee date,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimLocalRecDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecDate,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee date,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimLocalRecNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecNote,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee note,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimLocalRecNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimLocalRecNote,Claim Processing Information,Recommendation of NAGPRA committee,Recommendation of NAGPRA committee note,nagpraClaimLocalRecGroupList > nagpraClaimLocalRecGroup,nagpraClaimLocalRecNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSentToNatlDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlDate,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA date,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSentToNatlDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlDate,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA date,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimSentToNatlNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlNote,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA note,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimSentToNatlNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimSentToNatlNote,Claim Processing Information,Sent to National NAGPRA,Sent to National NAGPRA note,nagpraClaimSentToNatlGroupList > nagpraClaimSentToNatlGroup,nagpraClaimSentToNatlNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNatlRespDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespDate,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA date,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNatlRespDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespDate,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA date,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNatlRespNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespNote,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA note,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNatlRespNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlRespNote,Claim Processing Information,Response from National NAGPRA,Response from National NAGPRA note,nagpraClaimNatlRespGroupList > nagpraClaimNatlRespGroup,nagpraClaimNatlRespNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNatlApprovalDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalDate,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA date,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNatlApprovalDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalDate,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA date,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNatlApprovalNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalNote,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA note,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNatlApprovalNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNatlApprovalNote,Claim Processing Information,Publication by National NAGPRA,Publication by National NAGPRA note,nagpraClaimNatlApprovalGroupList > nagpraClaimNatlApprovalGroup,nagpraClaimNatlApprovalNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNoticeDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDate,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNoticeDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDate,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNoticeDateType,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDateType,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date type,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDateType,string,n,n,y,option list: nagpraNoticeDateTypes,"begin, end", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNoticeDateType,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeDateType,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice date type,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeDateType,string,n,n,y,option list: nagpraNoticeDateTypes,"begin, end", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimNoticeNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeNote,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice note,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimNoticeNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimNoticeNote,Claim Processing Information,National NAGPRA 30-day notice,National NAGPRA 30-day notice note,nagpraClaimNoticeGroupList > nagpraClaimNoticeGroup,nagpraClaimNoticeNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimTransferDate,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferDate,Claim Processing Information,Transfer,Transfer date,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferDate,date,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimTransferDate,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferDate,Claim Processing Information,Transfer,Transfer date,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferDate,date,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra nagpraClaimTransferNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferNote,Claim Processing Information,Transfer,Transfer note,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferNote,string,n,n,y,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra nagpraClaimTransferNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.nagpraClaimTransferNote,Claim Processing Information,Transfer,Transfer note,nagpraClaimTransferGroupList > nagpraClaimTransferGroup,nagpraClaimTransferNote,string,n,n,y,"","", +anthro_7-0-0 claim ns2:claims_nagpra dispositionPossibilitiesDiscussed,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussed,Claim Processing Information,Tasks Completed,Disposition possibilities discussed,"",dispositionPossibilitiesDiscussed,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra dispositionPossibilitiesDiscussed,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussed,Claim Processing Information,Tasks Completed,Disposition possibilities discussed,"",dispositionPossibilitiesDiscussed,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra dispositionPossibilitiesDiscussedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussedNote,Claim Processing Information,Tasks Completed,Disposition possibilities discussed note,"",dispositionPossibilitiesDiscussedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra dispositionPossibilitiesDiscussedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dispositionPossibilitiesDiscussedNote,Claim Processing Information,Tasks Completed,Disposition possibilities discussed note,"",dispositionPossibilitiesDiscussedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra surroundingTribesContacted,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContacted,Claim Processing Information,Tasks Completed,Surrounding tribes contacted,"",surroundingTribesContacted,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra surroundingTribesContacted,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContacted,Claim Processing Information,Tasks Completed,Surrounding tribes contacted,"",surroundingTribesContacted,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra surroundingTribesContactedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContactedNote,Claim Processing Information,Tasks Completed,Surrounding tribes contacted note,"",surroundingTribesContactedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra surroundingTribesContactedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.surroundingTribesContactedNote,Claim Processing Information,Tasks Completed,Surrounding tribes contacted note,"",surroundingTribesContactedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra workingTeamNotified,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotified,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified,"",workingTeamNotified,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra workingTeamNotified,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotified,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified,"",workingTeamNotified,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra workingTeamNotifiedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotifiedNote,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified note,"",workingTeamNotifiedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra workingTeamNotifiedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.workingTeamNotifiedNote,Claim Processing Information,Tasks Completed,Institutional NAGPRA team notified note,"",workingTeamNotifiedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra siteFileResearchCompleted,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompleted,Claim Processing Information,Tasks Completed,Site file research completed,"",siteFileResearchCompleted,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra siteFileResearchCompleted,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompleted,Claim Processing Information,Tasks Completed,Site file research completed,"",siteFileResearchCompleted,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra siteFileResearchCompletedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Site file research completed note,"",siteFileResearchCompletedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra siteFileResearchCompletedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.siteFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Site file research completed note,"",siteFileResearchCompletedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra accessionFileResearchCompleted,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompleted,Claim Processing Information,Tasks Completed,Accession file research completed,"",accessionFileResearchCompleted,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra accessionFileResearchCompleted,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompleted,Claim Processing Information,Tasks Completed,Accession file research completed,"",accessionFileResearchCompleted,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra accessionFileResearchCompletedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Accession file research completed note,"",accessionFileResearchCompletedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra accessionFileResearchCompletedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.accessionFileResearchCompletedNote,Claim Processing Information,Tasks Completed,Accession file research completed note,"",accessionFileResearchCompletedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsLocatedAndCounted,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCounted,Claim Processing Information,Tasks Completed,Objects located and counted,"",objectsLocatedAndCounted,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsLocatedAndCounted,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCounted,Claim Processing Information,Tasks Completed,Objects located and counted,"",objectsLocatedAndCounted,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsLocatedAndCountedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCountedNote,Claim Processing Information,Tasks Completed,Objects located and counted note,"",objectsLocatedAndCountedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsLocatedAndCountedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsLocatedAndCountedNote,Claim Processing Information,Tasks Completed,Objects located and counted note,"",objectsLocatedAndCountedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsConsolidated,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidated,Claim Processing Information,Tasks Completed,Objects consolidated,"",objectsConsolidated,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsConsolidated,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidated,Claim Processing Information,Tasks Completed,Objects consolidated,"",objectsConsolidated,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsConsolidatedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidatedNote,Claim Processing Information,Tasks Completed,Objects consolidated note,"",objectsConsolidatedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsConsolidatedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsConsolidatedNote,Claim Processing Information,Tasks Completed,Objects consolidated note,"",objectsConsolidatedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsPhotographed,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographed,Claim Processing Information,Tasks Completed,Objects photographed,"",objectsPhotographed,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsPhotographed,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographed,Claim Processing Information,Tasks Completed,Objects photographed,"",objectsPhotographed,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsPhotographedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographedNote,Claim Processing Information,Tasks Completed,Objects photographed note,"",objectsPhotographedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsPhotographedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsPhotographedNote,Claim Processing Information,Tasks Completed,Objects photographed note,"",objectsPhotographedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra registrationDocumentsDrafted,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDrafted,Claim Processing Information,Tasks Completed,Registration documents drawn up,"",registrationDocumentsDrafted,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra registrationDocumentsDrafted,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDrafted,Claim Processing Information,Tasks Completed,Registration documents drawn up,"",registrationDocumentsDrafted,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra registrationDocumentsDraftedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDraftedNote,Claim Processing Information,Tasks Completed,Registration documents drawn up note,"",registrationDocumentsDraftedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra registrationDocumentsDraftedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.registrationDocumentsDraftedNote,Claim Processing Information,Tasks Completed,Registration documents drawn up note,"",registrationDocumentsDraftedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra tribeContactedForPackingPreferences,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferences,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions,"",tribeContactedForPackingPreferences,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra tribeContactedForPackingPreferences,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferences,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions,"",tribeContactedForPackingPreferences,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra tribeContactedForPackingPreferencesNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferencesNote,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions note,"",tribeContactedForPackingPreferencesNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra tribeContactedForPackingPreferencesNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.tribeContactedForPackingPreferencesNote,Claim Processing Information,Tasks Completed,Tribe contacted for packing/storage instructions note,"",tribeContactedForPackingPreferencesNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra dateArrangedForTransfer,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransfer,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer,"",dateArrangedForTransfer,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra dateArrangedForTransfer,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransfer,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer,"",dateArrangedForTransfer,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra dateArrangedForTransferNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransferNote,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer note,"",dateArrangedForTransferNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra dateArrangedForTransferNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.dateArrangedForTransferNote,Claim Processing Information,Tasks Completed,Date arranged for pickup/transfer note,"",dateArrangedForTransferNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsMarkedAsDeaccessioned,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessioned,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned,"",objectsMarkedAsDeaccessioned,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsMarkedAsDeaccessioned,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessioned,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned,"",objectsMarkedAsDeaccessioned,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra objectsMarkedAsDeaccessionedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessionedNote,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned note,"",objectsMarkedAsDeaccessionedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra objectsMarkedAsDeaccessionedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.objectsMarkedAsDeaccessionedNote,Claim Processing Information,Tasks Completed,Objects marked as deaccessioned note,"",objectsMarkedAsDeaccessionedNote,string,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra documentsArchived,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchived,Claim Processing Information,Tasks Completed,Claim documents archived,"",documentsArchived,boolean,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra documentsArchived,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchived,Claim Processing Information,Tasks Completed,Claim documents archived,"",documentsArchived,boolean,n,n,n/a,"","", +anthro_7-0-0 claim ns2:claims_nagpra documentsArchivedNote,anthro_7-0-0,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchivedNote,Claim Processing Information,Tasks Completed,Claim documents archived note,"",documentsArchivedNote,string,n,n,n/a,"","", +ohc_1-0-18_7-2 claim ns2:claims_nagpra documentsArchivedNote,ohc_1-0-18_7-2,claim,ns2:claims_nagpra,ns2:claims_nagpra,claims_nagpra.documentsArchivedNote,Claim Processing Information,Tasks Completed,Claim documents archived note,"",documentsArchivedNote,string,n,n,n/a,"","", diff --git a/spec/integration/profile_comparison_spec.rb b/spec/integration/profile_comparison_spec.rb new file mode 100644 index 00000000..fce6be16 --- /dev/null +++ b/spec/integration/profile_comparison_spec.rb @@ -0,0 +1,39 @@ +require "spec_helper" + +require "fileutils" + +RSpec.describe CCU::ProfileComparison do + subject(:compare) { described_class } + + before do + ["anthro_7-0-0.json", "ohc_1-0-18_7-2.json"].each do |filename| + FileUtils.cp( + File.join("spec", "fixtures", "configs", filename), + File.join("data", "configs", filename) + ) + end + end + + after do + ["anthro_7-0-0.json", "ohc_1-0-18_7-2.json"].each do |filename| + FileUtils.rm(File.join("data", "configs", filename)) + end + FileUtils.rm(File.join("spec", "fixtures", + "compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv")) + end + + let(:expected_path) do + File.join("spec", "fixtures", "files", "7_2", + "compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv") + end + let(:profiles) { ["anthro_7-0-0", "ohc_1-0-18_7-2"] } + let(:outputdir) { File.join("spec", "fixtures") } + let(:result_path) do + File.join("spec", "fixtures", "compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv") + end + + it "generates expected csvdata" do + compare.new(profiles, outputdir).write_csv + expect(result_path).to match_csv(expected_path) + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6e2851b5..44dd37e9 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,6 @@ require "bundler/setup" +require "rspec/custom/matchers/match_csv" + require "cspace_config_untangler" require_relative "helpers" From 3f1e05fec9623ec393b7b19354e20dd36c9de0fa Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 15:43:57 -0400 Subject: [PATCH 4/7] Unpin versions --- cspace_config_untangler.gemspec | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/cspace_config_untangler.gemspec b/cspace_config_untangler.gemspec index 97bb8e41..d412163e 100644 --- a/cspace_config_untangler.gemspec +++ b/cspace_config_untangler.gemspec @@ -29,12 +29,10 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_development_dependency "bundler", "~> 2.3.9" - spec.add_development_dependency "pry", "~> 0.13.0" -# spec.add_development_dependency "byebug" -# spec.add_development_dependency "pry-byebug" - spec.add_development_dependency "rake", "~> 13.0.6" - spec.add_development_dependency "rspec", "~> 3.11" + spec.add_development_dependency "bundler" + spec.add_development_dependency "pry" + spec.add_development_dependency "rake" + spec.add_development_dependency "rspec" spec.add_runtime_dependency "dry-configurable", "~> 0.12" spec.add_runtime_dependency "facets", "~> 3.1.0" From d2b7fbcfa0eefe79a902e243e002754e88fb87f2 Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 15:44:12 -0400 Subject: [PATCH 5/7] Update dependencies --- Gemfile.lock | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e8d6a758..1dae6bd9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,3 +1,11 @@ +GIT + remote: https://github.com/kspurgin/rspec-custom.git + revision: 074dcc0a4ffeccd1cebcd8654e13724117bc8b4f + branch: main + specs: + rspec-custom (0.1.0) + rspec-core + PATH remote: . specs: @@ -40,7 +48,9 @@ GEM http-parser (1.2.3) ffi-compiler (>= 1.0, < 2.0) method_source (1.0.0) - nokogiri (1.14.3-x86_64-darwin) + mini_portile2 (2.8.4) + nokogiri (1.14.3) + mini_portile2 (~> 2.8.0) racc (~> 1.4) pry (0.13.1) coderay (~> 1.1) @@ -48,19 +58,19 @@ GEM public_suffix (5.0.3) racc (1.7.1) rake (13.0.6) - rspec (3.11.0) - rspec-core (~> 3.11.0) - rspec-expectations (~> 3.11.0) - rspec-mocks (~> 3.11.0) - rspec-core (3.11.0) - rspec-support (~> 3.11.0) - rspec-expectations (3.11.0) + rspec (3.12.0) + rspec-core (~> 3.12.0) + rspec-expectations (~> 3.12.0) + rspec-mocks (~> 3.12.0) + rspec-core (3.12.2) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-mocks (3.11.0) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-support (3.11.1) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) thor (1.2.2) unf (0.1.4) unf_ext @@ -71,11 +81,12 @@ PLATFORMS ruby DEPENDENCIES - bundler (~> 2.3.9) + bundler cspace_config_untangler! - pry (~> 0.13.0) - rake (~> 13.0.6) - rspec (~> 3.11) + pry + rake + rspec + rspec-custom! BUNDLED WITH 2.3.9 From 499122d993b85efe0777effeb9666a9597a817df Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 16:01:55 -0400 Subject: [PATCH 6/7] Fix tests failing due to updates or config settings in suite --- spec/cspace_config_untangler/cli/profiles_cli_spec.rb | 10 +++++----- spec/integration/profile_comparison_spec.rb | 3 +++ spec/spec_helper.rb | 5 +++++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/spec/cspace_config_untangler/cli/profiles_cli_spec.rb b/spec/cspace_config_untangler/cli/profiles_cli_spec.rb index c8c000db..03b5ac8e 100644 --- a/spec/cspace_config_untangler/cli/profiles_cli_spec.rb +++ b/spec/cspace_config_untangler/cli/profiles_cli_spec.rb @@ -32,11 +32,11 @@ } let(:msg) do <<~MSG - not in core_7-0-0: 89 - not in bonsai_5-0-0: 77 - source differences: 3 - ui path differences: 0 - same: 1300 + not in core_7-0-0: 89 + not in bonsai_5-0-0: 55 + source differences: 3 + ui path differences: 0 + same: 772 Wrote detailed report to: #{outfile} MSG diff --git a/spec/integration/profile_comparison_spec.rb b/spec/integration/profile_comparison_spec.rb index fce6be16..75cc332b 100644 --- a/spec/integration/profile_comparison_spec.rb +++ b/spec/integration/profile_comparison_spec.rb @@ -12,6 +12,8 @@ File.join("data", "configs", filename) ) end + CCU.config.main_profile_name = "anthro_7-0-0" + CCU.config.configdir = File.join("data", "configs") end after do @@ -20,6 +22,7 @@ end FileUtils.rm(File.join("spec", "fixtures", "compare_anthro_7-0-0_to_ohc_1-0-18_7-2.csv")) + CCU.reset_config end let(:expected_path) do diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 44dd37e9..01282e01 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,6 +3,11 @@ require "cspace_config_untangler" require_relative "helpers" +require "dry/configurable/test_interface" + +module CspaceConfigUntangler + enable_test_interface +end RSpec.configure do |config| config.include Helpers From c54dd5dd95269ff8ffab0fe4fe9bd94c750f94f1 Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Tue, 19 Sep 2023 16:02:48 -0400 Subject: [PATCH 7/7] Update changelog and bump version --- CHANGELOG.adoc | 4 ++++ lib/cspace_config_untangler/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index bd61e900..a0bbf672 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -37,6 +37,10 @@ These changes are merged into the `main` branch, but have not been released. Aft == Releases +=== 2.0.1 - 2023-09-19 +==== Bugfixes +* Fix failure in `ProfileComparison` class and add integration test + === 2.0.0 - 2023-08-16 ==== Breaking * `ccu fields csv` command no longer allows you to specify record types to include. All record types from the given profiles are included in the output, which you can easily filter to the record type(s) of interest. diff --git a/lib/cspace_config_untangler/version.rb b/lib/cspace_config_untangler/version.rb index 59dab883..2666a0c2 100644 --- a/lib/cspace_config_untangler/version.rb +++ b/lib/cspace_config_untangler/version.rb @@ -1,3 +1,3 @@ module CspaceConfigUntangler - VERSION = '2.0.0' + VERSION = "2.0.1" end